mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
[GFS2/DLM] use sysfs
With CONFIG_DLM=m, CONFIG_PROC_FS=n, and CONFIG_SYSFS=n, kernel build fails with: WARNING: "kernel_subsys" [fs/gfs2/locking/dlm/lock_dlm.ko] undefined! WARNING: "kernel_subsys" [fs/dlm/dlm.ko] undefined! WARNING: "kernel_subsys" [fs/configfs/configfs.ko] undefined! make[1]: *** [__modpost] Error 1 make: *** [modules] Error 2 Since fs/dlm/lockspace.c and fs/gfs2/locking/dlm/sysfs.c use kernel_subsys, they should either DEPEND on it or SELECT it. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
This commit is contained in:
parent
ee32e4f3d3
commit
67f55897ee
@ -5,6 +5,7 @@ config DLM
|
||||
tristate "Distributed Lock Manager (DLM)"
|
||||
depends on IPV6 || IPV6=n
|
||||
select CONFIGFS_FS
|
||||
select SYSFS
|
||||
select IP_SCTP if DLM_SCTP
|
||||
help
|
||||
A general purpose distributed lock manager for kernel or userspace
|
||||
|
@ -38,6 +38,7 @@ config GFS2_FS_LOCKING_DLM
|
||||
select IP_SCTP if DLM_SCTP
|
||||
select CONFIGFS_FS
|
||||
select DLM
|
||||
select SYSFS
|
||||
help
|
||||
Multiple node locking module for GFS2
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user