diff options
| author | 2008-12-08 15:07:49 +0100 | |
|---|---|---|
| committer | 2008-12-08 15:07:49 +0100 | |
| commit | aa9c9b8c584a42a094202b7e0f63497e888f86a7 (patch) | |
| tree | 3cb3b022054a7c1722657288518f495e0c4d9983 /kernel/sysctl.c | |
| parent | x86: fix wakeup_cpu with numaq/es7000 v2 - call ->update_genapic() (diff) | |
| parent | Fix a race condition in FASYNC handling (diff) | |
| download | linux-dev-aa9c9b8c584a42a094202b7e0f63497e888f86a7.tar.xz linux-dev-aa9c9b8c584a42a094202b7e0f63497e888f86a7.zip | |
Merge branch 'linus' into x86/quirks
Diffstat (limited to 'kernel/sysctl.c')
| -rw-r--r-- | kernel/sysctl.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 9d048fa2d902..3d56fe7570da 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -176,6 +176,9 @@ extern struct ctl_table random_table[]; #ifdef CONFIG_INOTIFY_USER extern struct ctl_table inotify_table[]; #endif +#ifdef CONFIG_EPOLL +extern struct ctl_table epoll_table[]; +#endif #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT int sysctl_legacy_va_layout; @@ -1325,6 +1328,13 @@ static struct ctl_table fs_table[] = { .child = inotify_table, }, #endif +#ifdef CONFIG_EPOLL + { + .procname = "epoll", + .mode = 0555, + .child = epoll_table, + }, +#endif #endif { .ctl_name = KERN_SETUID_DUMPABLE, |
