mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
ksmdb: use cmd helper variable in smb2_get_ksmbd_tcon()
Use cmd helper variable in smb2_get_ksmbd_tcon(). Cc: Tom Talpey <tom@talpey.com> Cc: Ronnie Sahlberg <ronniesahlberg@gmail.com> Cc: Steve French <smfrench@gmail.com> Cc: Hyunchul Lee <hyc.lee@gmail.com> Acked-by: Namjae Jeon <linkinjeon@kernel.org> Signed-off-by: Ralph Boehme <slow@samba.org> Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
parent
b83b27909e
commit
341b16014b
@ -94,12 +94,13 @@ struct channel *lookup_chann_list(struct ksmbd_session *sess, struct ksmbd_conn
|
||||
int smb2_get_ksmbd_tcon(struct ksmbd_work *work)
|
||||
{
|
||||
struct smb2_hdr *req_hdr = work->request_buf;
|
||||
unsigned int cmd = le16_to_cpu(req_hdr->Command);
|
||||
int tree_id;
|
||||
|
||||
work->tcon = NULL;
|
||||
if (work->conn->ops->get_cmd_val(work) == SMB2_TREE_CONNECT_HE ||
|
||||
work->conn->ops->get_cmd_val(work) == SMB2_CANCEL_HE ||
|
||||
work->conn->ops->get_cmd_val(work) == SMB2_LOGOFF_HE) {
|
||||
if (cmd == SMB2_TREE_CONNECT_HE ||
|
||||
cmd == SMB2_CANCEL_HE ||
|
||||
cmd == SMB2_LOGOFF_HE) {
|
||||
ksmbd_debug(SMB, "skip to check tree connect request\n");
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user