diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2007-10-17 02:26:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:48 -0400 |
commit | 4be28540ee2f5af6f21764cde25154208750611e (patch) | |
tree | db1c3d2a49e790537fe0f3d3a1e4285ded84a9d2 /include/linux/fs.h | |
parent | 2b571a066a2fee14189a297ce8adc5212c58074c (diff) |
Remove sysctl.h from fs.h
Rrrr, addition of sysctl.h to fs.h was't very smart, because simple
editing of the former will buy you big recompile, where it shouldn't
have to.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index f70d52c46617..8b3580d0664e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -283,7 +283,6 @@ extern int dir_notify_enable; | |||
283 | #include <linux/init.h> | 283 | #include <linux/init.h> |
284 | #include <linux/pid.h> | 284 | #include <linux/pid.h> |
285 | #include <linux/mutex.h> | 285 | #include <linux/mutex.h> |
286 | #include <linux/sysctl.h> | ||
287 | #include <linux/capability.h> | 286 | #include <linux/capability.h> |
288 | 287 | ||
289 | #include <asm/atomic.h> | 288 | #include <asm/atomic.h> |
@@ -2032,7 +2031,8 @@ static inline void free_secdata(void *secdata) | |||
2032 | { } | 2031 | { } |
2033 | #endif /* CONFIG_SECURITY */ | 2032 | #endif /* CONFIG_SECURITY */ |
2034 | 2033 | ||
2035 | int proc_nr_files(ctl_table *table, int write, struct file *filp, | 2034 | struct ctl_table; |
2035 | int proc_nr_files(struct ctl_table *table, int write, struct file *filp, | ||
2036 | void __user *buffer, size_t *lenp, loff_t *ppos); | 2036 | void __user *buffer, size_t *lenp, loff_t *ppos); |
2037 | 2037 | ||
2038 | 2038 | ||