]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ksmbd: Fix spelling mistake "excceed" -> "exceeded"
authorColin Ian King <colin.i.king@gmail.com>
Sun, 31 Dec 2023 07:12:29 +0000 (16:12 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Jan 2024 14:18:28 +0000 (15:18 +0100)
[ Upstream commit 7a17c61ee3b2683c40090179c273f4701fca9677 ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/smb/server/connection.c

index e885e0eb0dc358246f6fa2fb955c815778585831..ffbf14d0241916fbd50885b35358363c5b647f5f 100644 (file)
@@ -345,7 +345,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,
                                        READ_ONCE(conn->status));
                        break;