You need to sign in or sign up before continuing.
Commit 59c78844 authored by Pavel Shilovsky's avatar Pavel Shilovsky

Change share flags shift to 28 for CentOS 5.6

parent 3bc913eb
......@@ -332,7 +332,7 @@ cifs_create(struct inode *inode, struct dentry *direntry, int mode,
if (cifs_sb->tcon->ses->capabilities & CAP_NT_SMBS)
rc = CIFSSMBOpen(xid, tcon, full_path, disposition,
desiredAccess, ((~(oflags>>21))&7), create_options,
desiredAccess, ((~(oflags>>28))&7), create_options,
&fileHandle, &oplock, buf, cifs_sb->local_nls,
cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
else
......
......@@ -218,7 +218,7 @@ psx_client_can_cache:
static inline int cifs_get_share_flags(unsigned int flags)
{
return ((~(flags>>21))&7);
return ((~(flags>>28))&7);
}
/* all arguments to this function must be checked for validity in caller */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment