diff options
-rw-r--r-- | fs/proc/proc_net.c | 8 | ||||
-rw-r--r-- | include/linux/proc_fs.h | 3 |
2 files changed, 0 insertions, 11 deletions
diff --git a/fs/proc/proc_net.c b/fs/proc/proc_net.c index fe72cd073dea..30f7c678424b 100644 --- a/fs/proc/proc_net.c +++ b/fs/proc/proc_net.c | |||
@@ -177,14 +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 | |||
181 | struct proc_dir_entry *proc_net_fops_create(struct net *net, | ||
182 | const char *name, umode_t mode, const struct file_operations *fops) | ||
183 | { | ||
184 | return proc_create(name, mode, net->proc_net, fops); | ||
185 | } | ||
186 | EXPORT_SYMBOL_GPL(proc_net_fops_create); | ||
187 | |||
188 | void proc_net_remove(struct net *net, const char *name) | 180 | void proc_net_remove(struct net *net, const char *name) |
189 | { | 181 | { |
190 | remove_proc_entry(name, net->proc_net); | 182 | remove_proc_entry(name, net->proc_net); |
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 32676b35d2f5..35ee1891ae25 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h | |||
@@ -171,8 +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 struct proc_dir_entry *proc_net_fops_create(struct net *net, | ||
175 | const char *name, umode_t mode, const struct file_operations *fops); | ||
176 | extern void proc_net_remove(struct net *net, const char *name); | 174 | extern void proc_net_remove(struct net *net, const char *name); |
177 | extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name, | 175 | extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name, |
178 | struct proc_dir_entry *parent); | 176 | struct proc_dir_entry *parent); |
@@ -184,7 +182,6 @@ extern int proc_alloc_inum(unsigned int *pino); | |||
184 | extern void proc_free_inum(unsigned int inum); | 182 | extern void proc_free_inum(unsigned int inum); |
185 | #else | 183 | #else |
186 | 184 | ||
187 | #define proc_net_fops_create(net, name, mode, fops) ({ (void)(mode), NULL; }) | ||
188 | static inline void proc_net_remove(struct net *net, const char *name) {} | 185 | static inline void proc_net_remove(struct net *net, const char *name) {} |
189 | 186 | ||
190 | static inline void proc_flush_task(struct task_struct *task) | 187 | static inline void proc_flush_task(struct task_struct *task) |