summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJaegeuk Kim2019-06-27 03:23:05 +0200
committerJaegeuk Kim2019-07-03 00:40:42 +0200
commitcad3836f9eb292647c9e3e5c6c778e6fa6e6bf15 (patch)
treed2dfb3cfe303ed1bb3f4d834d964e6a60872cfad /fs
parentf2fs: fix is_idle() check for discard type (diff)
downloadkernel-qcow2-linux-cad3836f9eb292647c9e3e5c6c778e6fa6e6bf15.tar.gz
kernel-qcow2-linux-cad3836f9eb292647c9e3e5c6c778e6fa6e6bf15.tar.xz
kernel-qcow2-linux-cad3836f9eb292647c9e3e5c6c778e6fa6e6bf15.zip
f2fs: allocate blocks for pinned file
This patch allows fallocate to allocate physical blocks for pinned file. Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/file.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index c67ff5057472..b164f48e0f31 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -1528,7 +1528,12 @@ static int expand_inode_data(struct inode *inode, loff_t offset,
if (off_end)
map.m_len++;
- err = f2fs_map_blocks(inode, &map, 1, F2FS_GET_BLOCK_PRE_AIO);
+ if (f2fs_is_pinned_file(inode))
+ map.m_seg_type = CURSEG_COLD_DATA;
+
+ err = f2fs_map_blocks(inode, &map, 1, (f2fs_is_pinned_file(inode) ?
+ F2FS_GET_BLOCK_PRE_DIO :
+ F2FS_GET_BLOCK_PRE_AIO));
if (err) {
pgoff_t last_off;