diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-07-18 07:07:21 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-18 07:07:21 -0400 |
commit | de05c557b24c7dffc6d392e3db120cf11c9f6ae7 (patch) | |
tree | d1d6fe1323657afd7d416c6af8a62d6a9e1e1e66 /fs/proc/proc_net.c | |
parent | 60bdde95807e982a824be9cfdd35055cc721a88a (diff) |
proc: consolidate per-net single_open callers
There are already 7 of them - time to kill some duplicate code.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'fs/proc/proc_net.c')
-rw-r--r-- | fs/proc/proc_net.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/fs/proc/proc_net.c b/fs/proc/proc_net.c index 83f357b30d71..ab232ad2e6f9 100644 --- a/fs/proc/proc_net.c +++ b/fs/proc/proc_net.c | |||
@@ -51,6 +51,30 @@ int seq_open_net(struct inode *ino, struct file *f, | |||
51 | } | 51 | } |
52 | EXPORT_SYMBOL_GPL(seq_open_net); | 52 | EXPORT_SYMBOL_GPL(seq_open_net); |
53 | 53 | ||
54 | int single_open_net(struct inode *inode, struct file *file, | ||
55 | int (*show)(struct seq_file *, void *)) | ||
56 | { | ||
57 | int err; | ||
58 | struct net *net; | ||
59 | |||
60 | err = -ENXIO; | ||
61 | net = get_proc_net(inode); | ||
62 | if (net == NULL) | ||
63 | goto err_net; | ||
64 | |||
65 | err = single_open(file, show, net); | ||
66 | if (err < 0) | ||
67 | goto err_open; | ||
68 | |||
69 | return 0; | ||
70 | |||
71 | err_open: | ||
72 | put_net(net); | ||
73 | err_net: | ||
74 | return err; | ||
75 | } | ||
76 | EXPORT_SYMBOL_GPL(single_open_net); | ||
77 | |||
54 | int seq_release_net(struct inode *ino, struct file *f) | 78 | int seq_release_net(struct inode *ino, struct file *f) |
55 | { | 79 | { |
56 | struct seq_file *seq; | 80 | struct seq_file *seq; |