aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/inotify.h5
-rw-r--r--kernel/sysctl.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/include/linux/inotify.h b/include/linux/inotify.h
index 959a38b8f75d..94d209a1b689 100644
--- a/include/linux/inotify.h
+++ b/include/linux/inotify.h
@@ -69,4 +69,9 @@ struct inotify_event {
69#define IN_CLOEXEC O_CLOEXEC 69#define IN_CLOEXEC O_CLOEXEC
70#define IN_NONBLOCK O_NONBLOCK 70#define IN_NONBLOCK O_NONBLOCK
71 71
72#ifdef __KERNEL__
73#include <linux/sysctl.h>
74extern struct ctl_table inotify_table[]; /* for sysctl */
75#endif
76
72#endif /* _LINUX_INOTIFY_H */ 77#endif /* _LINUX_INOTIFY_H */
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