This is a note to let you know that I've just added the patch titled ksmbd: Fix spelling mistake "connction" -> "connection" to the 6.6-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ksmbd-fix-spelling-mistake-connction-connection.patch and it can be found in the queue-6.6 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 91048b84ab8a5cb49ebe92ddd58b1ccc38f39aab Author: Colin Ian King <colin.i.king@xxxxxxxxx> Date: Wed Mar 13 09:16:16 2024 +0000 ksmbd: Fix spelling mistake "connction" -> "connection" [ Upstream commit e758fa6956cbc873e4819ec3dd97cfd05a4c147e ] There is a spelling mistake in a ksmbd_debug debug message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@xxxxxxxxx> Acked-by: Namjae Jeon <linkinjeon@xxxxxxxxxx> Signed-off-by: Steve French <stfrench@xxxxxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/fs/smb/server/oplock.c b/fs/smb/server/oplock.c index 58bafe23ded9a..b7adb6549aa0f 100644 --- a/fs/smb/server/oplock.c +++ b/fs/smb/server/oplock.c @@ -1856,7 +1856,7 @@ int smb2_check_durable_oplock(struct ksmbd_conn *conn, if (memcmp(conn->ClientGUID, fp->client_guid, SMB2_CLIENT_GUID_SIZE)) { - ksmbd_debug(SMB, "Client guid of fp is not equal to the one of connction\n"); + ksmbd_debug(SMB, "Client guid of fp is not equal to the one of connection\n"); ret = -EBADF; goto out; }