blob: 5793c2dc1a155697feab533b5365f661087313e4 [file] [log] [blame]
David Howells831058d2006-08-29 19:06:00 +01001/* bounce buffer handling for block devices
2 *
3 * - Split from highmem.c
4 */
5
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07006#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
David Howells831058d2006-08-29 19:06:00 +01008#include <linux/mm.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -04009#include <linux/export.h>
David Howells831058d2006-08-29 19:06:00 +010010#include <linux/swap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
David Howells831058d2006-08-29 19:06:00 +010012#include <linux/bio.h>
13#include <linux/pagemap.h>
14#include <linux/mempool.h>
15#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040016#include <linux/backing-dev.h>
David Howells831058d2006-08-29 19:06:00 +010017#include <linux/init.h>
18#include <linux/hash.h>
19#include <linux/highmem.h>
David Vrabel3bcfeaf2011-10-20 21:24:30 +020020#include <linux/bootmem.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070021#include <linux/printk.h>
David Howells831058d2006-08-29 19:06:00 +010022#include <asm/tlbflush.h>
23
Li Zefan55782132009-06-09 13:43:05 +080024#include <trace/events/block.h>
Christoph Hellwig3bce0162017-06-19 09:26:21 +020025#include "blk.h"
Li Zefan55782132009-06-09 13:43:05 +080026
David Howells831058d2006-08-29 19:06:00 +010027#define POOL_SIZE 64
28#define ISA_POOL_SIZE 16
29
Bart Van Asschee0fc443a2017-06-21 10:55:45 -070030static struct bio_set *bounce_bio_set, *bounce_bio_split;
David Howells831058d2006-08-29 19:06:00 +010031static mempool_t *page_pool, *isa_page_pool;
32
Chris Metcalff1006252012-06-16 16:41:05 -040033#if defined(CONFIG_HIGHMEM) || defined(CONFIG_NEED_BOUNCE_POOL)
David Howells831058d2006-08-29 19:06:00 +010034static __init int init_emergency_pool(void)
35{
Chris Metcalff1006252012-06-16 16:41:05 -040036#if defined(CONFIG_HIGHMEM) && !defined(CONFIG_MEMORY_HOTPLUG)
David Vrabel3bcfeaf2011-10-20 21:24:30 +020037 if (max_pfn <= max_low_pfn)
David Howells831058d2006-08-29 19:06:00 +010038 return 0;
David Vrabel3bcfeaf2011-10-20 21:24:30 +020039#endif
David Howells831058d2006-08-29 19:06:00 +010040
41 page_pool = mempool_create_page_pool(POOL_SIZE, 0);
42 BUG_ON(!page_pool);
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070043 pr_info("pool size: %d pages\n", POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +010044
NeilBrowna8821f32017-06-18 14:38:58 +100045 bounce_bio_set = bioset_create(BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
46 BUG_ON(!bounce_bio_set);
47 if (bioset_integrity_create(bounce_bio_set, BIO_POOL_SIZE))
48 BUG_ON(1);
49
50 bounce_bio_split = bioset_create(BIO_POOL_SIZE, 0, 0);
51 BUG_ON(!bounce_bio_split);
52
David Howells831058d2006-08-29 19:06:00 +010053 return 0;
54}
55
56__initcall(init_emergency_pool);
Chris Metcalff1006252012-06-16 16:41:05 -040057#endif
David Howells831058d2006-08-29 19:06:00 +010058
Chris Metcalff1006252012-06-16 16:41:05 -040059#ifdef CONFIG_HIGHMEM
David Howells831058d2006-08-29 19:06:00 +010060/*
61 * highmem version, map in to vec
62 */
63static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom)
64{
65 unsigned long flags;
66 unsigned char *vto;
67
68 local_irq_save(flags);
Cong Wang9b04c5f2011-11-25 23:14:39 +080069 vto = kmap_atomic(to->bv_page);
David Howells831058d2006-08-29 19:06:00 +010070 memcpy(vto + to->bv_offset, vfrom, to->bv_len);
Cong Wang9b04c5f2011-11-25 23:14:39 +080071 kunmap_atomic(vto);
David Howells831058d2006-08-29 19:06:00 +010072 local_irq_restore(flags);
73}
74
75#else /* CONFIG_HIGHMEM */
76
77#define bounce_copy_vec(to, vfrom) \
78 memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len)
79
80#endif /* CONFIG_HIGHMEM */
81
82/*
83 * allocate pages in the DMA region for the ISA pool
84 */
85static void *mempool_alloc_pages_isa(gfp_t gfp_mask, void *data)
86{
87 return mempool_alloc_pages(gfp_mask | GFP_DMA, data);
88}
89
90/*
91 * gets called "every" time someone init's a queue with BLK_BOUNCE_ISA
92 * as the max address, so check if the pool has already been created.
93 */
94int init_emergency_isa_pool(void)
95{
96 if (isa_page_pool)
97 return 0;
98
99 isa_page_pool = mempool_create(ISA_POOL_SIZE, mempool_alloc_pages_isa,
100 mempool_free_pages, (void *) 0);
101 BUG_ON(!isa_page_pool);
102
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -0700103 pr_info("isa pool size: %d pages\n", ISA_POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +0100104 return 0;
105}
106
107/*
108 * Simple bounce buffer support for highmem pages. Depending on the
109 * queue gfp mask set, *to may or may not be a highmem page. kmap it
110 * always, it will do the Right Thing
111 */
112static void copy_to_high_bio_irq(struct bio *to, struct bio *from)
113{
114 unsigned char *vfrom;
Kent Overstreet79886132013-11-23 17:19:00 -0800115 struct bio_vec tovec, *fromvec = from->bi_io_vec;
116 struct bvec_iter iter;
David Howells831058d2006-08-29 19:06:00 +0100117
Kent Overstreet79886132013-11-23 17:19:00 -0800118 bio_for_each_segment(tovec, to, iter) {
119 if (tovec.bv_page != fromvec->bv_page) {
120 /*
121 * fromvec->bv_offset and fromvec->bv_len might have
122 * been modified by the block layer, so use the original
123 * copy, bounce_copy_vec already uses tovec->bv_len
124 */
125 vfrom = page_address(fromvec->bv_page) +
126 tovec.bv_offset;
David Howells831058d2006-08-29 19:06:00 +0100127
Kent Overstreet79886132013-11-23 17:19:00 -0800128 bounce_copy_vec(&tovec, vfrom);
129 flush_dcache_page(tovec.bv_page);
130 }
David Howells831058d2006-08-29 19:06:00 +0100131
Kent Overstreet79886132013-11-23 17:19:00 -0800132 fromvec++;
David Howells831058d2006-08-29 19:06:00 +0100133 }
134}
135
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200136static void bounce_end_io(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100137{
138 struct bio *bio_orig = bio->bi_private;
139 struct bio_vec *bvec, *org_vec;
140 int i;
Ming Lei99451872015-09-18 00:06:28 +0800141 int start = bio_orig->bi_iter.bi_idx;
David Howells831058d2006-08-29 19:06:00 +0100142
David Howells831058d2006-08-29 19:06:00 +0100143 /*
144 * free up bounce indirect pages used
145 */
Kent Overstreetd74c6d52013-02-06 12:23:11 -0800146 bio_for_each_segment_all(bvec, bio, i) {
Ming Lei99451872015-09-18 00:06:28 +0800147 org_vec = bio_orig->bi_io_vec + i + start;
148
David Howells831058d2006-08-29 19:06:00 +0100149 if (bvec->bv_page == org_vec->bv_page)
150 continue;
151
152 dec_zone_page_state(bvec->bv_page, NR_BOUNCE);
153 mempool_free(bvec->bv_page, pool);
154 }
155
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200156 bio_orig->bi_status = bio->bi_status;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200157 bio_endio(bio_orig);
David Howells831058d2006-08-29 19:06:00 +0100158 bio_put(bio);
159}
160
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200161static void bounce_end_io_write(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100162{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200163 bounce_end_io(bio, page_pool);
David Howells831058d2006-08-29 19:06:00 +0100164}
165
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200166static void bounce_end_io_write_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100167{
David Howells831058d2006-08-29 19:06:00 +0100168
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200169 bounce_end_io(bio, isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100170}
171
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200172static void __bounce_end_io_read(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100173{
174 struct bio *bio_orig = bio->bi_private;
175
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200176 if (!bio->bi_status)
David Howells831058d2006-08-29 19:06:00 +0100177 copy_to_high_bio_irq(bio_orig, bio);
178
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200179 bounce_end_io(bio, pool);
David Howells831058d2006-08-29 19:06:00 +0100180}
181
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200182static void bounce_end_io_read(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100183{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200184 __bounce_end_io_read(bio, page_pool);
David Howells831058d2006-08-29 19:06:00 +0100185}
186
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200187static void bounce_end_io_read_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100188{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200189 __bounce_end_io_read(bio, isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100190}
191
Jens Axboe165125e2007-07-24 09:28:11 +0200192static void __blk_queue_bounce(struct request_queue *q, struct bio **bio_orig,
Jan Karaa3ad0a92015-06-18 17:19:14 +0200193 mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100194{
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700195 struct bio *bio;
196 int rw = bio_data_dir(*bio_orig);
Kent Overstreet79886132013-11-23 17:19:00 -0800197 struct bio_vec *to, from;
198 struct bvec_iter iter;
NeilBrowna8821f32017-06-18 14:38:58 +1000199 unsigned i = 0;
200 bool bounce = false;
201 int sectors = 0;
David Howells831058d2006-08-29 19:06:00 +0100202
NeilBrowna8821f32017-06-18 14:38:58 +1000203 bio_for_each_segment(from, *bio_orig, iter) {
204 if (i++ < BIO_MAX_PAGES)
205 sectors += from.bv_len >> 9;
Christoph Hellwig1c4bc3a2017-06-19 09:26:22 +0200206 if (page_to_pfn(from.bv_page) > q->limits.bounce_pfn)
NeilBrowna8821f32017-06-18 14:38:58 +1000207 bounce = true;
208 }
209 if (!bounce)
210 return;
David Howells831058d2006-08-29 19:06:00 +0100211
NeilBrowna8821f32017-06-18 14:38:58 +1000212 if (sectors < bio_sectors(*bio_orig)) {
213 bio = bio_split(*bio_orig, sectors, GFP_NOIO, bounce_bio_split);
214 bio_chain(bio, *bio_orig);
215 generic_make_request(*bio_orig);
216 *bio_orig = bio;
217 }
218 bio = bio_clone_bioset(*bio_orig, GFP_NOIO, bounce_bio_set);
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700219
Kent Overstreetcb34e052012-09-05 15:22:02 -0700220 bio_for_each_segment_all(to, bio, i) {
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700221 struct page *page = to->bv_page;
222
Christoph Hellwig1c4bc3a2017-06-19 09:26:22 +0200223 if (page_to_pfn(page) <= q->limits.bounce_pfn)
David Howells831058d2006-08-29 19:06:00 +0100224 continue;
225
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700226 to->bv_page = mempool_alloc(pool, q->bounce_gfp);
Wang YanQing393a3392015-04-26 16:43:31 +0800227 inc_zone_page_state(to->bv_page, NR_BOUNCE);
David Howells831058d2006-08-29 19:06:00 +0100228
229 if (rw == WRITE) {
230 char *vto, *vfrom;
231
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700232 flush_dcache_page(page);
233
David Howells831058d2006-08-29 19:06:00 +0100234 vto = page_address(to->bv_page) + to->bv_offset;
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700235 vfrom = kmap_atomic(page) + to->bv_offset;
David Howells831058d2006-08-29 19:06:00 +0100236 memcpy(vto, vfrom, to->bv_len);
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700237 kunmap_atomic(vfrom);
David Howells831058d2006-08-29 19:06:00 +0100238 }
239 }
240
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100241 trace_block_bio_bounce(q, *bio_orig);
Jens Axboec43a5082007-01-12 12:20:26 +0100242
David Howells831058d2006-08-29 19:06:00 +0100243 bio->bi_flags |= (1 << BIO_BOUNCED);
David Howells831058d2006-08-29 19:06:00 +0100244
245 if (pool == page_pool) {
246 bio->bi_end_io = bounce_end_io_write;
247 if (rw == READ)
248 bio->bi_end_io = bounce_end_io_read;
249 } else {
250 bio->bi_end_io = bounce_end_io_write_isa;
251 if (rw == READ)
252 bio->bi_end_io = bounce_end_io_read_isa;
253 }
254
255 bio->bi_private = *bio_orig;
256 *bio_orig = bio;
257}
258
Jens Axboe165125e2007-07-24 09:28:11 +0200259void blk_queue_bounce(struct request_queue *q, struct bio **bio_orig)
David Howells831058d2006-08-29 19:06:00 +0100260{
261 mempool_t *pool;
262
263 /*
Jens Axboebf2de6f2007-09-27 13:01:25 +0200264 * Data-less bio, nothing to bounce
265 */
Jens Axboe36144072008-08-14 13:12:15 +0200266 if (!bio_has_data(*bio_orig))
Jens Axboebf2de6f2007-09-27 13:01:25 +0200267 return;
268
269 /*
David Howells831058d2006-08-29 19:06:00 +0100270 * for non-isa bounce case, just check if the bounce pfn is equal
271 * to or bigger than the highest pfn in the system -- in that case,
272 * don't waste time iterating over bio segments
273 */
274 if (!(q->bounce_gfp & GFP_DMA)) {
Christoph Hellwig1c4bc3a2017-06-19 09:26:22 +0200275 if (q->limits.bounce_pfn >= blk_max_pfn)
David Howells831058d2006-08-29 19:06:00 +0100276 return;
277 pool = page_pool;
278 } else {
279 BUG_ON(!isa_page_pool);
280 pool = isa_page_pool;
281 }
282
David Howells831058d2006-08-29 19:06:00 +0100283 /*
284 * slow path
285 */
Jan Karaa3ad0a92015-06-18 17:19:14 +0200286 __blk_queue_bounce(q, bio_orig, pool);
David Howells831058d2006-08-29 19:06:00 +0100287}