projects
/
platform
/
kernel
/
linux-arm64.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b4afdd
)
f2fs: check the acl's validity before setting
author
ZhangZhen
<zhenzhang.zhang@huawei.com>
Fri, 4 Apr 2014 01:47:16 +0000
(09:47 +0800)
committer
Jaegeuk Kim
<jaegeuk.kim@samsung.com>
Mon, 7 Apr 2014 03:18:30 +0000
(12:18 +0900)
Before setting the acl, call posix_acl_valid() to check if it is
valid or not.
Signed-off-by: zhangzhen <zhenzhang.zhang@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
fs/f2fs/acl.c
patch
|
blob
|
history
diff --git
a/fs/f2fs/acl.c
b/fs/f2fs/acl.c
index
a285715
..
e93e4ec
100644
(file)
--- a/
fs/f2fs/acl.c
+++ b/
fs/f2fs/acl.c
@@
-203,6
+203,12
@@
static int __f2fs_set_acl(struct inode *inode, int type,
size_t size = 0;
int error;
+ if (acl) {
+ error = posix_acl_valid(acl);
+ if (error < 0)
+ return error;
+ }
+
switch (type) {
case ACL_TYPE_ACCESS:
name_index = F2FS_XATTR_INDEX_POSIX_ACL_ACCESS;