diff options
author | Wang Chen <wangchen@cn.fujitsu.com> | 2008-02-28 17:06:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-02-28 17:06:14 -0500 |
commit | 1e15dc981deb39056fa846fe55e1a1dbb175a98e (patch) | |
tree | 1e39dde7e1a40282de43e3dface80a9d16fa02c2 /net | |
parent | 2ce8f047d5f3c0d782838bd2ecb6e4c440268e6d (diff) |
[IPX]: Use proc_create() to setup ->proc_fops first
Use proc_create() to make sure that ->proc_fops be setup before gluing
PDE to main tree.
Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipx/ipx_proc.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/net/ipx/ipx_proc.c b/net/ipx/ipx_proc.c index d483a00dc427..5ed97ad0e2e3 100644 --- a/net/ipx/ipx_proc.c +++ b/net/ipx/ipx_proc.c | |||
@@ -358,22 +358,19 @@ int __init ipx_proc_init(void) | |||
358 | 358 | ||
359 | if (!ipx_proc_dir) | 359 | if (!ipx_proc_dir) |
360 | goto out; | 360 | goto out; |
361 | p = create_proc_entry("interface", S_IRUGO, ipx_proc_dir); | 361 | p = proc_create("interface", S_IRUGO, |
362 | ipx_proc_dir, &ipx_seq_interface_fops); | ||
362 | if (!p) | 363 | if (!p) |
363 | goto out_interface; | 364 | goto out_interface; |
364 | 365 | ||
365 | p->proc_fops = &ipx_seq_interface_fops; | 366 | p = proc_create("route", S_IRUGO, ipx_proc_dir, &ipx_seq_route_fops); |
366 | p = create_proc_entry("route", S_IRUGO, ipx_proc_dir); | ||
367 | if (!p) | 367 | if (!p) |
368 | goto out_route; | 368 | goto out_route; |
369 | 369 | ||
370 | p->proc_fops = &ipx_seq_route_fops; | 370 | p = proc_create("socket", S_IRUGO, ipx_proc_dir, &ipx_seq_socket_fops); |
371 | p = create_proc_entry("socket", S_IRUGO, ipx_proc_dir); | ||
372 | if (!p) | 371 | if (!p) |
373 | goto out_socket; | 372 | goto out_socket; |
374 | 373 | ||
375 | p->proc_fops = &ipx_seq_socket_fops; | ||
376 | |||
377 | rc = 0; | 374 | rc = 0; |
378 | out: | 375 | out: |
379 | return rc; | 376 | return rc; |