summaryrefslogtreecommitdiff
path: root/fs/ksmbd/connection.c
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2023-01-30 12:23:57 +0300
committerSteve French <stfrench@microsoft.com>2023-01-31 05:49:30 +0300
commit7a17c61ee3b2683c40090179c273f4701fca9677 (patch)
tree9aa9d30d4bac02267ec0d0af766775e4d6224f84 /fs/ksmbd/connection.c
parentd280a958f8b2b62610c280ecdf35d780e7922620 (diff)
downloadlinux-7a17c61ee3b2683c40090179c273f4701fca9677.tar.xz
ksmbd: Fix spelling mistake "excceed" -> "exceeded"
There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Acked-by: Namjae Jeon <linkinjeon@kernel.org> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/ksmbd/connection.c')
-rw-r--r--fs/ksmbd/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ksmbd/connection.c b/fs/ksmbd/connection.c
index fc2479ec7b10..5b10b03800c1 100644
--- a/fs/ksmbd/connection.c
+++ b/fs/ksmbd/connection.c
@@ -312,7 +312,7 @@ int ksmbd_conn_handler_loop(void *p)
max_allowed_pdu_size = SMB3_MAX_MSGSIZE;
if (pdu_size > max_allowed_pdu_size) {
- pr_err_ratelimited("PDU length(%u) excceed maximum allowed pdu size(%u) on connection(%d)\n",
+ pr_err_ratelimited("PDU length(%u) exceeded maximum allowed pdu size(%u) on connection(%d)\n",
pdu_size, max_allowed_pdu_size,
conn->status);
break;