mirror of https://gitee.com/openkylin/linux.git
skd: Rename skd_softirq_done() into skd_complete_rq()
The latter name follows more closely the function names used in other blk-mq drivers. Suggested-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com> Cc: Christoph Hellwig <hch@lst.de> Cc: Hannes Reinecke <hare@suse.de> Cc: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
0d06a42f79
commit
296cb94c9d
|
@ -629,7 +629,7 @@ static void skd_end_request(struct skd_device *skdev, struct request *req,
|
|||
blk_mq_complete_request(req);
|
||||
}
|
||||
|
||||
static void skd_softirq_done(struct request *req)
|
||||
static void skd_complete_rq(struct request *req)
|
||||
{
|
||||
struct skd_request_context *skreq = blk_mq_rq_to_pdu(req);
|
||||
|
||||
|
@ -2821,7 +2821,7 @@ static int skd_cons_sksb(struct skd_device *skdev)
|
|||
|
||||
static const struct blk_mq_ops skd_mq_ops = {
|
||||
.queue_rq = skd_mq_queue_rq,
|
||||
.complete = skd_softirq_done,
|
||||
.complete = skd_complete_rq,
|
||||
.timeout = skd_timed_out,
|
||||
.init_request = skd_init_request,
|
||||
.exit_request = skd_exit_request,
|
||||
|
|
Loading…
Reference in New Issue