mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
ksmbd: auth: fix most kernel-doc warnings
Fix 12 of 17 kernel-doc warnings in auth.c: auth.c:221: warning: Function parameter or member 'conn' not described in 'ksmbd_auth_ntlmv2' auth.c:221: warning: Function parameter or member 'cryptkey' not described in 'ksmbd_auth_ntlmv2' auth.c:305: warning: Function parameter or member 'blob_len' not described in 'ksmbd_decode_ntlmssp_auth_blob' auth.c:305: warning: Function parameter or member 'conn' not described in 'ksmbd_decode_ntlmssp_auth_blob' auth.c:305: warning: Excess function parameter 'usr' description in 'ksmbd_decode_ntlmssp_auth_blob' auth.c:385: warning: Function parameter or member 'blob_len' not described in 'ksmbd_decode_ntlmssp_neg_blob' auth.c:385: warning: Function parameter or member 'conn' not described in 'ksmbd_decode_ntlmssp_neg_blob' auth.c:385: warning: Excess function parameter 'rsp' description in 'ksmbd_decode_ntlmssp_neg_blob' auth.c:385: warning: Excess function parameter 'sess' description in 'ksmbd_decode_ntlmssp_neg_blob' auth.c:413: warning: Function parameter or member 'conn' not described in 'ksmbd_build_ntlmssp_challenge_blob' auth.c:413: warning: Excess function parameter 'rsp' description in 'ksmbd_build_ntlmssp_challenge_blob' auth.c:413: warning: Excess function parameter 'sess' description in 'ksmbd_build_ntlmssp_challenge_blob' The other 5 are only present when a W=1 kernel build is done or when scripts/kernel-doc is run with -Wall. They are: auth.c:81: warning: No description found for return value of 'ksmbd_gen_sess_key' auth.c:385: warning: No description found for return value of 'ksmbd_decode_ntlmssp_neg_blob' auth.c:413: warning: No description found for return value of 'ksmbd_build_ntlmssp_challenge_blob' auth.c:577: warning: No description found for return value of 'ksmbd_sign_smb2_pdu' auth.c:628: warning: No description found for return value of 'ksmbd_sign_smb3_pdu' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Namjae Jeon <linkinjeon@kernel.org> Cc: Steve French <sfrench@samba.org> Cc: Sergey Senozhatsky <senozhatsky@chromium.org> Cc: Tom Talpey <tom@talpey.com> Cc: linux-cifs@vger.kernel.org Acked-by: Namjae Jeon <linkinjeon@kernel.org> Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
parent
ebfee7ad27
commit
b4068f1ef3
@ -208,10 +208,12 @@ out:
|
||||
|
||||
/**
|
||||
* ksmbd_auth_ntlmv2() - NTLMv2 authentication handler
|
||||
* @sess: session of connection
|
||||
* @conn: connection
|
||||
* @sess: session of connection
|
||||
* @ntlmv2: NTLMv2 challenge response
|
||||
* @blen: NTLMv2 blob length
|
||||
* @domain_name: domain name
|
||||
* @cryptkey: session crypto key
|
||||
*
|
||||
* Return: 0 on success, error number on error
|
||||
*/
|
||||
@ -294,7 +296,8 @@ out:
|
||||
* ksmbd_decode_ntlmssp_auth_blob() - helper function to construct
|
||||
* authenticate blob
|
||||
* @authblob: authenticate blob source pointer
|
||||
* @usr: user details
|
||||
* @blob_len: length of the @authblob message
|
||||
* @conn: connection
|
||||
* @sess: session of connection
|
||||
*
|
||||
* Return: 0 on success, error number on error
|
||||
@ -376,8 +379,8 @@ int ksmbd_decode_ntlmssp_auth_blob(struct authenticate_message *authblob,
|
||||
* ksmbd_decode_ntlmssp_neg_blob() - helper function to construct
|
||||
* negotiate blob
|
||||
* @negblob: negotiate blob source pointer
|
||||
* @rsp: response header pointer to be updated
|
||||
* @sess: session of connection
|
||||
* @blob_len: length of the @authblob message
|
||||
* @conn: connection
|
||||
*
|
||||
*/
|
||||
int ksmbd_decode_ntlmssp_neg_blob(struct negotiate_message *negblob,
|
||||
@ -403,8 +406,7 @@ int ksmbd_decode_ntlmssp_neg_blob(struct negotiate_message *negblob,
|
||||
* ksmbd_build_ntlmssp_challenge_blob() - helper function to construct
|
||||
* challenge blob
|
||||
* @chgblob: challenge blob source pointer to initialize
|
||||
* @rsp: response header pointer to be updated
|
||||
* @sess: session of connection
|
||||
* @conn: connection
|
||||
*
|
||||
*/
|
||||
unsigned int
|
||||
|
Loading…
Reference in New Issue
Block a user