diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-31 00:39:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 15:39:42 -0700 |
commit | 448e3cee839fdf975d6119eed475ec7d0400404e (patch) | |
tree | 676b52c311c7b0764768a36f4a8efe99230115df /init | |
parent | ac9d41a3e4043a3a89735a872b564a1973df2178 (diff) | |
download | linux-448e3cee839fdf975d6119eed475ec7d0400404e.tar.bz2 |
ANON_INODES shouldn't be user visible
There doesn't seem to be a good reason for ANON_INODES being
an user visible option.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Davide Libenzi <davidel@xmailserver.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/init/Kconfig b/init/Kconfig index 1bf3afa5a29a..7f798bcb81f4 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -468,25 +468,19 @@ config FUTEX run glibc-based applications correctly. config ANON_INODES - bool "Enable anonymous inode source" if EMBEDDED - default y - help - Anonymous inode source for pseudo-files like epoll, signalfd, - timerfd and eventfd. - - If unsure, say Y. + bool config EPOLL bool "Enable eventpoll support" if EMBEDDED default y - depends on ANON_INODES + select ANON_INODES help Disabling this option will cause the kernel to be built without support for epoll family of system calls. config SIGNALFD bool "Enable signalfd() system call" if EMBEDDED - depends on ANON_INODES + select ANON_INODES default y help Enable the signalfd() system call that allows to receive signals @@ -496,7 +490,7 @@ config SIGNALFD config TIMERFD bool "Enable timerfd() system call" if EMBEDDED - depends on ANON_INODES + select ANON_INODES default y help Enable the timerfd() system call that allows to receive timer @@ -506,7 +500,7 @@ config TIMERFD config EVENTFD bool "Enable eventfd() system call" if EMBEDDED - depends on ANON_INODES + select ANON_INODES default y help Enable the eventfd() system call that allows to receive both |