Skip to content

Commit

Permalink
net: proc: remove proc_net_remove
Browse files Browse the repository at this point in the history
proc_net_remove has been replaced by remove_proc_entry.
we can remove it now.

Signed-off-by: Gao feng <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Gao feng authored and davem330 committed Feb 18, 2013
1 parent ece31ff commit c239905
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions fs/proc/proc_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 0 additions & 3 deletions include/linux/proc_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ static inline struct proc_dir_entry *create_proc_read_entry(const char *name,
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,
struct proc_dir_entry *parent);

Expand All @@ -182,8 +181,6 @@ extern int proc_alloc_inum(unsigned int *pino);
extern void proc_free_inum(unsigned int inum);
#else

static inline void proc_net_remove(struct net *net, const char *name) {}

static inline void proc_flush_task(struct task_struct *task)
{
}
Expand Down

0 comments on commit c239905

Please sign in to comment.