]> git.baikalelectronics.ru Git - kernel.git/commit
block: blk-merge: fast-clone bio when splitting rw bios
authorMing Lei <ming.lei@canonical.com>
Thu, 17 Sep 2015 15:58:38 +0000 (09:58 -0600)
committerJens Axboe <axboe@fb.com>
Thu, 17 Sep 2015 15:58:38 +0000 (09:58 -0600)
commitc79bff6edbaafec42942d1efca6dc8764c8bc21f
treeae5daeeaa270e5fb28b4c0a92f82a3dfe8f6e4fc
parente27ef439fe0d69b9de7e7420195ca43c48e5b266
block: blk-merge: fast-clone bio when splitting rw bios

biovecs has become immutable since v3.13, so it isn't necessary
to allocate biovecs for the new cloned bios, then we can save
one extra biovecs allocation/copy, and the allocation is often
not fixed-length and a bit more expensive.

For example, if the 'max_sectors_kb' of null blk's queue is set
as 16(32 sectors) via sysfs just for making more splits, this patch
can increase throught about ~70% in the sequential read test over
null_blk(direct io, bs: 1M).

Cc: Christoph Hellwig <hch@infradead.org>
Cc: Kent Overstreet <kent.overstreet@gmail.com>
Cc: Ming Lin <ming.l@ssi.samsung.com>
Cc: Dongsu Park <dpark@posteo.net>
Signed-off-by: Ming Lei <ming.lei@canonical.com>
This fixes a performance regression introduced by commit 9ffb222c0d,
and allows us to take full advantage of the fact that we have immutable
bio_vecs. Hand applied, as it rejected violently with commit
61db5d1b16c6.

Signed-off-by: Jens Axboe <axboe@fb.com>
block/blk-merge.c