提交 2ca495ac 编写于 作者: K Keith Busch 提交者: Jens Axboe

blk: Fix bio_io_vec index when checking bvec gaps

Corrects a coding error from earlier patch.

Reported by: Sagi Grimberg <sagig@dev.mellanox.co.il>
Signed-off-by: NKeith Busch <keith.busch@intel.com>
Fixes: 03100aad ("block: Replace SG_GAPS with new queue limits mask")
Signed-off-by: NJens Axboe <axboe@fb.com>
上级 03100aad
...@@ -488,7 +488,7 @@ static int req_gap_to_prev(struct request *req, struct bio *next) ...@@ -488,7 +488,7 @@ static int req_gap_to_prev(struct request *req, struct bio *next)
struct bio *prev = req->biotail; struct bio *prev = req->biotail;
return bvec_gap_to_prev(req->q, &prev->bi_io_vec[prev->bi_vcnt - 1], return bvec_gap_to_prev(req->q, &prev->bi_io_vec[prev->bi_vcnt - 1],
next->bi_io_vec[1].bv_offset); next->bi_io_vec[0].bv_offset);
} }
static int ll_merge_requests_fn(struct request_queue *q, struct request *req, static int ll_merge_requests_fn(struct request_queue *q, struct request *req,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册