blob: 916ee9a9a2164fc6c983d2367d87bc6cc4f95b40 [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>
25
David Howells831058d2006-08-29 19:06:00 +010026#define POOL_SIZE 64
27#define ISA_POOL_SIZE 16
28
Bart Van Asschee0fc443a2017-06-21 10:55:45 -070029static struct bio_set *bounce_bio_set, *bounce_bio_split;
David Howells831058d2006-08-29 19:06:00 +010030static mempool_t *page_pool, *isa_page_pool;
31
Chris Metcalff1006252012-06-16 16:41:05 -040032#if defined(CONFIG_HIGHMEM) || defined(CONFIG_NEED_BOUNCE_POOL)
David Howells831058d2006-08-29 19:06:00 +010033static __init int init_emergency_pool(void)
34{
Chris Metcalff1006252012-06-16 16:41:05 -040035#if defined(CONFIG_HIGHMEM) && !defined(CONFIG_MEMORY_HOTPLUG)
David Vrabel3bcfeaf2011-10-20 21:24:30 +020036 if (max_pfn <= max_low_pfn)
David Howells831058d2006-08-29 19:06:00 +010037 return 0;
David Vrabel3bcfeaf2011-10-20 21:24:30 +020038#endif
David Howells831058d2006-08-29 19:06:00 +010039
40 page_pool = mempool_create_page_pool(POOL_SIZE, 0);
41 BUG_ON(!page_pool);
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070042 pr_info("pool size: %d pages\n", POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +010043
NeilBrowna8821f32017-06-18 14:38:58 +100044 bounce_bio_set = bioset_create(BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
45 BUG_ON(!bounce_bio_set);
46 if (bioset_integrity_create(bounce_bio_set, BIO_POOL_SIZE))
47 BUG_ON(1);
48
49 bounce_bio_split = bioset_create(BIO_POOL_SIZE, 0, 0);
50 BUG_ON(!bounce_bio_split);
51
David Howells831058d2006-08-29 19:06:00 +010052 return 0;
53}
54
55__initcall(init_emergency_pool);
Chris Metcalff1006252012-06-16 16:41:05 -040056#endif
David Howells831058d2006-08-29 19:06:00 +010057
Chris Metcalff1006252012-06-16 16:41:05 -040058#ifdef CONFIG_HIGHMEM
David Howells831058d2006-08-29 19:06:00 +010059/*
60 * highmem version, map in to vec
61 */
62static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom)
63{
64 unsigned long flags;
65 unsigned char *vto;
66
67 local_irq_save(flags);
Cong Wang9b04c5f2011-11-25 23:14:39 +080068 vto = kmap_atomic(to->bv_page);
David Howells831058d2006-08-29 19:06:00 +010069 memcpy(vto + to->bv_offset, vfrom, to->bv_len);
Cong Wang9b04c5f2011-11-25 23:14:39 +080070 kunmap_atomic(vto);
David Howells831058d2006-08-29 19:06:00 +010071 local_irq_restore(flags);
72}
73
74#else /* CONFIG_HIGHMEM */
75
76#define bounce_copy_vec(to, vfrom) \
77 memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len)
78
79#endif /* CONFIG_HIGHMEM */
80
81/*
82 * allocate pages in the DMA region for the ISA pool
83 */
84static void *mempool_alloc_pages_isa(gfp_t gfp_mask, void *data)
85{
86 return mempool_alloc_pages(gfp_mask | GFP_DMA, data);
87}
88
89/*
90 * gets called "every" time someone init's a queue with BLK_BOUNCE_ISA
91 * as the max address, so check if the pool has already been created.
92 */
93int init_emergency_isa_pool(void)
94{
95 if (isa_page_pool)
96 return 0;
97
98 isa_page_pool = mempool_create(ISA_POOL_SIZE, mempool_alloc_pages_isa,
99 mempool_free_pages, (void *) 0);
100 BUG_ON(!isa_page_pool);
101
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -0700102 pr_info("isa pool size: %d pages\n", ISA_POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +0100103 return 0;
104}
105
106/*
107 * Simple bounce buffer support for highmem pages. Depending on the
108 * queue gfp mask set, *to may or may not be a highmem page. kmap it
109 * always, it will do the Right Thing
110 */
111static void copy_to_high_bio_irq(struct bio *to, struct bio *from)
112{
113 unsigned char *vfrom;
Kent Overstreet79886132013-11-23 17:19:00 -0800114 struct bio_vec tovec, *fromvec = from->bi_io_vec;
115 struct bvec_iter iter;
David Howells831058d2006-08-29 19:06:00 +0100116
Kent Overstreet79886132013-11-23 17:19:00 -0800117 bio_for_each_segment(tovec, to, iter) {
118 if (tovec.bv_page != fromvec->bv_page) {
119 /*
120 * fromvec->bv_offset and fromvec->bv_len might have
121 * been modified by the block layer, so use the original
122 * copy, bounce_copy_vec already uses tovec->bv_len
123 */
124 vfrom = page_address(fromvec->bv_page) +
125 tovec.bv_offset;
David Howells831058d2006-08-29 19:06:00 +0100126
Kent Overstreet79886132013-11-23 17:19:00 -0800127 bounce_copy_vec(&tovec, vfrom);
128 flush_dcache_page(tovec.bv_page);
129 }
David Howells831058d2006-08-29 19:06:00 +0100130
Kent Overstreet79886132013-11-23 17:19:00 -0800131 fromvec++;
David Howells831058d2006-08-29 19:06:00 +0100132 }
133}
134
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200135static void bounce_end_io(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100136{
137 struct bio *bio_orig = bio->bi_private;
138 struct bio_vec *bvec, *org_vec;
139 int i;
Ming Lei99451872015-09-18 00:06:28 +0800140 int start = bio_orig->bi_iter.bi_idx;
David Howells831058d2006-08-29 19:06:00 +0100141
David Howells831058d2006-08-29 19:06:00 +0100142 /*
143 * free up bounce indirect pages used
144 */
Kent Overstreetd74c6d52013-02-06 12:23:11 -0800145 bio_for_each_segment_all(bvec, bio, i) {
Ming Lei99451872015-09-18 00:06:28 +0800146 org_vec = bio_orig->bi_io_vec + i + start;
147
David Howells831058d2006-08-29 19:06:00 +0100148 if (bvec->bv_page == org_vec->bv_page)
149 continue;
150
151 dec_zone_page_state(bvec->bv_page, NR_BOUNCE);
152 mempool_free(bvec->bv_page, pool);
153 }
154
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200155 bio_orig->bi_status = bio->bi_status;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200156 bio_endio(bio_orig);
David Howells831058d2006-08-29 19:06:00 +0100157 bio_put(bio);
158}
159
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200160static void bounce_end_io_write(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100161{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200162 bounce_end_io(bio, page_pool);
David Howells831058d2006-08-29 19:06:00 +0100163}
164
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200165static void bounce_end_io_write_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100166{
David Howells831058d2006-08-29 19:06:00 +0100167
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200168 bounce_end_io(bio, isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100169}
170
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200171static void __bounce_end_io_read(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100172{
173 struct bio *bio_orig = bio->bi_private;
174
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200175 if (!bio->bi_status)
David Howells831058d2006-08-29 19:06:00 +0100176 copy_to_high_bio_irq(bio_orig, bio);
177
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200178 bounce_end_io(bio, pool);
David Howells831058d2006-08-29 19:06:00 +0100179}
180
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200181static void bounce_end_io_read(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100182{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200183 __bounce_end_io_read(bio, page_pool);
David Howells831058d2006-08-29 19:06:00 +0100184}
185
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200186static void bounce_end_io_read_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100187{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200188 __bounce_end_io_read(bio, isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100189}
190
Jens Axboe165125e2007-07-24 09:28:11 +0200191static void __blk_queue_bounce(struct request_queue *q, struct bio **bio_orig,
Jan Karaa3ad0a92015-06-18 17:19:14 +0200192 mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100193{
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700194 struct bio *bio;
195 int rw = bio_data_dir(*bio_orig);
Kent Overstreet79886132013-11-23 17:19:00 -0800196 struct bio_vec *to, from;
197 struct bvec_iter iter;
NeilBrowna8821f32017-06-18 14:38:58 +1000198 unsigned i = 0;
199 bool bounce = false;
200 int sectors = 0;
David Howells831058d2006-08-29 19:06:00 +0100201
NeilBrowna8821f32017-06-18 14:38:58 +1000202 bio_for_each_segment(from, *bio_orig, iter) {
203 if (i++ < BIO_MAX_PAGES)
204 sectors += from.bv_len >> 9;
Kent Overstreet79886132013-11-23 17:19:00 -0800205 if (page_to_pfn(from.bv_page) > queue_bounce_pfn(q))
NeilBrowna8821f32017-06-18 14:38:58 +1000206 bounce = true;
207 }
208 if (!bounce)
209 return;
David Howells831058d2006-08-29 19:06:00 +0100210
NeilBrowna8821f32017-06-18 14:38:58 +1000211 if (sectors < bio_sectors(*bio_orig)) {
212 bio = bio_split(*bio_orig, sectors, GFP_NOIO, bounce_bio_split);
213 bio_chain(bio, *bio_orig);
214 generic_make_request(*bio_orig);
215 *bio_orig = bio;
216 }
217 bio = bio_clone_bioset(*bio_orig, GFP_NOIO, bounce_bio_set);
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700218
Kent Overstreetcb34e052012-09-05 15:22:02 -0700219 bio_for_each_segment_all(to, bio, i) {
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700220 struct page *page = to->bv_page;
221
Jan Karaa3ad0a92015-06-18 17:19:14 +0200222 if (page_to_pfn(page) <= queue_bounce_pfn(q))
David Howells831058d2006-08-29 19:06:00 +0100223 continue;
224
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700225 to->bv_page = mempool_alloc(pool, q->bounce_gfp);
Wang YanQing393a3392015-04-26 16:43:31 +0800226 inc_zone_page_state(to->bv_page, NR_BOUNCE);
David Howells831058d2006-08-29 19:06:00 +0100227
228 if (rw == WRITE) {
229 char *vto, *vfrom;
230
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700231 flush_dcache_page(page);
232
David Howells831058d2006-08-29 19:06:00 +0100233 vto = page_address(to->bv_page) + to->bv_offset;
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700234 vfrom = kmap_atomic(page) + to->bv_offset;
David Howells831058d2006-08-29 19:06:00 +0100235 memcpy(vto, vfrom, to->bv_len);
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700236 kunmap_atomic(vfrom);
David Howells831058d2006-08-29 19:06:00 +0100237 }
238 }
239
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100240 trace_block_bio_bounce(q, *bio_orig);
Jens Axboec43a5082007-01-12 12:20:26 +0100241
David Howells831058d2006-08-29 19:06:00 +0100242 bio->bi_flags |= (1 << BIO_BOUNCED);
David Howells831058d2006-08-29 19:06:00 +0100243
244 if (pool == page_pool) {
245 bio->bi_end_io = bounce_end_io_write;
246 if (rw == READ)
247 bio->bi_end_io = bounce_end_io_read;
248 } else {
249 bio->bi_end_io = bounce_end_io_write_isa;
250 if (rw == READ)
251 bio->bi_end_io = bounce_end_io_read_isa;
252 }
253
254 bio->bi_private = *bio_orig;
255 *bio_orig = bio;
256}
257
Jens Axboe165125e2007-07-24 09:28:11 +0200258void blk_queue_bounce(struct request_queue *q, struct bio **bio_orig)
David Howells831058d2006-08-29 19:06:00 +0100259{
260 mempool_t *pool;
261
262 /*
Jens Axboebf2de6f2007-09-27 13:01:25 +0200263 * Data-less bio, nothing to bounce
264 */
Jens Axboe36144072008-08-14 13:12:15 +0200265 if (!bio_has_data(*bio_orig))
Jens Axboebf2de6f2007-09-27 13:01:25 +0200266 return;
267
268 /*
David Howells831058d2006-08-29 19:06:00 +0100269 * 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)) {
Jan Karaa3ad0a92015-06-18 17:19:14 +0200274 if (queue_bounce_pfn(q) >= blk_max_pfn)
David Howells831058d2006-08-29 19:06:00 +0100275 return;
276 pool = page_pool;
277 } else {
278 BUG_ON(!isa_page_pool);
279 pool = isa_page_pool;
280 }
281
David Howells831058d2006-08-29 19:06:00 +0100282 /*
283 * slow path
284 */
Jan Karaa3ad0a92015-06-18 17:19:14 +0200285 __blk_queue_bounce(q, bio_orig, pool);
David Howells831058d2006-08-29 19:06:00 +0100286}
287
288EXPORT_SYMBOL(blk_queue_bounce);