diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-07-15 08:50:58 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-07-17 07:14:10 -0700 |
commit | 56a178981d47075f6fe5e1c4de77036c821d2877 (patch) | |
tree | b2d2decbde2d46f3a6531e5599c29f5a490c6280 /fs/iomap/Makefile | |
parent | 5157fb8f5ae123badeeb5effd0716712066e20d8 (diff) | |
download | linux-56a178981d47075f6fe5e1c4de77036c821d2877.tar.bz2 |
iomap: move the SEEK_HOLE code into a separate file
Move the SEEK_HOLE/SEEK_DATA code into a separate file so that we can
group related functions in a single file instead of having a single
enormous source file.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/iomap/Makefile')
-rw-r--r-- | fs/iomap/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/iomap/Makefile b/fs/iomap/Makefile index 44cef914020f..5dfe8b5cf330 100644 --- a/fs/iomap/Makefile +++ b/fs/iomap/Makefile @@ -6,6 +6,7 @@ obj-$(CONFIG_FS_IOMAP) += iomap.o iomap-y += \ - fiemap.o + fiemap.o \ + seek.o iomap-$(CONFIG_SWAP) += swapfile.o |