mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
d9f9ab51e5
commit
86c747d2a4
|
@ -1,8 +1,7 @@
|
||||||
menuconfig DLM
|
menuconfig DLM
|
||||||
tristate "Distributed Lock Manager (DLM)"
|
tristate "Distributed Lock Manager (DLM)"
|
||||||
depends on EXPERIMENTAL && INET
|
depends on EXPERIMENTAL && INET
|
||||||
depends on SYSFS && (IPV6 || IPV6=n)
|
depends on SYSFS && CONFIGFS_FS && (IPV6 || IPV6=n)
|
||||||
select CONFIGFS_FS
|
|
||||||
select IP_SCTP
|
select IP_SCTP
|
||||||
help
|
help
|
||||||
A general purpose distributed lock manager for kernel or userspace
|
A general purpose distributed lock manager for kernel or userspace
|
||||||
|
|
Loading…
Reference in New Issue