diff options
Diffstat (limited to 'include/linux/proc_fs.h')
-rw-r--r-- | include/linux/proc_fs.h | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 32676b35d2f5..d0a1f2ca1c3f 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h | |||
@@ -171,9 +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); | ||
177 | 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, |
178 | struct proc_dir_entry *parent); | 175 | struct proc_dir_entry *parent); |
179 | 176 | ||
@@ -184,21 +181,15 @@ extern int proc_alloc_inum(unsigned int *pino); | |||
184 | extern void proc_free_inum(unsigned int inum); | 181 | extern void proc_free_inum(unsigned int inum); |
185 | #else | 182 | #else |
186 | 183 | ||
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) {} | ||
189 | |||
190 | static inline void proc_flush_task(struct task_struct *task) | 184 | static inline void proc_flush_task(struct task_struct *task) |
191 | { | 185 | { |
192 | } | 186 | } |
193 | 187 | ||
194 | static inline struct proc_dir_entry *create_proc_entry(const char *name, | 188 | static inline struct proc_dir_entry *create_proc_entry(const char *name, |
195 | umode_t mode, struct proc_dir_entry *parent) { return NULL; } | 189 | umode_t mode, struct proc_dir_entry *parent) { return NULL; } |
196 | static inline struct proc_dir_entry *proc_create(const char *name, | 190 | |
197 | umode_t mode, struct proc_dir_entry *parent, | 191 | #define proc_create(name, mode, parent, fops) ({ (void)(mode), NULL; }) |
198 | const struct file_operations *proc_fops) | 192 | |
199 | { | ||
200 | return NULL; | ||
201 | } | ||
202 | static inline struct proc_dir_entry *proc_create_data(const char *name, | 193 | static inline struct proc_dir_entry *proc_create_data(const char *name, |
203 | umode_t mode, struct proc_dir_entry *parent, | 194 | umode_t mode, struct proc_dir_entry *parent, |
204 | const struct file_operations *proc_fops, void *data) | 195 | const struct file_operations *proc_fops, void *data) |