Commit c2399059 authored by Gao feng's avatar Gao feng Committed by David S. Miller

net: proc: remove proc_net_remove

proc_net_remove has been replaced by remove_proc_entry.
we can remove it now.
Signed-off-by: default avatarGao feng <gaofeng@cn.fujitsu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ece31ffd
...@@ -177,12 +177,6 @@ const struct file_operations proc_net_operations = { ...@@ -177,12 +177,6 @@ const struct file_operations proc_net_operations = {
.readdir = proc_tgid_net_readdir, .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) static __net_init int proc_net_ns_init(struct net *net)
{ {
struct proc_dir_entry *netd, *net_statd; struct proc_dir_entry *netd, *net_statd;
......
...@@ -171,7 +171,6 @@ static inline struct proc_dir_entry *create_proc_read_entry(const char *name, ...@@ -171,7 +171,6 @@ static inline struct proc_dir_entry *create_proc_read_entry(const char *name,
return res; return res;
} }
extern void proc_net_remove(struct net *net, const char *name);
extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name, extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
struct proc_dir_entry *parent); struct proc_dir_entry *parent);
...@@ -182,8 +181,6 @@ extern int proc_alloc_inum(unsigned int *pino); ...@@ -182,8 +181,6 @@ extern int proc_alloc_inum(unsigned int *pino);
extern void proc_free_inum(unsigned int inum); extern void proc_free_inum(unsigned int inum);
#else #else
static inline void proc_net_remove(struct net *net, const char *name) {}
static inline void proc_flush_task(struct task_struct *task) static inline void proc_flush_task(struct task_struct *task)
{ {
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment