diff options
author | Chao Yu <chao2.yu@samsung.com> | 2015-03-23 05:37:39 +0300 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-04-11 01:08:54 +0300 |
commit | 30c62fdb25cc0c55fa442245f7aaab074d2e701a (patch) | |
tree | 7b8307fade287e882a164772d569043748bfd607 /fs | |
parent | 84e97c2767f9ed711718b47b8722ddd137f1dfe9 (diff) | |
download | linux-30c62fdb25cc0c55fa442245f7aaab074d2e701a.tar.xz |
f2fs: persist system.advise into on-disk inode
This patch fixes to dirty inode for persisting i_advise of f2fs inode info into
on-disk inode if user sets system.advise through setxattr. Otherwise the new
value will be lost.
Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/f2fs/xattr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/f2fs/xattr.c b/fs/f2fs/xattr.c index 55649bec0b4d..b0fd2f2d0716 100644 --- a/fs/f2fs/xattr.c +++ b/fs/f2fs/xattr.c @@ -153,6 +153,7 @@ static int f2fs_xattr_advise_set(struct dentry *dentry, const char *name, return -EINVAL; F2FS_I(inode)->i_advise |= *(char *)value; + mark_inode_dirty(inode); return 0; } |