mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
cifs: when a channel is not found for server, log its connection id
cifs_ses_get_chan_index gets the index for a given server pointer. When a match is not found, we warn about a possible bug. However, printing details about the non-matching server could be more useful to debug here. Signed-off-by: Shyam Prasad N <sprasad@microsoft.com> Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
parent
7c05eae8db
commit
5d24968f5b
1 changed files with 3 additions and 0 deletions
|
@ -81,6 +81,9 @@ cifs_ses_get_chan_index(struct cifs_ses *ses,
|
|||
}
|
||||
|
||||
/* If we didn't find the channel, it is likely a bug */
|
||||
if (server)
|
||||
cifs_dbg(VFS, "unable to get chan index for server: 0x%llx",
|
||||
server->conn_id);
|
||||
WARN_ON(1);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue