diff options
author | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2014-04-22 23:23:14 -0400 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2014-05-06 21:21:56 -0400 |
commit | c02745ef684f9a6f98f30388ed048ee460db5483 (patch) | |
tree | 47ee64820f98b6b6dd679565217b7258a4a31ec5 /fs/f2fs/acl.c | |
parent | e112326805a50ee2016faf0971660122471f7c04 (diff) |
f2fs: pass flags field to setxattr functions
This patch passes the "flags" field to the low level setxattr functions
to use XATTR_REPLACE in the following patches.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/acl.c')
-rw-r--r-- | fs/f2fs/acl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c index e93e4ec7d165..dbe2141d10ad 100644 --- a/fs/f2fs/acl.c +++ b/fs/f2fs/acl.c | |||
@@ -240,7 +240,7 @@ static int __f2fs_set_acl(struct inode *inode, int type, | |||
240 | } | 240 | } |
241 | } | 241 | } |
242 | 242 | ||
243 | error = f2fs_setxattr(inode, name_index, "", value, size, ipage); | 243 | error = f2fs_setxattr(inode, name_index, "", value, size, ipage, 0); |
244 | 244 | ||
245 | kfree(value); | 245 | kfree(value); |
246 | if (!error) | 246 | if (!error) |