blob: 0611aea1cfe9f0310c08043b3a281fee10835c9d [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
29static mempool_t *page_pool, *isa_page_pool;
30
Chris Metcalff1006252012-06-16 16:41:05 -040031#if defined(CONFIG_HIGHMEM) || defined(CONFIG_NEED_BOUNCE_POOL)
David Howells831058d2006-08-29 19:06:00 +010032static __init int init_emergency_pool(void)
33{
Chris Metcalff1006252012-06-16 16:41:05 -040034#if defined(CONFIG_HIGHMEM) && !defined(CONFIG_MEMORY_HOTPLUG)
David Vrabel3bcfeaf2011-10-20 21:24:30 +020035 if (max_pfn <= max_low_pfn)
David Howells831058d2006-08-29 19:06:00 +010036 return 0;
David Vrabel3bcfeaf2011-10-20 21:24:30 +020037#endif
David Howells831058d2006-08-29 19:06:00 +010038
39 page_pool = mempool_create_page_pool(POOL_SIZE, 0);
40 BUG_ON(!page_pool);
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070041 pr_info("pool size: %d pages\n", POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +010042
43 return 0;
44}
45
46__initcall(init_emergency_pool);
Chris Metcalff1006252012-06-16 16:41:05 -040047#endif
David Howells831058d2006-08-29 19:06:00 +010048
Chris Metcalff1006252012-06-16 16:41:05 -040049#ifdef CONFIG_HIGHMEM
David Howells831058d2006-08-29 19:06:00 +010050/*
51 * highmem version, map in to vec
52 */
53static 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 Wang9b04c5f2011-11-25 23:14:39 +080059 vto = kmap_atomic(to->bv_page);
David Howells831058d2006-08-29 19:06:00 +010060 memcpy(vto + to->bv_offset, vfrom, to->bv_len);
Cong Wang9b04c5f2011-11-25 23:14:39 +080061 kunmap_atomic(vto);
David Howells831058d2006-08-29 19:06:00 +010062 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 */
75static 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 */
84int 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 Humpherysb1de0d12014-06-06 14:38:30 -070093 pr_info("isa pool size: %d pages\n", ISA_POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +010094 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 */
102static void copy_to_high_bio_irq(struct bio *to, struct bio *from)
103{
104 unsigned char *vfrom;
Kent Overstreet79886132013-11-23 17:19:00 -0800105 struct bio_vec tovec, *fromvec = from->bi_io_vec;
106 struct bvec_iter iter;
David Howells831058d2006-08-29 19:06:00 +0100107
Kent Overstreet79886132013-11-23 17:19:00 -0800108 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 Howells831058d2006-08-29 19:06:00 +0100117
Kent Overstreet79886132013-11-23 17:19:00 -0800118 bounce_copy_vec(&tovec, vfrom);
119 flush_dcache_page(tovec.bv_page);
120 }
David Howells831058d2006-08-29 19:06:00 +0100121
Kent Overstreet79886132013-11-23 17:19:00 -0800122 fromvec++;
David Howells831058d2006-08-29 19:06:00 +0100123 }
124}
125
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200126static void bounce_end_io(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100127{
128 struct bio *bio_orig = bio->bi_private;
129 struct bio_vec *bvec, *org_vec;
130 int i;
131
David Howells831058d2006-08-29 19:06:00 +0100132 /*
133 * free up bounce indirect pages used
134 */
Kent Overstreetd74c6d52013-02-06 12:23:11 -0800135 bio_for_each_segment_all(bvec, bio, i) {
David Howells831058d2006-08-29 19:06:00 +0100136 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
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200144 bio_orig->bi_error = bio->bi_error;
145 bio_endio(bio_orig);
David Howells831058d2006-08-29 19:06:00 +0100146 bio_put(bio);
147}
148
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200149static void bounce_end_io_write(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100150{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200151 bounce_end_io(bio, page_pool);
David Howells831058d2006-08-29 19:06:00 +0100152}
153
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200154static void bounce_end_io_write_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100155{
David Howells831058d2006-08-29 19:06:00 +0100156
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200157 bounce_end_io(bio, isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100158}
159
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200160static void __bounce_end_io_read(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100161{
162 struct bio *bio_orig = bio->bi_private;
163
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200164 if (!bio->bi_error)
David Howells831058d2006-08-29 19:06:00 +0100165 copy_to_high_bio_irq(bio_orig, bio);
166
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200167 bounce_end_io(bio, pool);
David Howells831058d2006-08-29 19:06:00 +0100168}
169
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200170static void bounce_end_io_read(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100171{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200172 __bounce_end_io_read(bio, page_pool);
David Howells831058d2006-08-29 19:06:00 +0100173}
174
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200175static void bounce_end_io_read_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100176{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200177 __bounce_end_io_read(bio, isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100178}
179
Jens Axboe165125e2007-07-24 09:28:11 +0200180static void __blk_queue_bounce(struct request_queue *q, struct bio **bio_orig,
Jan Karaa3ad0a92015-06-18 17:19:14 +0200181 mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100182{
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700183 struct bio *bio;
184 int rw = bio_data_dir(*bio_orig);
Kent Overstreet79886132013-11-23 17:19:00 -0800185 struct bio_vec *to, from;
186 struct bvec_iter iter;
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700187 unsigned i;
David Howells831058d2006-08-29 19:06:00 +0100188
Kent Overstreet79886132013-11-23 17:19:00 -0800189 bio_for_each_segment(from, *bio_orig, iter)
190 if (page_to_pfn(from.bv_page) > queue_bounce_pfn(q))
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700191 goto bounce;
David Howells831058d2006-08-29 19:06:00 +0100192
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700193 return;
194bounce:
195 bio = bio_clone_bioset(*bio_orig, GFP_NOIO, fs_bio_set);
196
Kent Overstreetcb34e052012-09-05 15:22:02 -0700197 bio_for_each_segment_all(to, bio, i) {
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700198 struct page *page = to->bv_page;
199
Jan Karaa3ad0a92015-06-18 17:19:14 +0200200 if (page_to_pfn(page) <= queue_bounce_pfn(q))
David Howells831058d2006-08-29 19:06:00 +0100201 continue;
202
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700203 to->bv_page = mempool_alloc(pool, q->bounce_gfp);
Wang YanQing393a3392015-04-26 16:43:31 +0800204 inc_zone_page_state(to->bv_page, NR_BOUNCE);
David Howells831058d2006-08-29 19:06:00 +0100205
206 if (rw == WRITE) {
207 char *vto, *vfrom;
208
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700209 flush_dcache_page(page);
210
David Howells831058d2006-08-29 19:06:00 +0100211 vto = page_address(to->bv_page) + to->bv_offset;
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700212 vfrom = kmap_atomic(page) + to->bv_offset;
David Howells831058d2006-08-29 19:06:00 +0100213 memcpy(vto, vfrom, to->bv_len);
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700214 kunmap_atomic(vfrom);
David Howells831058d2006-08-29 19:06:00 +0100215 }
216 }
217
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100218 trace_block_bio_bounce(q, *bio_orig);
Jens Axboec43a5082007-01-12 12:20:26 +0100219
David Howells831058d2006-08-29 19:06:00 +0100220 bio->bi_flags |= (1 << BIO_BOUNCED);
David Howells831058d2006-08-29 19:06:00 +0100221
222 if (pool == page_pool) {
223 bio->bi_end_io = bounce_end_io_write;
224 if (rw == READ)
225 bio->bi_end_io = bounce_end_io_read;
226 } else {
227 bio->bi_end_io = bounce_end_io_write_isa;
228 if (rw == READ)
229 bio->bi_end_io = bounce_end_io_read_isa;
230 }
231
232 bio->bi_private = *bio_orig;
233 *bio_orig = bio;
234}
235
Jens Axboe165125e2007-07-24 09:28:11 +0200236void blk_queue_bounce(struct request_queue *q, struct bio **bio_orig)
David Howells831058d2006-08-29 19:06:00 +0100237{
238 mempool_t *pool;
239
240 /*
Jens Axboebf2de6f2007-09-27 13:01:25 +0200241 * Data-less bio, nothing to bounce
242 */
Jens Axboe36144072008-08-14 13:12:15 +0200243 if (!bio_has_data(*bio_orig))
Jens Axboebf2de6f2007-09-27 13:01:25 +0200244 return;
245
246 /*
David Howells831058d2006-08-29 19:06:00 +0100247 * for non-isa bounce case, just check if the bounce pfn is equal
248 * to or bigger than the highest pfn in the system -- in that case,
249 * don't waste time iterating over bio segments
250 */
251 if (!(q->bounce_gfp & GFP_DMA)) {
Jan Karaa3ad0a92015-06-18 17:19:14 +0200252 if (queue_bounce_pfn(q) >= blk_max_pfn)
David Howells831058d2006-08-29 19:06:00 +0100253 return;
254 pool = page_pool;
255 } else {
256 BUG_ON(!isa_page_pool);
257 pool = isa_page_pool;
258 }
259
David Howells831058d2006-08-29 19:06:00 +0100260 /*
261 * slow path
262 */
Jan Karaa3ad0a92015-06-18 17:19:14 +0200263 __blk_queue_bounce(q, bio_orig, pool);
David Howells831058d2006-08-29 19:06:00 +0100264}
265
266EXPORT_SYMBOL(blk_queue_bounce);