From: Keith Busch <kbusch@xxxxxxxxxx> Individual bv_len's may not be a sector size. Signed-off-by: Keith Busch <kbusch@xxxxxxxxxx> --- block/bounce.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/block/bounce.c b/block/bounce.c index 8f7b6fe3b4db..20a43c4dbdda 100644 --- a/block/bounce.c +++ b/block/bounce.c @@ -207,17 +207,18 @@ void __blk_queue_bounce(struct request_queue *q, struct bio **bio_orig) struct bvec_iter iter; unsigned i = 0; bool bounce = false; - int sectors = 0; + int sectors = 0, bytes = 0; bio_for_each_segment(from, *bio_orig, iter) { if (i++ < BIO_MAX_VECS) - sectors += from.bv_len >> 9; + bytes += from.bv_len; if (PageHighMem(from.bv_page)) bounce = true; } if (!bounce) return; + sectors = ALIGN_DOWN(bytes, queue_logical_block_size(q)) >> 9; if (sectors < bio_sectors(*bio_orig)) { bio = bio_split(*bio_orig, sectors, GFP_NOIO, &bounce_bio_split); bio_chain(bio, *bio_orig); -- 2.30.2