aboutsummaryrefslogtreecommitdiffstats
path: root/fs/bio.c
diff options
context:
space:
mode:
authorJens Axboe <axboe@suse.de>2006-01-06 03:43:28 -0500
committerJens Axboe <axboe@suse.de>2006-01-06 03:43:28 -0500
commit80cfd548eed68cf90c5ae9cfcd6b02230cece756 (patch)
treea178608e394b5ee079838353004eb318ff22c513 /fs/bio.c
parent88ee5ef157202624de2b43b3512fdcb54fda1ab5 (diff)
[BLOCK] bio: check for same page merge possibilities in __bio_add_page()
For filesystems with a blocksize < page size, we can merge same page calls into the bio_vec at the end of the bio. This saves segments on systems with a page size > the "normal" 4kb fs block size. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@suse.de>
Diffstat (limited to 'fs/bio.c')
-rw-r--r--fs/bio.c26
1 files changed, 24 insertions, 2 deletions
diff --git a/fs/bio.c b/fs/bio.c
index 38d3e8023a07..dfe242a21eb4 100644
--- a/fs/bio.c
+++ b/fs/bio.c
@@ -325,10 +325,31 @@ static int __bio_add_page(request_queue_t *q, struct bio *bio, struct page
325 if (unlikely(bio_flagged(bio, BIO_CLONED))) 325 if (unlikely(bio_flagged(bio, BIO_CLONED)))
326 return 0; 326 return 0;
327 327
328 if (bio->bi_vcnt >= bio->bi_max_vecs) 328 if (((bio->bi_size + len) >> 9) > max_sectors)
329 return 0; 329 return 0;
330 330
331 if (((bio->bi_size + len) >> 9) > max_sectors) 331 /*
332 * For filesystems with a blocksize smaller than the pagesize
333 * we will often be called with the same page as last time and
334 * a consecutive offset. Optimize this special case.
335 */
336 if (bio->bi_vcnt > 0) {
337 struct bio_vec *prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
338
339 if (page == prev->bv_page &&
340 offset == prev->bv_offset + prev->bv_len) {
341 prev->bv_len += len;
342 if (q->merge_bvec_fn &&
343 q->merge_bvec_fn(q, bio, prev) < len) {
344 prev->bv_len -= len;
345 return 0;
346 }
347
348 goto done;
349 }
350 }
351
352 if (bio->bi_vcnt >= bio->bi_max_vecs)
332 return 0; 353 return 0;
333 354
334 /* 355 /*
@@ -382,6 +403,7 @@ static int __bio_add_page(request_queue_t *q, struct bio *bio, struct page
382 bio->bi_vcnt++; 403 bio->bi_vcnt++;
383 bio->bi_phys_segments++; 404 bio->bi_phys_segments++;
384 bio->bi_hw_segments++; 405 bio->bi_hw_segments++;
406 done:
385 bio->bi_size += len; 407 bio->bi_size += len;
386 return len; 408 return len;
387} 409}