Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1368407

[PATCH] Make CONFIG_FHANDLE default y

From Andi Kleen <andi@firstfloor.org>
Newsgroups linux.kernel
Subject [PATCH] Make CONFIG_FHANDLE default y
Date 2016-03-31 17:30 +0200
Message-ID <riMHN-75H-37@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


From: Andi Kleen <ak@linux.intel.com>

Newer Fedora and OpenSUSE didn't boot with my standard configuration.
It took me some time to figure out why, in fact I had to write a script
to try different config options systematically.

The problem is that something in dracut depends on CONFIG_FHANDLE,
which adds open by file handle syscalls.

While it is set in defconfigs it is very easy to miss when updating
older configs because it is not default y.

Make it default y and also depend on EXPERT, as dracut use is likely
wide spread.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
---
 init/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/init/Kconfig b/init/Kconfig
index e0d26162432e..0dfd09d54c65 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -272,8 +272,9 @@ config CROSS_MEMORY_ATTACH
 	  See the man page for more details.
 
 config FHANDLE
-	bool "open by fhandle syscalls"
+	bool "open by fhandle syscalls" if EXPERT
 	select EXPORTFS
+	default y
 	help
 	  If you say Y here, a user level program will be able to map
 	  file names to handle and then later use the handle for
-- 
2.5.5

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] Make CONFIG_FHANDLE default y Andi Kleen <andi@firstfloor.org> - 2016-03-31 17:30 +0200
  Re: [PATCH] Make CONFIG_FHANDLE default y Richard Weinberger <richard.weinberger@gmail.com> - 2016-03-31 18:00 +0200
    Re: [PATCH] Make CONFIG_FHANDLE default y Andi Kleen <andi@firstfloor.org> - 2016-03-31 20:50 +0200
      Re: [PATCH] Make CONFIG_FHANDLE default y Richard Weinberger <richard@nod.at> - 2016-03-31 20:50 +0200

csiph-web