ksmbd: downgrade ndr version error message to debug
authorNamjae Jeon <linkinjeon@kernel.org>
Tue, 24 Jan 2023 15:09:02 +0000 (00:09 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 1 Feb 2023 07:27:24 +0000 (08:27 +0100)
commit a34dc4a9b9e2fb3a45c179a60bb0b26539c96189 upstream.

When user switch samba to ksmbd, The following message flood is coming
when accessing files. Samba seems to changs dos attribute version to v5.
This patch downgrade ndr version error message to debug.

$ dmesg
...
[68971.766914] ksmbd: v5 version is not supported
[68971.779808] ksmbd: v5 version is not supported
[68971.871544] ksmbd: v5 version is not supported
[68971.910135] ksmbd: v5 version is not supported
...

Cc: stable@vger.kernel.org
Fixes: e2f34481b24d ("cifsd: add server-side procedures for SMB3")
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ksmbd/ndr.c

index 5052be9..28f44f0 100644 (file)
@@ -242,7 +242,7 @@ int ndr_decode_dos_attr(struct ndr *n, struct xattr_dos_attrib *da)
                return ret;
 
        if (da->version != 3 && da->version != 4) {
-               pr_err("v%d version is not supported\n", da->version);
+               ksmbd_debug(VFS, "v%d version is not supported\n", da->version);
                return -EINVAL;
        }
 
@@ -251,7 +251,7 @@ int ndr_decode_dos_attr(struct ndr *n, struct xattr_dos_attrib *da)
                return ret;
 
        if (da->version != version2) {
-               pr_err("ndr version mismatched(version: %d, version2: %d)\n",
+               ksmbd_debug(VFS, "ndr version mismatched(version: %d, version2: %d)\n",
                       da->version, version2);
                return -EINVAL;
        }
@@ -453,7 +453,7 @@ int ndr_decode_v4_ntacl(struct ndr *n, struct xattr_ntacl *acl)
        if (ret)
                return ret;
        if (acl->version != 4) {
-               pr_err("v%d version is not supported\n", acl->version);
+               ksmbd_debug(VFS, "v%d version is not supported\n", acl->version);
                return -EINVAL;
        }
 
@@ -461,7 +461,7 @@ int ndr_decode_v4_ntacl(struct ndr *n, struct xattr_ntacl *acl)
        if (ret)
                return ret;
        if (acl->version != version2) {
-               pr_err("ndr version mismatched(version: %d, version2: %d)\n",
+               ksmbd_debug(VFS, "ndr version mismatched(version: %d, version2: %d)\n",
                       acl->version, version2);
                return -EINVAL;
        }