diff options
author | Steve French <stfrench@microsoft.com> | 2019-06-24 01:19:52 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2019-07-07 22:37:43 -0500 |
commit | 6552d6a0264de505d3bb1445aecf757b1ec3873a (patch) | |
tree | 56a4e92791e6eebfbb813b366cae1fdf7622743a | |
parent | 29fbeb7a908a60a5ae8c50fbe171cb8fdcef1980 (diff) | |
download | linux-6552d6a0264de505d3bb1445aecf757b1ec3873a.tar.gz linux-6552d6a0264de505d3bb1445aecf757b1ec3873a.tar.bz2 linux-6552d6a0264de505d3bb1445aecf757b1ec3873a.zip |
cifs: Fix check for matching with existing mount
If we mount the same share twice, we check the flags to see if the
second mount matches the earlier mount, but we left some flags out.
Signed-off-by: Steve French <stfrench@microsoft.com>
-rw-r--r-- | fs/cifs/cifsglob.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 4777b3c4a92c..88c98fa15f39 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -617,6 +617,7 @@ struct smb_vol { CIFS_MOUNT_FSCACHE | CIFS_MOUNT_MF_SYMLINKS | \ CIFS_MOUNT_MULTIUSER | CIFS_MOUNT_STRICT_IO | \ CIFS_MOUNT_CIFS_BACKUPUID | CIFS_MOUNT_CIFS_BACKUPGID | \ + CIFS_MOUNT_UID_FROM_ACL | CIFS_MOUNT_NO_HANDLE_CACHE | \ CIFS_MOUNT_NO_DFS) /** |