aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
authorDave Young <hidave.darkstar@gmail.com>2010-02-25 20:28:57 -0500
committerEric Paris <eparis@redhat.com>2010-07-28 09:59:01 -0400
commitd14f1729483fad3a8817fbbcbd017678b7d1ad26 (patch)
treeebb47471a0fff9e0bce46043d147f445584acfb0 /kernel/sysctl.c
parent6e006701ccc1590500186ef21e074bd900c5dd67 (diff)
sysctl extern cleanup: inotify
Extern declarations in sysctl.c should be move to their own head file, and then include them in relavant .c files. Move inotify_table extern declaration to linux/inotify.h Signed-off-by: Dave Young <hidave.darkstar@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 7b983dbfe0ec..fe30db7bdb0a 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -131,6 +131,9 @@ static int min_percpu_pagelist_fract = 8;
131 131
132static int ngroups_max = NGROUPS_MAX; 132static int ngroups_max = NGROUPS_MAX;
133 133
134#ifdef CONFIG_INOTIFY_USER
135#include <linux/inotify.h>
136#endif
134#ifdef CONFIG_SPARC 137#ifdef CONFIG_SPARC
135#include <asm/system.h> 138#include <asm/system.h>
136#endif 139#endif
@@ -207,9 +210,6 @@ static struct ctl_table fs_table[];
207static struct ctl_table debug_table[]; 210static struct ctl_table debug_table[];
208static struct ctl_table dev_table[]; 211static struct ctl_table dev_table[];
209extern struct ctl_table random_table[]; 212extern struct ctl_table random_table[];
210#ifdef CONFIG_INOTIFY_USER
211extern struct ctl_table inotify_table[];
212#endif
213#ifdef CONFIG_EPOLL 213#ifdef CONFIG_EPOLL
214extern struct ctl_table epoll_table[]; 214extern struct ctl_table epoll_table[];
215#endif 215#endif