Skip to content

Commit 343a1b7

Browse files
aaptelsmfrench
authored andcommitted
cifs: make multichannel warning more visible
When no interfaces are returned by the server we cannot open multiple channels. Make it more obvious by reporting that to the user at the VFS log level. Signed-off-by: Aurelien Aptel <[email protected]> Signed-off-by: Steve French <[email protected]>
1 parent 09c40b1 commit 343a1b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/cifs/sess.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ int cifs_try_adding_channels(struct cifs_ses *ses)
101101
iface_count = ses->iface_count;
102102
if (iface_count <= 0) {
103103
spin_unlock(&ses->iface_lock);
104-
cifs_dbg(FYI, "no iface list available to open channels\n");
104+
cifs_dbg(VFS, "no iface list available to open channels\n");
105105
return 0;
106106
}
107107
ifaces = kmemdup(ses->iface_list, iface_count*sizeof(*ifaces),

0 commit comments

Comments
 (0)