diff options
author | Steve French <stfrench@microsoft.com> | 2018-03-29 13:16:34 -0400 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-04-01 21:24:40 -0400 |
commit | 2a18287b54f8654d9835cddfc80a12fd73162fc0 (patch) | |
tree | fa7eb623dada2122fb905751ccafe44feb277f30 | |
parent | 2564f2ff83975e05dbd2f13301f7147b63e67c91 (diff) |
Don't log confusing message on reconnect by default
Change the following message (which can occur on reconnect) from
a warning to an FYI message. It is confusing to users.
[58360.523634] CIFS VFS: Free previous auth_key.response = 00000000a91cdc84
By default this message won't show up on reconnect unless the user bumps
up the log level to include FYI messages.
Signed-off-by: Steve French <smfrench@gmail.com>
Reviewed-by: Pavel Shilovsky <pshilov@microsoft.com>
-rw-r--r-- | fs/cifs/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index a726f524fb84..4af41b01e0e9 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
@@ -4306,7 +4306,7 @@ cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, | |||
4306 | server->sec_mode, server->capabilities, server->timeAdj); | 4306 | server->sec_mode, server->capabilities, server->timeAdj); |
4307 | 4307 | ||
4308 | if (ses->auth_key.response) { | 4308 | if (ses->auth_key.response) { |
4309 | cifs_dbg(VFS, "Free previous auth_key.response = %p\n", | 4309 | cifs_dbg(FYI, "Free previous auth_key.response = %p\n", |
4310 | ses->auth_key.response); | 4310 | ses->auth_key.response); |
4311 | kfree(ses->auth_key.response); | 4311 | kfree(ses->auth_key.response); |
4312 | ses->auth_key.response = NULL; | 4312 | ses->auth_key.response = NULL; |