From 4be28540ee2f5af6f21764cde25154208750611e Mon Sep 17 00:00:00 2001 From: Alexey Dobriyan Date: Tue, 16 Oct 2007 23:26:21 -0700 Subject: [PATCH] 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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- include/linux/fs.h | 4 ++-- 1 file 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; #include #include #include -#include #include #include @@ -2032,7 +2031,8 @@ static inline void free_secdata(void *secdata) { } #endif /* CONFIG_SECURITY */ -int proc_nr_files(ctl_table *table, int write, struct file *filp, +struct ctl_table; +int proc_nr_files(struct ctl_table *table, int write, struct file *filp, void __user *buffer, size_t *lenp, loff_t *ppos); -- 2.20.1