cifs: Convert struct cifs_sb_info to use kuids and kgids
Cc: Steve French <smfrench@gmail.com> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
@@ -2743,7 +2743,7 @@ compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data)
|
||||
if (new->rsize && new->rsize < old->rsize)
|
||||
return 0;
|
||||
|
||||
if (old->mnt_uid != new->mnt_uid || old->mnt_gid != new->mnt_gid)
|
||||
if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid))
|
||||
return 0;
|
||||
|
||||
if (old->mnt_file_mode != new->mnt_file_mode ||
|
||||
|
Reference in New Issue
Block a user