David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 1 | /* bounce buffer handling for block devices |
| 2 | * |
| 3 | * - Split from highmem.c |
| 4 | */ |
| 5 | |
Mitchel Humpherys | b1de0d1 | 2014-06-06 14:38:30 -0700 | [diff] [blame] | 6 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 7 | |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 8 | #include <linux/mm.h> |
Paul Gortmaker | b95f1b31 | 2011-10-16 02:01:52 -0400 | [diff] [blame] | 9 | #include <linux/export.h> |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 10 | #include <linux/swap.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/gfp.h> |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 12 | #include <linux/bio.h> |
| 13 | #include <linux/pagemap.h> |
| 14 | #include <linux/mempool.h> |
| 15 | #include <linux/blkdev.h> |
Tejun Heo | 66114ca | 2015-05-22 17:13:32 -0400 | [diff] [blame] | 16 | #include <linux/backing-dev.h> |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 17 | #include <linux/init.h> |
| 18 | #include <linux/hash.h> |
| 19 | #include <linux/highmem.h> |
David Vrabel | 3bcfeaf | 2011-10-20 21:24:30 +0200 | [diff] [blame] | 20 | #include <linux/bootmem.h> |
Mitchel Humpherys | b1de0d1 | 2014-06-06 14:38:30 -0700 | [diff] [blame] | 21 | #include <linux/printk.h> |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 22 | #include <asm/tlbflush.h> |
| 23 | |
Li Zefan | 5578213 | 2009-06-09 13:43:05 +0800 | [diff] [blame] | 24 | #include <trace/events/block.h> |
| 25 | |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 26 | #define POOL_SIZE 64 |
| 27 | #define ISA_POOL_SIZE 16 |
| 28 | |
| 29 | static mempool_t *page_pool, *isa_page_pool; |
| 30 | |
Chris Metcalf | f100625 | 2012-06-16 16:41:05 -0400 | [diff] [blame] | 31 | #if defined(CONFIG_HIGHMEM) || defined(CONFIG_NEED_BOUNCE_POOL) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 32 | static __init int init_emergency_pool(void) |
| 33 | { |
Chris Metcalf | f100625 | 2012-06-16 16:41:05 -0400 | [diff] [blame] | 34 | #if defined(CONFIG_HIGHMEM) && !defined(CONFIG_MEMORY_HOTPLUG) |
David Vrabel | 3bcfeaf | 2011-10-20 21:24:30 +0200 | [diff] [blame] | 35 | if (max_pfn <= max_low_pfn) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 36 | return 0; |
David Vrabel | 3bcfeaf | 2011-10-20 21:24:30 +0200 | [diff] [blame] | 37 | #endif |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 38 | |
| 39 | page_pool = mempool_create_page_pool(POOL_SIZE, 0); |
| 40 | BUG_ON(!page_pool); |
Mitchel Humpherys | b1de0d1 | 2014-06-06 14:38:30 -0700 | [diff] [blame] | 41 | pr_info("pool size: %d pages\n", POOL_SIZE); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 42 | |
| 43 | return 0; |
| 44 | } |
| 45 | |
| 46 | __initcall(init_emergency_pool); |
Chris Metcalf | f100625 | 2012-06-16 16:41:05 -0400 | [diff] [blame] | 47 | #endif |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 48 | |
Chris Metcalf | f100625 | 2012-06-16 16:41:05 -0400 | [diff] [blame] | 49 | #ifdef CONFIG_HIGHMEM |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 50 | /* |
| 51 | * highmem version, map in to vec |
| 52 | */ |
| 53 | static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom) |
| 54 | { |
| 55 | unsigned long flags; |
| 56 | unsigned char *vto; |
| 57 | |
| 58 | local_irq_save(flags); |
Cong Wang | 9b04c5f | 2011-11-25 23:14:39 +0800 | [diff] [blame] | 59 | vto = kmap_atomic(to->bv_page); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 60 | memcpy(vto + to->bv_offset, vfrom, to->bv_len); |
Cong Wang | 9b04c5f | 2011-11-25 23:14:39 +0800 | [diff] [blame] | 61 | kunmap_atomic(vto); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 62 | local_irq_restore(flags); |
| 63 | } |
| 64 | |
| 65 | #else /* CONFIG_HIGHMEM */ |
| 66 | |
| 67 | #define bounce_copy_vec(to, vfrom) \ |
| 68 | memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len) |
| 69 | |
| 70 | #endif /* CONFIG_HIGHMEM */ |
| 71 | |
| 72 | /* |
| 73 | * allocate pages in the DMA region for the ISA pool |
| 74 | */ |
| 75 | static void *mempool_alloc_pages_isa(gfp_t gfp_mask, void *data) |
| 76 | { |
| 77 | return mempool_alloc_pages(gfp_mask | GFP_DMA, data); |
| 78 | } |
| 79 | |
| 80 | /* |
| 81 | * gets called "every" time someone init's a queue with BLK_BOUNCE_ISA |
| 82 | * as the max address, so check if the pool has already been created. |
| 83 | */ |
| 84 | int init_emergency_isa_pool(void) |
| 85 | { |
| 86 | if (isa_page_pool) |
| 87 | return 0; |
| 88 | |
| 89 | isa_page_pool = mempool_create(ISA_POOL_SIZE, mempool_alloc_pages_isa, |
| 90 | mempool_free_pages, (void *) 0); |
| 91 | BUG_ON(!isa_page_pool); |
| 92 | |
Mitchel Humpherys | b1de0d1 | 2014-06-06 14:38:30 -0700 | [diff] [blame] | 93 | pr_info("isa pool size: %d pages\n", ISA_POOL_SIZE); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | /* |
| 98 | * Simple bounce buffer support for highmem pages. Depending on the |
| 99 | * queue gfp mask set, *to may or may not be a highmem page. kmap it |
| 100 | * always, it will do the Right Thing |
| 101 | */ |
| 102 | static void copy_to_high_bio_irq(struct bio *to, struct bio *from) |
| 103 | { |
| 104 | unsigned char *vfrom; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 105 | struct bio_vec tovec, *fromvec = from->bi_io_vec; |
| 106 | struct bvec_iter iter; |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 107 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 108 | bio_for_each_segment(tovec, to, iter) { |
| 109 | if (tovec.bv_page != fromvec->bv_page) { |
| 110 | /* |
| 111 | * fromvec->bv_offset and fromvec->bv_len might have |
| 112 | * been modified by the block layer, so use the original |
| 113 | * copy, bounce_copy_vec already uses tovec->bv_len |
| 114 | */ |
| 115 | vfrom = page_address(fromvec->bv_page) + |
| 116 | tovec.bv_offset; |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 117 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 118 | bounce_copy_vec(&tovec, vfrom); |
| 119 | flush_dcache_page(tovec.bv_page); |
| 120 | } |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 121 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 122 | fromvec++; |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | |
| 126 | static void bounce_end_io(struct bio *bio, mempool_t *pool, int err) |
| 127 | { |
| 128 | struct bio *bio_orig = bio->bi_private; |
| 129 | struct bio_vec *bvec, *org_vec; |
| 130 | int i; |
| 131 | |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 132 | /* |
| 133 | * free up bounce indirect pages used |
| 134 | */ |
Kent Overstreet | d74c6d5 | 2013-02-06 12:23:11 -0800 | [diff] [blame] | 135 | bio_for_each_segment_all(bvec, bio, i) { |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 136 | org_vec = bio_orig->bi_io_vec + i; |
| 137 | if (bvec->bv_page == org_vec->bv_page) |
| 138 | continue; |
| 139 | |
| 140 | dec_zone_page_state(bvec->bv_page, NR_BOUNCE); |
| 141 | mempool_free(bvec->bv_page, pool); |
| 142 | } |
| 143 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 144 | bio_endio(bio_orig, err); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 145 | bio_put(bio); |
| 146 | } |
| 147 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 148 | static void bounce_end_io_write(struct bio *bio, int err) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 149 | { |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 150 | bounce_end_io(bio, page_pool, err); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 151 | } |
| 152 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 153 | static void bounce_end_io_write_isa(struct bio *bio, int err) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 154 | { |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 155 | |
| 156 | bounce_end_io(bio, isa_page_pool, err); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static void __bounce_end_io_read(struct bio *bio, mempool_t *pool, int err) |
| 160 | { |
| 161 | struct bio *bio_orig = bio->bi_private; |
| 162 | |
| 163 | if (test_bit(BIO_UPTODATE, &bio->bi_flags)) |
| 164 | copy_to_high_bio_irq(bio_orig, bio); |
| 165 | |
| 166 | bounce_end_io(bio, pool, err); |
| 167 | } |
| 168 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 169 | static void bounce_end_io_read(struct bio *bio, int err) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 170 | { |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 171 | __bounce_end_io_read(bio, page_pool, err); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 172 | } |
| 173 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 174 | static void bounce_end_io_read_isa(struct bio *bio, int err) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 175 | { |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 176 | __bounce_end_io_read(bio, isa_page_pool, err); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 177 | } |
| 178 | |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 179 | #ifdef CONFIG_NEED_BOUNCE_POOL |
| 180 | static int must_snapshot_stable_pages(struct request_queue *q, struct bio *bio) |
| 181 | { |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 182 | if (bio_data_dir(bio) != WRITE) |
| 183 | return 0; |
| 184 | |
| 185 | if (!bdi_cap_stable_pages_required(&q->backing_dev_info)) |
| 186 | return 0; |
| 187 | |
Darrick J. Wong | 713685111 | 2013-04-29 15:07:25 -0700 | [diff] [blame] | 188 | return test_bit(BIO_SNAP_STABLE, &bio->bi_flags); |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 189 | } |
| 190 | #else |
| 191 | static int must_snapshot_stable_pages(struct request_queue *q, struct bio *bio) |
| 192 | { |
| 193 | return 0; |
| 194 | } |
| 195 | #endif /* CONFIG_NEED_BOUNCE_POOL */ |
| 196 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 197 | static void __blk_queue_bounce(struct request_queue *q, struct bio **bio_orig, |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 198 | mempool_t *pool, int force) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 199 | { |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 200 | struct bio *bio; |
| 201 | int rw = bio_data_dir(*bio_orig); |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 202 | struct bio_vec *to, from; |
| 203 | struct bvec_iter iter; |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 204 | unsigned i; |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 205 | |
Darrick J. Wong | 83b2944 | 2013-09-30 13:45:09 -0700 | [diff] [blame] | 206 | if (force) |
| 207 | goto bounce; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 208 | bio_for_each_segment(from, *bio_orig, iter) |
| 209 | if (page_to_pfn(from.bv_page) > queue_bounce_pfn(q)) |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 210 | goto bounce; |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 211 | |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 212 | return; |
| 213 | bounce: |
| 214 | bio = bio_clone_bioset(*bio_orig, GFP_NOIO, fs_bio_set); |
| 215 | |
Kent Overstreet | cb34e05 | 2012-09-05 15:22:02 -0700 | [diff] [blame] | 216 | bio_for_each_segment_all(to, bio, i) { |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 217 | struct page *page = to->bv_page; |
| 218 | |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 219 | if (page_to_pfn(page) <= queue_bounce_pfn(q) && !force) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 220 | continue; |
| 221 | |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 222 | to->bv_page = mempool_alloc(pool, q->bounce_gfp); |
Wang YanQing | 393a339 | 2015-04-26 16:43:31 +0800 | [diff] [blame] | 223 | inc_zone_page_state(to->bv_page, NR_BOUNCE); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 224 | |
| 225 | if (rw == WRITE) { |
| 226 | char *vto, *vfrom; |
| 227 | |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 228 | flush_dcache_page(page); |
| 229 | |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 230 | vto = page_address(to->bv_page) + to->bv_offset; |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 231 | vfrom = kmap_atomic(page) + to->bv_offset; |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 232 | memcpy(vto, vfrom, to->bv_len); |
Kent Overstreet | 6bc454d | 2012-09-10 14:30:37 -0700 | [diff] [blame] | 233 | kunmap_atomic(vfrom); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 234 | } |
| 235 | } |
| 236 | |
Arnaldo Carvalho de Melo | 5f3ea37 | 2008-10-30 08:34:33 +0100 | [diff] [blame] | 237 | trace_block_bio_bounce(q, *bio_orig); |
Jens Axboe | c43a508 | 2007-01-12 12:20:26 +0100 | [diff] [blame] | 238 | |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 239 | bio->bi_flags |= (1 << BIO_BOUNCED); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 240 | |
| 241 | if (pool == page_pool) { |
| 242 | bio->bi_end_io = bounce_end_io_write; |
| 243 | if (rw == READ) |
| 244 | bio->bi_end_io = bounce_end_io_read; |
| 245 | } else { |
| 246 | bio->bi_end_io = bounce_end_io_write_isa; |
| 247 | if (rw == READ) |
| 248 | bio->bi_end_io = bounce_end_io_read_isa; |
| 249 | } |
| 250 | |
| 251 | bio->bi_private = *bio_orig; |
| 252 | *bio_orig = bio; |
| 253 | } |
| 254 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 255 | void blk_queue_bounce(struct request_queue *q, struct bio **bio_orig) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 256 | { |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 257 | int must_bounce; |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 258 | mempool_t *pool; |
| 259 | |
| 260 | /* |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 261 | * Data-less bio, nothing to bounce |
| 262 | */ |
Jens Axboe | 3614407 | 2008-08-14 13:12:15 +0200 | [diff] [blame] | 263 | if (!bio_has_data(*bio_orig)) |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 264 | return; |
| 265 | |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 266 | must_bounce = must_snapshot_stable_pages(q, *bio_orig); |
| 267 | |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 268 | /* |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 269 | * for non-isa bounce case, just check if the bounce pfn is equal |
| 270 | * to or bigger than the highest pfn in the system -- in that case, |
| 271 | * don't waste time iterating over bio segments |
| 272 | */ |
| 273 | if (!(q->bounce_gfp & GFP_DMA)) { |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 274 | if (queue_bounce_pfn(q) >= blk_max_pfn && !must_bounce) |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 275 | return; |
| 276 | pool = page_pool; |
| 277 | } else { |
| 278 | BUG_ON(!isa_page_pool); |
| 279 | pool = isa_page_pool; |
| 280 | } |
| 281 | |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 282 | /* |
| 283 | * slow path |
| 284 | */ |
Darrick J. Wong | ffecfd1 | 2013-02-21 16:42:55 -0800 | [diff] [blame] | 285 | __blk_queue_bounce(q, bio_orig, pool, must_bounce); |
David Howells | 831058d | 2006-08-29 19:06:00 +0100 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | EXPORT_SYMBOL(blk_queue_bounce); |