projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bbb309
)
userns: Fix posix_acl_file_xattr_userns gid conversion
author
Eric W. Biederman
<ebiederm@xmission.com>
Tue, 9 Oct 2012 22:11:55 +0000
(15:11 -0700)
committer
Eric W. Biederman
<ebiederm@xmission.com>
Fri, 12 Oct 2012 20:16:48 +0000
(13:16 -0700)
The code needs to be from_kgid(make_kgid(...)...) not
from_kuid(make_kgid(...)...). Doh!
Reported-by: Jan Kara <jack@suse.cz>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
fs/xattr_acl.c
patch
|
blob
|
history
diff --git
a/fs/xattr_acl.c
b/fs/xattr_acl.c
index
11efd83
..
9fbea87
100644
(file)
--- a/
fs/xattr_acl.c
+++ b/
fs/xattr_acl.c
@@
-45,7
+45,7
@@
static void posix_acl_fix_xattr_userns(
break;
case ACL_GROUP:
gid = make_kgid(from, le32_to_cpu(entry->e_id));
- entry->e_id = cpu_to_le32(from_k
uid(to, u
id));
+ entry->e_id = cpu_to_le32(from_k
gid(to, g
id));
break;
default:
break;