diff options
Diffstat (limited to 'block/blk-core.c')
-rw-r--r-- | block/blk-core.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index 1d49e1c7c905..f8cb09951830 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
@@ -1282,10 +1282,8 @@ get_rq: | |||
1282 | init_request_from_bio(req, bio); | 1282 | init_request_from_bio(req, bio); |
1283 | 1283 | ||
1284 | if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) || | 1284 | if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) || |
1285 | bio_flagged(bio, BIO_CPU_AFFINE)) { | 1285 | bio_flagged(bio, BIO_CPU_AFFINE)) |
1286 | req->cpu = blk_cpu_to_group(get_cpu()); | 1286 | req->cpu = smp_processor_id(); |
1287 | put_cpu(); | ||
1288 | } | ||
1289 | 1287 | ||
1290 | plug = current->plug; | 1288 | plug = current->plug; |
1291 | if (plug) { | 1289 | if (plug) { |
@@ -1305,7 +1303,10 @@ get_rq: | |||
1305 | plug->should_sort = 1; | 1303 | plug->should_sort = 1; |
1306 | } | 1304 | } |
1307 | list_add_tail(&req->queuelist, &plug->list); | 1305 | list_add_tail(&req->queuelist, &plug->list); |
1306 | plug->count++; | ||
1308 | drive_stat_acct(req, 1); | 1307 | drive_stat_acct(req, 1); |
1308 | if (plug->count >= BLK_MAX_REQUEST_COUNT) | ||
1309 | blk_flush_plug_list(plug, false); | ||
1309 | } else { | 1310 | } else { |
1310 | spin_lock_irq(q->queue_lock); | 1311 | spin_lock_irq(q->queue_lock); |
1311 | add_acct_request(q, req, where); | 1312 | add_acct_request(q, req, where); |
@@ -2629,6 +2630,7 @@ void blk_start_plug(struct blk_plug *plug) | |||
2629 | INIT_LIST_HEAD(&plug->list); | 2630 | INIT_LIST_HEAD(&plug->list); |
2630 | INIT_LIST_HEAD(&plug->cb_list); | 2631 | INIT_LIST_HEAD(&plug->cb_list); |
2631 | plug->should_sort = 0; | 2632 | plug->should_sort = 0; |
2633 | plug->count = 0; | ||
2632 | 2634 | ||
2633 | /* | 2635 | /* |
2634 | * If this is a nested plug, don't actually assign it. It will be | 2636 | * If this is a nested plug, don't actually assign it. It will be |
@@ -2712,6 +2714,7 @@ void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule) | |||
2712 | return; | 2714 | return; |
2713 | 2715 | ||
2714 | list_splice_init(&plug->list, &list); | 2716 | list_splice_init(&plug->list, &list); |
2717 | plug->count = 0; | ||
2715 | 2718 | ||
2716 | if (plug->should_sort) { | 2719 | if (plug->should_sort) { |
2717 | list_sort(NULL, &list, plug_rq_cmp); | 2720 | list_sort(NULL, &list, plug_rq_cmp); |