Skip to content

Commit

Permalink
ANON_INODES shouldn't be user visible
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Jul 31, 2007
1 parent ac9d41a commit 448e3ce
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions init/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 448e3ce

Please sign in to comment.