1
0
Fork 0

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>
hifive-unleashed-5.1
Bart Van Assche 2017-08-25 14:24:11 -07:00 committed by Jens Axboe
parent 0d06a42f79
commit 296cb94c9d
1 changed files with 2 additions and 2 deletions

View File

@ -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 @@ err_out:
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,