diff options
-rw-r--r-- | block/blk-core.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index 6403c12f8aad..ea70e6c80cd3 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
@@ -1387,8 +1387,10 @@ get_rq: | |||
1387 | if (__rq->q != q) | 1387 | if (__rq->q != q) |
1388 | plug->should_sort = 1; | 1388 | plug->should_sort = 1; |
1389 | } | 1389 | } |
1390 | if (request_count >= BLK_MAX_REQUEST_COUNT) | 1390 | if (request_count >= BLK_MAX_REQUEST_COUNT) { |
1391 | blk_flush_plug_list(plug, false); | 1391 | blk_flush_plug_list(plug, false); |
1392 | trace_block_plug(q); | ||
1393 | } | ||
1392 | } | 1394 | } |
1393 | list_add_tail(&req->queuelist, &plug->list); | 1395 | list_add_tail(&req->queuelist, &plug->list); |
1394 | drive_stat_acct(req, 1); | 1396 | drive_stat_acct(req, 1); |