memstick: change to use __blk_end_request()
This patch converts memstick to use __blk_end_request() directly so that end_{queued|dequeued}_request() can be removed. Signed-off-by: Kiyoshi Ueda <k-ueda@ct.jp.nec.com> Signed-off-by: Jun'ichi Nomura <j-nomura@ce.jp.nec.com> Cc: Alex Dubov <oakad@yahoo.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
8316982ac0
commit
2a9df5055a
1 changed files with 1 additions and 1 deletions
|
@ -828,7 +828,7 @@ static void mspro_block_submit_req(struct request_queue *q)
|
||||||
|
|
||||||
if (msb->eject) {
|
if (msb->eject) {
|
||||||
while ((req = elv_next_request(q)) != NULL)
|
while ((req = elv_next_request(q)) != NULL)
|
||||||
end_queued_request(req, -ENODEV);
|
__blk_end_request(req, -ENODEV, blk_rq_bytes(req));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue