diff options
| author | Chao Yu <yuchao0@huawei.com> | 2017-07-19 00:19:05 +0800 |
|---|---|---|
| committer | Mister Oyster <oysterized@gmail.com> | 2017-10-04 15:23:28 +0200 |
| commit | cc00b9a1891285df1e3b1ee78ca77cc7cb6d1918 (patch) | |
| tree | 1f39bbfe5d88ddc2d4508a29f5d049a93f2c075a /fs/f2fs/data.c | |
| parent | 02b8517c74295e8a70577173a0889fc8bac8f940 (diff) | |
f2fs: make max inline size changeable
This patch tries to make below macros calculating max inline size,
inline dentry field size considerring reserving size-changeable
space:
- MAX_INLINE_DATA
- NR_INLINE_DENTRY
- INLINE_DENTRY_BITMAP_SIZE
- INLINE_RESERVED_SIZE
Then, when inline_{data,dentry} options is enabled, it allows us to
reserve inline space with different size flexibly for adding newly
introduced inode attribute.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/data.c')
| -rw-r--r-- | fs/f2fs/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 81584aea3..5843a38d5 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -810,7 +810,7 @@ int f2fs_preallocate_blocks(struct inode *inode, loff_t pos, F2FS_GET_BLOCK_PRE_AIO : F2FS_GET_BLOCK_PRE_DIO); } - if (pos + count > MAX_INLINE_DATA) { + if (pos + count > MAX_INLINE_DATA(inode)) { err = f2fs_convert_inline_inode(inode); if (err) return err; @@ -1852,7 +1852,7 @@ restart: set_new_dnode(&dn, inode, ipage, ipage, 0); if (f2fs_has_inline_data(inode)) { - if (pos + len <= MAX_INLINE_DATA) { + if (pos + len <= MAX_INLINE_DATA(inode)) { read_inline_data(page, ipage); set_inode_flag(inode, FI_DATA_EXIST); if (inode->i_nlink) |
