diff options
author | Steve French <stfrench@microsoft.com> | 2022-10-11 23:26:33 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2022-10-13 09:35:57 -0500 |
commit | 977bb6530807a9a8e7f29d7dfba5737135b50df6 (patch) | |
tree | ba913f803cf9472d182a05f6b19e95f8790cb46c /fs | |
parent | 2f6f19c7aaad5005dc75298a413eb0243c5d312d (diff) |
smb3: clarify multichannel warning
When server does not return network interfaces, clarify the
message to indicate that "multichannel not available" not just
that "empty network interface returned by server ..."
Suggested-by: Tom Talpey <tom@talpey.com>
Reviewed-by: Bharath SM <bharathsm@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/smb2ops.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index 5187250c5f66..32d5387a9dde 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c @@ -550,7 +550,8 @@ parse_server_interfaces(struct network_interface_info_ioctl_rsp *buf, /* avoid spamming logs every 10 minutes, so log only in mount */ if ((ses->chan_max > 1) && in_mount) cifs_dbg(VFS, - "empty network interface list returned by server %s\n", + "multichannel not available\n" + "Empty network interface list returned by server %s\n", ses->server->hostname); rc = -EINVAL; goto out; |