Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f70f4464 authored by Ming Lei's avatar Ming Lei Committed by Jens Axboe
Browse files

fs/buffer.c: use bvec iterator to truncate the bio



Once multi-page bvec is enabled, the last bvec may include more than one
page, this patch use mp_bvec_last_segment() to truncate the bio.

Reviewed-by: default avatarOmar Sandoval <osandov@fb.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarMing Lei <ming.lei@redhat.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 45a3fb95
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3032,7 +3032,10 @@ void guard_bio_eod(int op, struct bio *bio)

	/* ..and clear the end of the buffer for reads */
	if (op == REQ_OP_READ) {
		zero_user(bvec->bv_page, bvec->bv_offset + bvec->bv_len,
		struct bio_vec bv;

		mp_bvec_last_segment(bvec, &bv);
		zero_user(bv.bv_page, bv.bv_offset + bv.bv_len,
				truncated_bytes);
	}
}