aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/Makefile
diff options
context:
space:
mode:
authorChao Yu <chao2.yu@samsung.com>2015-07-08 17:59:36 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2015-08-04 14:09:58 -0700
commita28ef1f5aebe1068fc5fd65c4699c1c3b1e9094b (patch)
treec66873bd837f453243bde9b6342346e8e992f313 /fs/f2fs/Makefile
parentf2fs: don't try to split extents shorter than F2FS_MIN_EXTENT_LEN (diff)
downloadlinux-dev-a28ef1f5aebe1068fc5fd65c4699c1c3b1e9094b.tar.xz
linux-dev-a28ef1f5aebe1068fc5fd65c4699c1c3b1e9094b.zip
f2fs: maintain extent cache in separated file
This patch moves extent cache related code from data.c into extent_cache.c since extent cache is independent feature, and its codes are not relate to others in data.c, it's better for us to maintain them in separated place. There is no functionality change, but several small coding style fixes including: * rename __drop_largest_extent to f2fs_drop_largest_extent for exporting; * rename misspelled word 'untill' to 'until'; * remove unneeded 'return' in the end of f2fs_destroy_extent_tree(). Signed-off-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/Makefile')
-rw-r--r--fs/f2fs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/Makefile b/fs/f2fs/Makefile
index 005251b8d459..08e101ed914c 100644
--- a/fs/f2fs/Makefile
+++ b/fs/f2fs/Makefile
@@ -2,7 +2,7 @@ obj-$(CONFIG_F2FS_FS) += f2fs.o
f2fs-y := dir.o file.o inode.o namei.o hash.o super.o inline.o
f2fs-y += checkpoint.o gc.o data.o node.o segment.o recovery.o
-f2fs-y += shrinker.o
+f2fs-y += shrinker.o extent_cache.o
f2fs-$(CONFIG_F2FS_STAT_FS) += debug.o
f2fs-$(CONFIG_F2FS_FS_XATTR) += xattr.o
f2fs-$(CONFIG_F2FS_FS_POSIX_ACL) += acl.o