|
@@ -703,7 +703,7 @@ static void ace_fsm_dostate(struct ace_device *ace)
|
|
|
|
|
|
/* bio finished; is there another one? */
|
|
|
i = ace->req->current_nr_sectors;
|
|
|
- if (end_that_request_first(ace->req, 1, i)) {
|
|
|
+ if (__blk_end_request(ace->req, 0, i)) {
|
|
|
/* dev_dbg(ace->dev, "next block; h=%li c=%i\n",
|
|
|
* ace->req->hard_nr_sectors,
|
|
|
* ace->req->current_nr_sectors);
|
|
@@ -718,9 +718,6 @@ static void ace_fsm_dostate(struct ace_device *ace)
|
|
|
break;
|
|
|
|
|
|
case ACE_FSM_STATE_REQ_COMPLETE:
|
|
|
- /* Complete the block request */
|
|
|
- blkdev_dequeue_request(ace->req);
|
|
|
- end_that_request_last(ace->req, 1);
|
|
|
ace->req = NULL;
|
|
|
|
|
|
/* Finished request; go to idle state */
|