Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dlm: Make DLM depend on CONFIGFS_FS

This patch fixes the following kconfig error after changing
CONFIGFS_FS -> select SYSFS:

fs/sysfs/Kconfig:1:error: recursive dependency detected!
fs/sysfs/Kconfig:1: symbol SYSFS is selected by CONFIGFS_FS
fs/configfs/Kconfig:1: symbol CONFIGFS_FS is selected by DLM
fs/dlm/Kconfig:1: symbol DLM depends on SYSFS

Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: James Bottomley <James.Bottomley@suse.de>

+1 -2
+1 -2
fs/dlm/Kconfig
··· 1 1 menuconfig DLM 2 2 tristate "Distributed Lock Manager (DLM)" 3 3 depends on EXPERIMENTAL && INET 4 - depends on SYSFS && (IPV6 || IPV6=n) 5 - select CONFIGFS_FS 4 + depends on SYSFS && CONFIGFS_FS && (IPV6 || IPV6=n) 6 5 select IP_SCTP 7 6 help 8 7 A general purpose distributed lock manager for kernel or userspace