Skip to content

Commit 773dc23

Browse files
pcacjrSteve French
authored and
Steve French
committed
smb: client: fix noisy when tree connecting to DFS interlink targets
When the client attempts to tree connect to a domain-based DFS namespace from a DFS interlink target, the server will return STATUS_BAD_NETWORK_NAME and the following will appear on dmesg: CIFS: VFS: BAD_NETWORK_NAME: \\dom\dfs Since a DFS share might contain several DFS interlinks and they expire after 10 minutes, the above message might end up being flooded on dmesg when mounting or accessing them. Print this only once per share. Signed-off-by: Paulo Alcantara (Red Hat) <[email protected]> Signed-off-by: Steve French <[email protected]>
1 parent 77c2e45 commit 773dc23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/smb/client/smb2pdu.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2169,7 +2169,7 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
21692169

21702170
tcon_error_exit:
21712171
if (rsp && rsp->hdr.Status == STATUS_BAD_NETWORK_NAME)
2172-
cifs_tcon_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
2172+
cifs_dbg(VFS | ONCE, "BAD_NETWORK_NAME: %s\n", tree);
21732173
goto tcon_exit;
21742174
}
21752175

0 commit comments

Comments
 (0)