diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2009-05-22 10:36:01 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-05-22 10:36:01 +0100 |
commit | 9e6e0a128bca0a151d8d3fbd9459b22fc21cfebb (patch) | |
tree | 1634ddf642a127bbd8533b7e73d5a1ebc572343f /fs/gfs2/Makefile | |
parent | b1e71b0622974953e46a284aa986504a90869a9b (diff) | |
download | linux-stable-9e6e0a128bca0a151d8d3fbd9459b22fc21cfebb.tar.gz linux-stable-9e6e0a128bca0a151d8d3fbd9459b22fc21cfebb.tar.bz2 linux-stable-9e6e0a128bca0a151d8d3fbd9459b22fc21cfebb.zip |
GFS2: Merge mount.c and ops_super.c into super.c
mount.c only contained a single function, so is not really
worth retaining on its own. All of the super related code
is now either in super.c or ops_fstype.c
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/Makefile')
-rw-r--r-- | fs/gfs2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/Makefile b/fs/gfs2/Makefile index 4f7332c7682f..d53a9bea1c2f 100644 --- a/fs/gfs2/Makefile +++ b/fs/gfs2/Makefile @@ -1,8 +1,8 @@ obj-$(CONFIG_GFS2_FS) += gfs2.o gfs2-y := acl.o bmap.o dir.o eaops.o eattr.o glock.o \ glops.o inode.o log.o lops.o main.o meta_io.o \ - mount.o aops.o dentry.o export.o file.o \ - ops_fstype.o ops_inode.o ops_super.o quota.o \ + aops.o dentry.o export.o file.o \ + ops_fstype.o ops_inode.o quota.o \ recovery.o rgrp.o super.o sys.o trans.o util.o gfs2-$(CONFIG_GFS2_FS_LOCKING_DLM) += lock_dlm.o |