diff options
author | Steve French <smfrench@gmail.com> | 2014-09-25 01:26:55 -0500 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2014-10-02 14:10:04 -0500 |
commit | 19e81573fca7b87ced7701e01ba164b968d929bd (patch) | |
tree | 44da3ddec60a48a9e8b3caf95a4df34b688c5de1 /fs/cifs/smb1ops.c | |
parent | 50dddff3cb9af328dd42bafe3437c7f47e8b38a9 (diff) | |
download | linux-stable-19e81573fca7b87ced7701e01ba164b968d929bd.tar.gz linux-stable-19e81573fca7b87ced7701e01ba164b968d929bd.tar.bz2 linux-stable-19e81573fca7b87ced7701e01ba164b968d929bd.zip |
Fix problem recognizing symlinks
Changeset eb85d94bd introduced a problem where if a cifs open
fails during query info of a file we
will still try to close the file (happens with certain types
of reparse points) even though the file handle is not valid.
In addition for SMB2/SMB3 we were not mapping the return code returned
by Windows when trying to open a file (like a Windows NFS symlink)
which is a reparse point.
Signed-off-by: Steve French <smfrench@gmail.com>
Reviewed-by: Pavel Shilovsky <pshilovsky@samba.org>
CC: stable <stable@vger.kernel.org> #v3.13+
Diffstat (limited to 'fs/cifs/smb1ops.c')
-rw-r--r-- | fs/cifs/smb1ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smb1ops.c b/fs/cifs/smb1ops.c index 1a6df4b03f67..52131d8cb4d5 100644 --- a/fs/cifs/smb1ops.c +++ b/fs/cifs/smb1ops.c @@ -586,7 +586,7 @@ cifs_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, tmprc = CIFS_open(xid, &oparms, &oplock, NULL); if (tmprc == -EOPNOTSUPP) *symlink = true; - else + else if (tmprc == 0) CIFSSMBClose(xid, tcon, fid.netfid); } |