diff options
Diffstat (limited to 'fs/bio.c')
-rw-r--r-- | fs/bio.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -350,8 +350,7 @@ static int __bio_add_page(struct request_queue *q, struct bio *bio, struct page | |||
350 | */ | 350 | */ |
351 | 351 | ||
352 | while (bio->bi_phys_segments >= q->max_phys_segments | 352 | while (bio->bi_phys_segments >= q->max_phys_segments |
353 | || bio->bi_hw_segments >= q->max_hw_segments | 353 | || bio->bi_hw_segments >= q->max_hw_segments) { |
354 | || BIOVEC_VIRT_OVERSIZE(bio->bi_size)) { | ||
355 | 354 | ||
356 | if (retried_segments) | 355 | if (retried_segments) |
357 | return 0; | 356 | return 0; |
@@ -395,8 +394,7 @@ static int __bio_add_page(struct request_queue *q, struct bio *bio, struct page | |||
395 | } | 394 | } |
396 | 395 | ||
397 | /* If we may be able to merge these biovecs, force a recount */ | 396 | /* If we may be able to merge these biovecs, force a recount */ |
398 | if (bio->bi_vcnt && (BIOVEC_PHYS_MERGEABLE(bvec-1, bvec) || | 397 | if (bio->bi_vcnt && (BIOVEC_PHYS_MERGEABLE(bvec-1, bvec))) |
399 | BIOVEC_VIRT_MERGEABLE(bvec-1, bvec))) | ||
400 | bio->bi_flags &= ~(1 << BIO_SEG_VALID); | 398 | bio->bi_flags &= ~(1 << BIO_SEG_VALID); |
401 | 399 | ||
402 | bio->bi_vcnt++; | 400 | bio->bi_vcnt++; |