diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2012-02-08 00:58:38 +0100 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2012-09-21 12:13:07 +0200 |
commit | c010d1ff4f69c9f4aa331dfd8266262fb1b478ce (patch) | |
tree | 8930c8f28fa0b3cd07d10a8321015b7760abea57 /fs/adfs/inode.c | |
parent | userns: Convert xenfs to use kuid and kgid where appropriate (diff) | |
download | linux-c010d1ff4f69c9f4aa331dfd8266262fb1b478ce.tar.xz linux-c010d1ff4f69c9f4aa331dfd8266262fb1b478ce.zip |
userns: Convert adfs to use kuid and kgid where appropriate
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'fs/adfs/inode.c')
-rw-r--r-- | fs/adfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/adfs/inode.c b/fs/adfs/inode.c index 1dab6a174d6a..e9bad5093a3f 100644 --- a/fs/adfs/inode.c +++ b/fs/adfs/inode.c @@ -304,8 +304,8 @@ adfs_notify_change(struct dentry *dentry, struct iattr *attr) * we can't change the UID or GID of any file - * we have a global UID/GID in the superblock */ - if ((ia_valid & ATTR_UID && attr->ia_uid != ADFS_SB(sb)->s_uid) || - (ia_valid & ATTR_GID && attr->ia_gid != ADFS_SB(sb)->s_gid)) + if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, ADFS_SB(sb)->s_uid)) || + (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, ADFS_SB(sb)->s_gid))) error = -EPERM; if (error) |