Messages in this thread Patch in this message |  | | | From | "Nicholas A. Bellinger" <> | | Subject | [PATCH 3/4] dlm: Make DLM use select CONFIGFS_FS | | Date | Thu, 27 Jan 2011 11:10:29 -0800 |
| |
From: Nicholas Bellinger <nab@linux-iscsi.org>
Convert 'depends && SYSFS && CONFIGFS_FS' to 'select CONFIGFS_FS'
Reported-by: Joel Becker <jlbec@evilplan.org> Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org> --- fs/dlm/Kconfig | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/dlm/Kconfig b/fs/dlm/Kconfig index 1897eb1..4f65a50 100644 --- a/fs/dlm/Kconfig +++ b/fs/dlm/Kconfig @@ -1,7 +1,7 @@ menuconfig DLM tristate "Distributed Lock Manager (DLM)" - depends on EXPERIMENTAL && INET - depends on SYSFS && CONFIGFS_FS && (IPV6 || IPV6=n) + depends on EXPERIMENTAL && INET && (IPV6 || IPV6=n) + select CONFIGFS_FS select IP_SCTP help A general purpose distributed lock manager for kernel or userspace -- 1.7.3.5
|  |