Commit 9692ea9d authored by Steve French's avatar Steve French

smb3: remove overly noisy debug line in signing errors

A dump_stack call for signature related errors can be too noisy
and not of much value in debugging such problems.
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
Reviewed-by: default avatarShyam Prasad N <nspmangalore@gmail.com>
parent 1f641d94
......@@ -660,8 +660,8 @@ smb2_verify_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server)
return rc;
if (memcmp(server_response_sig, shdr->Signature, SMB2_SIGNATURE_SIZE)) {
dump_stack();
cifs_dbg(VFS, "sign fail cmd 0x%x message id 0x%llx\n", shdr->Command, shdr->MessageId);
cifs_dbg(VFS, "sign fail cmd 0x%x message id 0x%llx\n",
shdr->Command, shdr->MessageId);
return -EACCES;
} else
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment