Skip to content

Commit

Permalink
[IPX]: Use proc_create() to setup ->proc_fops first
Browse files Browse the repository at this point in the history
Use proc_create() to make sure that ->proc_fops be setup before gluing
PDE to main tree.

Signed-off-by: Wang Chen <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Wang Chen authored and davem330 committed Feb 28, 2008
1 parent 2ce8f04 commit 1e15dc9
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions net/ipx/ipx_proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,22 +358,19 @@ int __init ipx_proc_init(void)

if (!ipx_proc_dir)
goto out;
p = create_proc_entry("interface", S_IRUGO, ipx_proc_dir);
p = proc_create("interface", S_IRUGO,
ipx_proc_dir, &ipx_seq_interface_fops);
if (!p)
goto out_interface;

p->proc_fops = &ipx_seq_interface_fops;
p = create_proc_entry("route", S_IRUGO, ipx_proc_dir);
p = proc_create("route", S_IRUGO, ipx_proc_dir, &ipx_seq_route_fops);
if (!p)
goto out_route;

p->proc_fops = &ipx_seq_route_fops;
p = create_proc_entry("socket", S_IRUGO, ipx_proc_dir);
p = proc_create("socket", S_IRUGO, ipx_proc_dir, &ipx_seq_socket_fops);
if (!p)
goto out_socket;

p->proc_fops = &ipx_seq_socket_fops;

rc = 0;
out:
return rc;
Expand Down

0 comments on commit 1e15dc9

Please sign in to comment.