diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-02-15 04:44:46 -0500 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-03-01 17:34:18 -0500 |
commit | dda35b8f84d209784041bbad47f9e195a08a7527 (patch) | |
tree | d132d40c3f0646e74ab29ffd45f771f8b87a5883 /fs/xfs/Makefile | |
parent | b262e5dfd9ddd2f6d0ef3fa53eb88690f22134a5 (diff) |
xfs: merge xfs_lrw.c into xfs_file.c
Currently the code to implement the file operations is split over
two small files. Merge the content of xfs_lrw.c into xfs_file.c to
have it in one place. Note that I haven't done various cleanups
that are possible after this yet, they will follow in the next
patch. Also the function xfs_dev_is_read_only which was in
xfs_lrw.c before really doesn't fit in here at all and was moved to
xfs_mount.c.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 5c5a366aa332..b4769e40e8bc 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile | |||
@@ -105,7 +105,6 @@ xfs-y += $(addprefix $(XFS_LINUX)/, \ | |||
105 | xfs_globals.o \ | 105 | xfs_globals.o \ |
106 | xfs_ioctl.o \ | 106 | xfs_ioctl.o \ |
107 | xfs_iops.o \ | 107 | xfs_iops.o \ |
108 | xfs_lrw.o \ | ||
109 | xfs_super.o \ | 108 | xfs_super.o \ |
110 | xfs_sync.o \ | 109 | xfs_sync.o \ |
111 | xfs_xattr.o) | 110 | xfs_xattr.o) |