|
@@ -342,14 +342,14 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid,
|
|
|
|
|
|
*created |= FILE_CREATED;
|
|
|
if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
|
|
|
- args.uid = (__u64) current_fsuid();
|
|
|
+ args.uid = current_fsuid();
|
|
|
if (inode->i_mode & S_ISGID)
|
|
|
- args.gid = (__u64) inode->i_gid;
|
|
|
+ args.gid = inode->i_gid;
|
|
|
else
|
|
|
- args.gid = (__u64) current_fsgid();
|
|
|
+ args.gid = current_fsgid();
|
|
|
} else {
|
|
|
- args.uid = NO_CHANGE_64;
|
|
|
- args.gid = NO_CHANGE_64;
|
|
|
+ args.uid = INVALID_UID; /* no change */
|
|
|
+ args.gid = INVALID_GID; /* no change */
|
|
|
}
|
|
|
CIFSSMBUnixSetFileInfo(xid, tcon, &args, fid->netfid,
|
|
|
current->tgid);
|
|
@@ -588,11 +588,11 @@ int cifs_mknod(struct inode *inode, struct dentry *direntry, umode_t mode,
|
|
|
.device = device_number,
|
|
|
};
|
|
|
if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) {
|
|
|
- args.uid = (__u64) current_fsuid();
|
|
|
- args.gid = (__u64) current_fsgid();
|
|
|
+ args.uid = current_fsuid();
|
|
|
+ args.gid = current_fsgid();
|
|
|
} else {
|
|
|
- args.uid = NO_CHANGE_64;
|
|
|
- args.gid = NO_CHANGE_64;
|
|
|
+ args.uid = INVALID_UID; /* no change */
|
|
|
+ args.gid = INVALID_GID; /* no change */
|
|
|
}
|
|
|
rc = CIFSSMBUnixSetPathInfo(xid, pTcon, full_path, &args,
|
|
|
cifs_sb->local_nls,
|