summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAurelien Aptel <aaptel@suse.com>2017-11-21 14:47:56 +0100
committerSteve French <smfrench@gmail.com>2017-12-06 12:48:01 -0600
commit5702591fc6a3f409f460def104ee149330dac82d (patch)
tree54ba9fc28c14d3d3d71e13b93d5700ace5e91252 /fs
parenta821df3f1af72aa6a0d573eea94a7dd2613e9f4e (diff)
downloadlinux-0-day-5702591fc6a3f409f460def104ee149330dac82d.tar.gz
linux-0-day-5702591fc6a3f409f460def104ee149330dac82d.tar.xz
CIFS: don't log STATUS_NOT_FOUND errors for DFS
cifs.ko makes DFS queries regardless of the type of the server and non-DFS servers are common. This often results in superfluous logging of non-critical errors. Signed-off-by: Aurelien Aptel <aaptel@suse.com> Signed-off-by: Steve French <smfrench@gmail.com> Reviewed-by: Ronnie Sahlberg <lsahlber@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/cifs/smb2ops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c
index e06740436b920..ed88ab8a47743 100644
--- a/fs/cifs/smb2ops.c
+++ b/fs/cifs/smb2ops.c
@@ -1406,7 +1406,8 @@ smb2_get_dfs_refer(const unsigned int xid, struct cifs_ses *ses,
} while (rc == -EAGAIN);
if (rc) {
- cifs_dbg(VFS, "ioctl error in smb2_get_dfs_refer rc=%d\n", rc);
+ if (rc != -ENOENT)
+ cifs_dbg(VFS, "ioctl error in smb2_get_dfs_refer rc=%d\n", rc);
goto out;
}