diff options
author | Gao feng <gaofeng@cn.fujitsu.com> | 2013-02-18 01:34:57 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-18 14:53:08 -0500 |
commit | c2399059a389ba686fa7f45d8913a708914752c4 (patch) | |
tree | 4ac621a0464fdb050b6690d2ed6169f5f36c1af1 /fs/proc | |
parent | ece31ffd539e8e2b586b1ca5f50bc4f4591e3893 (diff) | |
download | op-kernel-dev-c2399059a389ba686fa7f45d8913a708914752c4.zip op-kernel-dev-c2399059a389ba686fa7f45d8913a708914752c4.tar.gz |
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>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/proc_net.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/proc/proc_net.c b/fs/proc/proc_net.c index 30f7c67..3131a03 100644 --- a/fs/proc/proc_net.c +++ b/fs/proc/proc_net.c @@ -177,12 +177,6 @@ const struct file_operations proc_net_operations = { .readdir = proc_tgid_net_readdir, }; -void proc_net_remove(struct net *net, const char *name) -{ - remove_proc_entry(name, net->proc_net); -} -EXPORT_SYMBOL_GPL(proc_net_remove); - static __net_init int proc_net_ns_init(struct net *net) { struct proc_dir_entry *netd, *net_statd; |