diff options
-rw-r--r-- | drivers/block/deadline-iosched.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/block/deadline-iosched.c b/drivers/block/deadline-iosched.c index 24594c57c323..52a3ae5289a0 100644 --- a/drivers/block/deadline-iosched.c +++ b/drivers/block/deadline-iosched.c | |||
@@ -512,7 +512,10 @@ static int deadline_dispatch_requests(struct deadline_data *dd) | |||
512 | /* | 512 | /* |
513 | * batches are currently reads XOR writes | 513 | * batches are currently reads XOR writes |
514 | */ | 514 | */ |
515 | drq = dd->next_drq[WRITE] ? : dd->next_drq[READ]; | 515 | if (dd->next_drq[WRITE]) |
516 | drq = dd->next_drq[WRITE]; | ||
517 | else | ||
518 | drq = dd->next_drq[READ]; | ||
516 | 519 | ||
517 | if (drq) { | 520 | if (drq) { |
518 | /* we have a "next request" */ | 521 | /* we have a "next request" */ |