mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
f2fs: drop the volatile_write flag only
When aborting volatile_writes, let's drop its flag and give up any further volatile_writes. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
c5bda1c8b1
commit
de6a8ec982
@ -1391,11 +1391,9 @@ static int f2fs_ioc_abort_volatile_write(struct file *filp)
|
||||
clear_inode_flag(F2FS_I(inode), FI_ATOMIC_FILE);
|
||||
}
|
||||
|
||||
if (f2fs_is_volatile_file(inode)) {
|
||||
if (f2fs_is_volatile_file(inode))
|
||||
clear_inode_flag(F2FS_I(inode), FI_VOLATILE_FILE);
|
||||
filemap_fdatawrite(inode->i_mapping);
|
||||
set_inode_flag(F2FS_I(inode), FI_VOLATILE_FILE);
|
||||
}
|
||||
|
||||
mnt_drop_write_file(filp);
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user