Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:block\bsg-lib.c Create Date:2022-07-28 17:38:28
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:sg_job_done - completion routine for bsg requests*@job: bsg_job that is complete*@result: job reply result*@reply_payload_rcv_len: length of payload recvd* The LLD should call this when the bsg job has completed.

Proto:void bsg_job_done(struct bsg_job *job, int result, unsigned int reply_payload_rcv_len)

Type:void

Parameter:

TypeParameterName
struct bsg_job *job
intresult
unsigned intreply_payload_rcv_len
184  result = result
185  reply_payload_rcv_len = reply_payload_rcv_len
186  lk_mq_complete_request - end I/O on a request*@rq: the request being processed* Description:* Ends all I/O on a request. It does not handle partial completions.* The actual completion happens out-of-order, through a IPI handler.