aboutsummaryrefslogtreecommitdiffstats
path: root/block/cfq-iosched.c
diff options
context:
space:
mode:
Diffstat (limited to 'block/cfq-iosched.c')
-rw-r--r--block/cfq-iosched.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c
index 72680a6715fc..61693d3404d0 100644
--- a/block/cfq-iosched.c
+++ b/block/cfq-iosched.c
@@ -1225,10 +1225,11 @@ static void cfq_destroy_cfqg(struct cfq_data *cfqd, struct cfq_group *cfqg)
1225 cfq_put_cfqg(cfqg); 1225 cfq_put_cfqg(cfqg);
1226} 1226}
1227 1227
1228static void cfq_release_cfq_groups(struct cfq_data *cfqd) 1228static bool cfq_release_cfq_groups(struct cfq_data *cfqd)
1229{ 1229{
1230 struct hlist_node *pos, *n; 1230 struct hlist_node *pos, *n;
1231 struct cfq_group *cfqg; 1231 struct cfq_group *cfqg;
1232 bool empty = true;
1232 1233
1233 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) { 1234 hlist_for_each_entry_safe(cfqg, pos, n, &cfqd->cfqg_list, cfqd_node) {
1234 /* 1235 /*
@@ -1238,7 +1239,10 @@ static void cfq_release_cfq_groups(struct cfq_data *cfqd)
1238 */ 1239 */
1239 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg)) 1240 if (!cfq_blkiocg_del_blkio_group(&cfqg->blkg))
1240 cfq_destroy_cfqg(cfqd, cfqg); 1241 cfq_destroy_cfqg(cfqd, cfqg);
1242 else
1243 empty = false;
1241 } 1244 }
1245 return empty;
1242} 1246}
1243 1247
1244/* 1248/*
@@ -1265,6 +1269,19 @@ static void cfq_unlink_blkio_group(void *key, struct blkio_group *blkg)
1265 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags); 1269 spin_unlock_irqrestore(cfqd->queue->queue_lock, flags);
1266} 1270}
1267 1271
1272static struct elevator_type iosched_cfq;
1273
1274static bool cfq_clear_queue(struct request_queue *q)
1275{
1276 lockdep_assert_held(q->queue_lock);
1277
1278 /* shoot down blkgs iff the current elevator is cfq */
1279 if (!q->elevator || q->elevator->type != &iosched_cfq)
1280 return true;
1281
1282 return cfq_release_cfq_groups(q->elevator->elevator_data);
1283}
1284
1268#else /* GROUP_IOSCHED */ 1285#else /* GROUP_IOSCHED */
1269static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd) 1286static struct cfq_group *cfq_get_cfqg(struct cfq_data *cfqd)
1270{ 1287{
@@ -3875,6 +3892,7 @@ static struct elevator_type iosched_cfq = {
3875static struct blkio_policy_type blkio_policy_cfq = { 3892static struct blkio_policy_type blkio_policy_cfq = {
3876 .ops = { 3893 .ops = {
3877 .blkio_unlink_group_fn = cfq_unlink_blkio_group, 3894 .blkio_unlink_group_fn = cfq_unlink_blkio_group,
3895 .blkio_clear_queue_fn = cfq_clear_queue,
3878 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight, 3896 .blkio_update_group_weight_fn = cfq_update_blkio_group_weight,
3879 }, 3897 },
3880 .plid = BLKIO_POLICY_PROP, 3898 .plid = BLKIO_POLICY_PROP,