diff options
author | Huajun Li <huajun.li@intel.com> | 2013-11-10 19:13:19 +0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-12-26 15:40:09 +0400 |
commit | e18c65b2ac91aa59f89333da595d5155184f76cf (patch) | |
tree | 00cfd81f927aef7416b59410ba578300a99c30dd /fs/f2fs/Makefile | |
parent | 0d47c1adc2a1f1e4f4673f122a8328c90c58e232 (diff) | |
download | linux-e18c65b2ac91aa59f89333da595d5155184f76cf.tar.xz |
f2fs: key functions to handle inline data
Functions to implement inline data read/write, and move inline data to
normal data block when file size exceeds inline data limitation.
Signed-off-by: Huajun Li <huajun.li@intel.com>
Signed-off-by: Haicheng Li <haicheng.li@linux.intel.com>
Signed-off-by: Weihong Xu <weihong.xu@intel.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/Makefile')
-rw-r--r-- | fs/f2fs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/Makefile b/fs/f2fs/Makefile index 27a0820340b9..2e35da12d292 100644 --- a/fs/f2fs/Makefile +++ b/fs/f2fs/Makefile @@ -1,6 +1,6 @@ obj-$(CONFIG_F2FS_FS) += f2fs.o -f2fs-y := dir.o file.o inode.o namei.o hash.o super.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-$(CONFIG_F2FS_STAT_FS) += debug.o f2fs-$(CONFIG_F2FS_FS_XATTR) += xattr.o |