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