diff options
author | Steve French <stfrench@microsoft.com> | 2018-03-29 20:16:34 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-04-02 04:24:40 +0300 |
commit | 2a18287b54f8654d9835cddfc80a12fd73162fc0 (patch) | |
tree | fa7eb623dada2122fb905751ccafe44feb277f30 /fs/cifs | |
parent | 2564f2ff83975e05dbd2f13301f7147b63e67c91 (diff) | |
download | linux-2a18287b54f8654d9835cddfc80a12fd73162fc0.tar.xz |
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>
Diffstat (limited to 'fs/cifs')
-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, server->sec_mode, server->capabilities, server->timeAdj); if (ses->auth_key.response) { - cifs_dbg(VFS, "Free previous auth_key.response = %p\n", + cifs_dbg(FYI, "Free previous auth_key.response = %p\n", ses->auth_key.response); kfree(ses->auth_key.response); ses->auth_key.response = NULL; |