diff options
author | Tom Goff <thomas.goff@boeing.com> | 2010-03-31 06:44:56 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-31 06:44:56 +0400 |
commit | 7e5ab157813993356f021757d0b0dcbdca7c55a1 (patch) | |
tree | 5cdbce6124b690bfadaa5c99863ea204a545c2bc /net | |
parent | 9badba2543d165154c540b80e59ff06c1b3e3f76 (diff) | |
download | linux-7e5ab157813993356f021757d0b0dcbdca7c55a1.tar.xz |
net_sched: minor netns related cleanup
These changes were suggested by Alexey Dobriyan <adobriyan@gmail.com>:
- psched_show() does not use any private data so just pass NULL to
psched_open()
- remove unnecessary return statement
Signed-off-by: Tom Goff <thomas.goff@boeing.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/sch_api.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index 6d6fe16289f3..c65866da17bc 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c @@ -1683,7 +1683,7 @@ static int psched_show(struct seq_file *seq, void *v) static int psched_open(struct inode *inode, struct file *file) { - return single_open(file, psched_show, PDE(inode)->data); + return single_open(file, psched_show, NULL); } static const struct file_operations psched_fops = { @@ -1708,8 +1708,6 @@ static int __net_init psched_net_init(struct net *net) static void __net_exit psched_net_exit(struct net *net) { proc_net_remove(net, "psched"); - - return; } #else static int __net_init psched_net_init(struct net *net) |