diff options
author | Tejun Heo <tj@kernel.org> | 2014-02-03 14:09:17 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-07 19:08:57 -0500 |
commit | ba341d55a420ab4fdd1a53fd395fd59bd65de880 (patch) | |
tree | 2de1c2cfc849e34434b275d78a9b40962418912a /fs/sysfs | |
parent | fa4cd451cceb77e97432b91fcf50a7e4a7361e29 (diff) |
kernfs: add CONFIG_KERNFS
As sysfs was kernfs's only user, kernfs has been piggybacking on
CONFIG_SYSFS; however, kernfs is scheduled to grow a new user very
soon. Introduce a separate config option CONFIG_KERNFS which is to be
selected by kernfs users.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/sysfs')
-rw-r--r-- | fs/sysfs/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/sysfs/Kconfig b/fs/sysfs/Kconfig index 8c41feacbac5..b2756014508c 100644 --- a/fs/sysfs/Kconfig +++ b/fs/sysfs/Kconfig | |||
@@ -1,6 +1,7 @@ | |||
1 | config SYSFS | 1 | config SYSFS |
2 | bool "sysfs file system support" if EXPERT | 2 | bool "sysfs file system support" if EXPERT |
3 | default y | 3 | default y |
4 | select KERNFS | ||
4 | help | 5 | help |
5 | The sysfs filesystem is a virtual filesystem that the kernel uses to | 6 | The sysfs filesystem is a virtual filesystem that the kernel uses to |
6 | export internal kernel objects, their attributes, and their | 7 | export internal kernel objects, their attributes, and their |