Skip to content

Commit

Permalink
ksmbd: fix typo, syncronous->synchronous
Browse files Browse the repository at this point in the history
[ Upstream commit f8d6e74 ]

syncronous->synchronous

Signed-off-by: Dawei Li <set_pte_at@outlook.com>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Reviewed-by: Sergey Senozhatsky <senozhatsky@chromium.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Dawei Li authored and gregkh committed Jan 5, 2024
1 parent 052b41e commit b6502c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions fs/smb/server/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void ksmbd_conn_enqueue_request(struct ksmbd_work *work)

if (conn->ops->get_cmd_val(work) != SMB2_CANCEL_HE) {
requests_queue = &conn->requests;
work->syncronous = true;
work->synchronous = true;
}

if (requests_queue) {
Expand All @@ -141,7 +141,7 @@ int ksmbd_conn_try_dequeue_request(struct ksmbd_work *work)
spin_lock(&conn->request_lock);
if (!work->multiRsp) {
list_del_init(&work->request_entry);
if (work->syncronous == false)
if (!work->synchronous)
list_del_init(&work->async_request_entry);
ret = 0;
}
Expand Down
2 changes: 1 addition & 1 deletion fs/smb/server/ksmbd_work.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ struct ksmbd_work {
/* Request is encrypted */
bool encrypted:1;
/* Is this SYNC or ASYNC ksmbd_work */
bool syncronous:1;
bool synchronous:1;
bool need_invalidate_rkey:1;

unsigned int remote_key;
Expand Down
4 changes: 2 additions & 2 deletions fs/smb/server/smb2pdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ int init_smb2_rsp_hdr(struct ksmbd_work *work)
rsp_hdr->SessionId = rcv_hdr->SessionId;
memcpy(rsp_hdr->Signature, rcv_hdr->Signature, 16);

work->syncronous = true;
work->synchronous = true;
if (work->async_id) {
ksmbd_release_id(&conn->async_ida, work->async_id);
work->async_id = 0;
Expand Down Expand Up @@ -671,7 +671,7 @@ int setup_async_work(struct ksmbd_work *work, void (*fn)(void **), void **arg)
pr_err("Failed to alloc async message id\n");
return id;
}
work->syncronous = false;
work->synchronous = false;
work->async_id = id;
rsp_hdr->Id.AsyncId = cpu_to_le64(id);

Expand Down

0 comments on commit b6502c3

Please sign in to comment.