diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2021-12-21 10:07:12 +0100 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-12-29 05:47:22 +0100 |
commit | 4bfd9eed15e163969156e976c62db5ef423e5b0f (patch) | |
tree | 3049ee00e838ab3ab2c75146d3710dc50a3b5388 /fs/ksmbd/smb2pdu.c | |
parent | ksmbd: Fix buffer_check_err() kernel-doc comment (diff) | |
download | linux-4bfd9eed15e163969156e976c62db5ef423e5b0f.tar.xz linux-4bfd9eed15e163969156e976c62db5ef423e5b0f.zip |
ksmbd: Fix smb2_set_info_file() kernel-doc comment
Fix argument list that the kdoc format and script verified in
smb2_set_info_file().
The warnings were found by running scripts/kernel-doc, which is
caused by using 'make W=1'.
fs/ksmbd/smb2pdu.c:5862: warning: Function parameter or member 'req' not
described in 'smb2_set_info_file'
fs/ksmbd/smb2pdu.c:5862: warning: Excess function parameter 'info_class'
description in 'smb2_set_info_file'
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Fixes: 9496e268e3af ("ksmbd: add request buffer validation in smb2_set_info")
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to '')
-rw-r--r-- | fs/ksmbd/smb2pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index 08ff4684dee6..722f14a1b77a 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -5848,7 +5848,7 @@ static int set_file_mode_info(struct ksmbd_file *fp, * smb2_set_info_file() - handler for smb2 set info command * @work: smb work containing set info command buffer * @fp: ksmbd_file pointer - * @info_class: smb2 set info class + * @req: request buffer pointer * @share: ksmbd_share_config pointer * * Return: 0 on success, otherwise error |