aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2007-10-17 02:27:17 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-17 11:42:53 -0400
commit7e341fa1f8ed25385e2321d7e5a49ce6aea2d702 (patch)
treec1776ad3d1a73afee086940eb53d40d3ed91cbc0
parent4a239427f23c7850a33445178ec5f71e19d040b2 (diff)
allow disabling DNOTIFY without EMBEDDED
Allow disabling DNOTIFY with CONFIG_EMBEDDED=n. I'm currently running a kernel with dnotify disabled and I haven't run into any problem. Is there any popular application left that breaks without dnotify support in the kernel? Note that this patch does not remove dnotify support, it still defaults to "y", and the help text recommends enabling it. Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 815d201d8600..9a40a9c665c7 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -555,7 +555,7 @@ config QUOTACTL
555 default y 555 default y
556 556
557config DNOTIFY 557config DNOTIFY
558 bool "Dnotify support" if EMBEDDED 558 bool "Dnotify support"
559 default y 559 default y
560 help 560 help
561 Dnotify is a directory-based per-fd file change notification system 561 Dnotify is a directory-based per-fd file change notification system
@@ -563,7 +563,7 @@ config DNOTIFY
563 superior alternatives, but some applications may still rely on 563 superior alternatives, but some applications may still rely on
564 dnotify. 564 dnotify.
565 565
566 Because of this, if unsure, say Y. 566 If unsure, say Y.
567 567
568config AUTOFS_FS 568config AUTOFS_FS
569 tristate "Kernel automounter support" 569 tristate "Kernel automounter support"