|
@@ -0,0 +1,114 @@
|
|
|
+/*
|
|
|
+ * Functions related to segment and merge handling
|
|
|
+ */
|
|
|
+#include <linux/kernel.h>
|
|
|
+#include <linux/module.h>
|
|
|
+#include <linux/bio.h>
|
|
|
+#include <linux/blkdev.h>
|
|
|
+#include <linux/scatterlist.h>
|
|
|
+
|
|
|
+#include "blk.h"
|
|
|
+
|
|
|
+static unsigned int __blk_recalc_rq_segments(struct request_queue *q,
|
|
|
+ struct bio *bio)
|
|
|
+{
|
|
|
+ struct bio_vec *bv, *bvprv = NULL;
|
|
|
+ int cluster, i, high, highprv = 1;
|
|
|
+ unsigned int seg_size, nr_phys_segs;
|
|
|
+ struct bio *fbio, *bbio;
|
|
|
+
|
|
|
+ if (!bio)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ fbio = bio;
|
|
|
+ cluster = blk_queue_cluster(q);
|
|
|
+ seg_size = 0;
|
|
|
+ nr_phys_segs = 0;
|
|
|
+ for_each_bio(bio) {
|
|
|
+ bio_for_each_segment(bv, bio, i) {
|
|
|
+ /*
|
|
|
+ * the trick here is making sure that a high page is
|
|
|
+ * never considered part of another segment, since that
|
|
|
+ * might change with the bounce page.
|
|
|
+ */
|
|
|
+ high = page_to_pfn(bv->bv_page) > queue_bounce_pfn(q);
|
|
|
+ if (high || highprv)
|
|
|
+ goto new_segment;
|
|
|
+ if (cluster) {
|
|
|
+ if (seg_size + bv->bv_len
|
|
|
+ > queue_max_segment_size(q))
|
|
|
+ goto new_segment;
|
|
|
+ if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv))
|
|
|
+ goto new_segment;
|
|
|
+ if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv))
|
|
|
+ goto new_segment;
|
|
|
+
|
|
|
+ seg_size += bv->bv_len;
|
|
|
+ bvprv = bv;
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+new_segment:
|
|
|
+ if (nr_phys_segs == 1 && seg_size >
|
|
|
+ fbio->bi_seg_front_size)
|
|
|
+ fbio->bi_seg_front_size = seg_size;
|
|
|
+
|
|
|
+ nr_phys_segs++;
|
|
|
+ bvprv = bv;
|
|
|
+ seg_size = bv->bv_len;
|
|
|
+ highprv = high;
|
|
|
+ }
|
|
|
+ bbio = bio;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (nr_phys_segs == 1 && seg_size > fbio->bi_seg_front_size)
|
|
|
+ fbio->bi_seg_front_size = seg_size;
|
|
|
+ if (seg_size > bbio->bi_seg_back_size)
|
|
|
+ bbio->bi_seg_back_size = seg_size;
|
|
|
+
|
|
|
+ return nr_phys_segs;
|
|
|
+}
|
|
|
+
|
|
|
+void blk_recalc_rq_segments(struct request *rq)
|
|
|
+{
|
|
|
+ rq->nr_phys_segments = __blk_recalc_rq_segments(rq->q, rq->bio);
|
|
|
+}
|
|
|
+
|
|
|
+void blk_recount_segments(struct request_queue *q, struct bio *bio)
|
|
|
+{
|
|
|
+ struct bio *nxt = bio->bi_next;
|
|
|
+
|
|
|
+ bio->bi_next = NULL;
|
|
|
+ bio->bi_phys_segments = __blk_recalc_rq_segments(q, bio);
|
|
|
+ bio->bi_next = nxt;
|
|
|
+ bio->bi_flags |= (1 << BIO_SEG_VALID);
|
|
|
+}
|
|
|
+EXPORT_SYMBOL(blk_recount_segments);
|
|
|
+
|
|
|
+static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio,
|
|
|
+ struct bio *nxt)
|
|
|
+{
|
|
|
+ if (!blk_queue_cluster(q))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ if (bio->bi_seg_back_size + nxt->bi_seg_front_size >
|
|
|
+ queue_max_segment_size(q))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ if (!bio_has_data(bio))
|
|
|
+ return 1;
|
|
|
+
|
|
|
+ if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * bio and nxt are contiguous in memory; check if the queue allows
|
|
|
+ * these two to be merged into one
|
|
|
+ */
|
|
|
+ if (BIO_SEG_BOUNDARY(q, bio, nxt))
|
|
|
+ return 1;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static void
|
|
|
+__blk_segment_map_sg(struct request_queue *q, struct bio_vec *bvec,
|