diff options
author | Steve French <stfrench@microsoft.com> | 2023-09-21 03:50:05 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2023-09-21 03:50:05 +0300 |
commit | c8ebf077fbebda3a24335660ded7cff4b90331b8 (patch) | |
tree | c0ea570e8cf8c0bce9607bc97868fc5f5dd7c0f0 | |
parent | 7fb77d9c87b8283f26aeeca473468e361b2fcf21 (diff) | |
download | linux-c8ebf077fbebda3a24335660ded7cff4b90331b8.tar.xz |
smb3: fix confusing debug message
The message said it was an invalid mode, when it was intentionally
not set. Fix confusing message logged to dmesg.
Reviewed-by: Paulo Alcantara (SUSE) <pc@manguebit.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
-rw-r--r-- | fs/smb/client/smb2pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/client/smb2pdu.c b/fs/smb/client/smb2pdu.c index 405ea324f28d..c75a80bb6d9e 100644 --- a/fs/smb/client/smb2pdu.c +++ b/fs/smb/client/smb2pdu.c @@ -848,7 +848,7 @@ add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode) iov[num].iov_base = create_posix_buf(mode); if (mode == ACL_NO_MODE) - cifs_dbg(FYI, "Invalid mode\n"); + cifs_dbg(FYI, "%s: no mode\n", __func__); if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = sizeof(struct create_posix); |