048bca2237
This patch merges the lock_nolock module into GFS2 itself. As well as removing some of the overhead of the module, it also means that its now impossible to build GFS2 without a lock module (which would be a pointless thing to do anyway). We also plan to merge lock_dlm into GFS2 in the future, but that is a more tricky task, and will therefore be a separate patch. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com> Cc: David Teigland <teigland@redhat.com>
9 lines
365 B
Makefile
9 lines
365 B
Makefile
obj-$(CONFIG_GFS2_FS) += gfs2.o
|
|
gfs2-y := acl.o bmap.o daemon.o dir.o eaops.o eattr.o glock.o \
|
|
glops.o inode.o log.o lops.o locking.o main.o meta_io.o \
|
|
mount.o ops_address.o ops_dentry.o ops_export.o ops_file.o \
|
|
ops_fstype.o ops_inode.o ops_super.o quota.o \
|
|
recovery.o rgrp.o super.o sys.o trans.o util.o
|
|
|
|
obj-$(CONFIG_GFS2_FS_LOCKING_DLM) += locking/dlm/
|
|
|