mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
block: change plugging to use a singly linked list
Use a singly linked list for the blk_plug. This saves 8 bytes in the blk_plug struct, and makes for faster list manipulations than doubly linked lists. As we don't use the doubly linked lists for anything, singly linked is just fine. This yields a bump in default (merging enabled) performance from 7.0 to 7.1M IOPS, and ~7.5M IOPS with merging disabled. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
@@ -1090,11 +1090,11 @@ bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio,
|
||||
struct request *rq;
|
||||
|
||||
plug = blk_mq_plug(q, bio);
|
||||
if (!plug || list_empty(&plug->mq_list))
|
||||
if (!plug || rq_list_empty(plug->mq_list))
|
||||
return false;
|
||||
|
||||
/* check the previously added entry for a quick merge attempt */
|
||||
rq = list_last_entry(&plug->mq_list, struct request, queuelist);
|
||||
rq = rq_list_peek(&plug->mq_list);
|
||||
if (rq->q == q) {
|
||||
/*
|
||||
* Only blk-mq multiple hardware queues case checks the rq in
|
||||
|
||||
Reference in New Issue
Block a user