diff options
author | Gao feng <gaofeng@cn.fujitsu.com> | 2013-02-17 20:34:57 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-18 14:53:08 -0500 |
commit | c2399059a389ba686fa7f45d8913a708914752c4 (patch) | |
tree | 4ac621a0464fdb050b6690d2ed6169f5f36c1af1 | |
parent | ece31ffd539e8e2b586b1ca5f50bc4f4591e3893 (diff) |
net: proc: remove proc_net_remove
proc_net_remove has been replaced by remove_proc_entry.
we can remove it now.
Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | fs/proc/proc_net.c | 6 | ||||
-rw-r--r-- | include/linux/proc_fs.h | 3 |
2 files changed, 0 insertions, 9 deletions
diff --git a/fs/proc/proc_net.c b/fs/proc/proc_net.c index 30f7c678424b..3131a03d7d37 100644 --- a/fs/proc/proc_net.c +++ b/fs/proc/proc_net.c | |||
@@ -177,12 +177,6 @@ const struct file_operations proc_net_operations = { | |||
177 | .readdir = proc_tgid_net_readdir, | 177 | .readdir = proc_tgid_net_readdir, |
178 | }; | 178 | }; |
179 | 179 | ||
180 | void proc_net_remove(struct net *net, const char *name) | ||
181 | { | ||
182 | remove_proc_entry(name, net->proc_net); | ||
183 | } | ||
184 | EXPORT_SYMBOL_GPL(proc_net_remove); | ||
185 | |||
186 | static __net_init int proc_net_ns_init(struct net *net) | 180 | static __net_init int proc_net_ns_init(struct net *net) |
187 | { | 181 | { |
188 | struct proc_dir_entry *netd, *net_statd; | 182 | struct proc_dir_entry *netd, *net_statd; |
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 35ee1891ae25..319f69422667 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h | |||
@@ -171,7 +171,6 @@ static inline struct proc_dir_entry *create_proc_read_entry(const char *name, | |||
171 | return res; | 171 | return res; |
172 | } | 172 | } |
173 | 173 | ||
174 | extern void proc_net_remove(struct net *net, const char *name); | ||
175 | extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name, | 174 | extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name, |
176 | struct proc_dir_entry *parent); | 175 | struct proc_dir_entry *parent); |
177 | 176 | ||
@@ -182,8 +181,6 @@ extern int proc_alloc_inum(unsigned int *pino); | |||
182 | extern void proc_free_inum(unsigned int inum); | 181 | extern void proc_free_inum(unsigned int inum); |
183 | #else | 182 | #else |
184 | 183 | ||
185 | static inline void proc_net_remove(struct net *net, const char *name) {} | ||
186 | |||
187 | static inline void proc_flush_task(struct task_struct *task) | 184 | static inline void proc_flush_task(struct task_struct *task) |
188 | { | 185 | { |
189 | } | 186 | } |