Commit 98e41c7d authored by Jens Axboe's avatar Jens Axboe Committed by Jens Axboe

[PATCH] cfq-iosched: move on_rr check into cfq_resort_rr_list()

Move the on_rr check into cfq_resort_rr_list(), every call site
needs to check it anyway.
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
parent aaf1228d
...@@ -357,7 +357,11 @@ static void cfq_resort_rr_list(struct cfq_queue *cfqq, int preempted) ...@@ -357,7 +357,11 @@ static void cfq_resort_rr_list(struct cfq_queue *cfqq, int preempted)
struct cfq_data *cfqd = cfqq->cfqd; struct cfq_data *cfqd = cfqq->cfqd;
struct list_head *list; struct list_head *list;
BUG_ON(!cfq_cfqq_on_rr(cfqq)); /*
* Resorting requires the cfqq to be on the RR list already.
*/
if (!cfq_cfqq_on_rr(cfqq))
return;
list_del(&cfqq->cfq_list); list_del(&cfqq->cfq_list);
...@@ -642,7 +646,6 @@ __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq, ...@@ -642,7 +646,6 @@ __cfq_slice_expired(struct cfq_data *cfqd, struct cfq_queue *cfqq,
else else
cfqq->slice_left = 0; cfqq->slice_left = 0;
if (cfq_cfqq_on_rr(cfqq))
cfq_resort_rr_list(cfqq, preempted); cfq_resort_rr_list(cfqq, preempted);
if (cfqq == cfqd->active_queue) if (cfqq == cfqd->active_queue)
...@@ -1238,9 +1241,7 @@ static void cfq_init_prio_data(struct cfq_queue *cfqq) ...@@ -1238,9 +1241,7 @@ static void cfq_init_prio_data(struct cfq_queue *cfqq)
cfqq->org_ioprio = cfqq->ioprio; cfqq->org_ioprio = cfqq->ioprio;
cfqq->org_ioprio_class = cfqq->ioprio_class; cfqq->org_ioprio_class = cfqq->ioprio_class;
if (cfq_cfqq_on_rr(cfqq))
cfq_resort_rr_list(cfqq, 0); cfq_resort_rr_list(cfqq, 0);
cfq_clear_cfqq_prio_changed(cfqq); cfq_clear_cfqq_prio_changed(cfqq);
} }
...@@ -1691,7 +1692,6 @@ static void cfq_completed_request(request_queue_t *q, struct request *rq) ...@@ -1691,7 +1692,6 @@ static void cfq_completed_request(request_queue_t *q, struct request *rq)
if (!cfq_class_idle(cfqq)) if (!cfq_class_idle(cfqq))
cfqd->last_end_request = now; cfqd->last_end_request = now;
if (!cfq_cfqq_dispatched(cfqq) && cfq_cfqq_on_rr(cfqq))
cfq_resort_rr_list(cfqq, 0); cfq_resort_rr_list(cfqq, 0);
if (sync) if (sync)
...@@ -1742,8 +1742,7 @@ static void cfq_prio_boost(struct cfq_queue *cfqq) ...@@ -1742,8 +1742,7 @@ static void cfq_prio_boost(struct cfq_queue *cfqq)
/* /*
* refile between round-robin lists if we moved the priority class * refile between round-robin lists if we moved the priority class
*/ */
if ((ioprio_class != cfqq->ioprio_class || ioprio != cfqq->ioprio) && if ((ioprio_class != cfqq->ioprio_class || ioprio != cfqq->ioprio))
cfq_cfqq_on_rr(cfqq))
cfq_resort_rr_list(cfqq, 0); cfq_resort_rr_list(cfqq, 0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment