提交 6601e44e 编写于 作者: C Christoph Hellwig 提交者: Jens Axboe

block: remove bogus comments in __bio_add_pc_page

We are never called with file system pages by defintions for the
passthrough interface, and we also never undo any addition later
these days.
Signed-off-by: NChristoph Hellwig <hch@lst.de>
Signed-off-by: NJens Axboe <axboe@kernel.dk>
上级 4713839d
...@@ -724,11 +724,6 @@ static int __bio_add_pc_page(struct request_queue *q, struct bio *bio, ...@@ -724,11 +724,6 @@ static int __bio_add_pc_page(struct request_queue *q, struct bio *bio,
if (((bio->bi_iter.bi_size + len) >> 9) > queue_max_hw_sectors(q)) if (((bio->bi_iter.bi_size + len) >> 9) > queue_max_hw_sectors(q))
return 0; return 0;
/*
* For filesystems with a blocksize smaller than the pagesize
* we will often be called with the same page as last time and
* a consecutive offset. Optimize this special case.
*/
if (bio->bi_vcnt > 0) { if (bio->bi_vcnt > 0) {
bvec = &bio->bi_io_vec[bio->bi_vcnt - 1]; bvec = &bio->bi_io_vec[bio->bi_vcnt - 1];
...@@ -760,10 +755,6 @@ static int __bio_add_pc_page(struct request_queue *q, struct bio *bio, ...@@ -760,10 +755,6 @@ static int __bio_add_pc_page(struct request_queue *q, struct bio *bio,
if (bio->bi_phys_segments >= queue_max_segments(q)) if (bio->bi_phys_segments >= queue_max_segments(q))
return 0; return 0;
/*
* setup the new entry, we might clear it again later if we
* cannot add the page
*/
bvec = &bio->bi_io_vec[bio->bi_vcnt]; bvec = &bio->bi_io_vec[bio->bi_vcnt];
bvec->bv_page = page; bvec->bv_page = page;
bvec->bv_len = len; bvec->bv_len = len;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册