blob: fe3aee90c9883fc9530434812b56e3f7e8175567 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jens Axboe0fe23472006-09-04 15:41:16 +02002 * Copyright (C) 2001 Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public Licens
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
16 *
17 */
18#include <linux/mm.h>
19#include <linux/swap.h>
20#include <linux/bio.h>
21#include <linux/blkdev.h>
Tejun Heo852c7882012-03-05 13:15:27 -080022#include <linux/iocontext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/slab.h>
24#include <linux/init.h>
25#include <linux/kernel.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050026#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/mempool.h>
28#include <linux/workqueue.h>
Tejun Heo852c7882012-03-05 13:15:27 -080029#include <linux/cgroup.h>
James Bottomley f1970ba2005-06-20 14:06:52 +020030#include <scsi/sg.h> /* for struct sg_iovec */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Li Zefan55782132009-06-09 13:43:05 +080032#include <trace/events/block.h>
Ingo Molnar0bfc2452008-11-26 11:59:56 +010033
Jens Axboe392ddc32008-12-23 12:42:54 +010034/*
35 * Test patch to inline a certain number of bi_io_vec's inside the bio
36 * itself, to shrink a bio data allocation from two mempool calls to one
37 */
38#define BIO_INLINE_VECS 4
39
Denis ChengRq6feef532008-10-09 08:57:05 +020040static mempool_t *bio_split_pool __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
43 * if you change this list, also change bvec_alloc or things will
44 * break badly! cannot be bigger than what you can fit into an
45 * unsigned short
46 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define BV(x) { .nr_vecs = x, .name = "biovec-"__stringify(x) }
Martin K. Petersendf677142011-03-08 08:28:01 +010048static struct biovec_slab bvec_slabs[BIOVEC_NR_POOLS] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 BV(1), BV(4), BV(16), BV(64), BV(128), BV(BIO_MAX_PAGES),
50};
51#undef BV
52
53/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * fs_bio_set is the bio_set containing bio and iovec memory pools used by
55 * IO code that does not need private memory pools.
56 */
Martin K. Petersen51d654e2008-06-17 18:59:56 +020057struct bio_set *fs_bio_set;
Kent Overstreet3f86a822012-09-06 15:35:01 -070058EXPORT_SYMBOL(fs_bio_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Jens Axboebb799ca2008-12-10 15:35:05 +010060/*
61 * Our slab pool management
62 */
63struct bio_slab {
64 struct kmem_cache *slab;
65 unsigned int slab_ref;
66 unsigned int slab_size;
67 char name[8];
68};
69static DEFINE_MUTEX(bio_slab_lock);
70static struct bio_slab *bio_slabs;
71static unsigned int bio_slab_nr, bio_slab_max;
72
73static struct kmem_cache *bio_find_or_create_slab(unsigned int extra_size)
74{
75 unsigned int sz = sizeof(struct bio) + extra_size;
76 struct kmem_cache *slab = NULL;
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +020077 struct bio_slab *bslab, *new_bio_slabs;
Anna Leuschner386bc352012-10-22 21:53:36 +020078 unsigned int new_bio_slab_max;
Jens Axboebb799ca2008-12-10 15:35:05 +010079 unsigned int i, entry = -1;
80
81 mutex_lock(&bio_slab_lock);
82
83 i = 0;
84 while (i < bio_slab_nr) {
Thiago Farinaf06f1352010-01-19 14:07:09 +010085 bslab = &bio_slabs[i];
Jens Axboebb799ca2008-12-10 15:35:05 +010086
87 if (!bslab->slab && entry == -1)
88 entry = i;
89 else if (bslab->slab_size == sz) {
90 slab = bslab->slab;
91 bslab->slab_ref++;
92 break;
93 }
94 i++;
95 }
96
97 if (slab)
98 goto out_unlock;
99
100 if (bio_slab_nr == bio_slab_max && entry == -1) {
Anna Leuschner386bc352012-10-22 21:53:36 +0200101 new_bio_slab_max = bio_slab_max << 1;
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +0200102 new_bio_slabs = krealloc(bio_slabs,
Anna Leuschner386bc352012-10-22 21:53:36 +0200103 new_bio_slab_max * sizeof(struct bio_slab),
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +0200104 GFP_KERNEL);
105 if (!new_bio_slabs)
Jens Axboebb799ca2008-12-10 15:35:05 +0100106 goto out_unlock;
Anna Leuschner386bc352012-10-22 21:53:36 +0200107 bio_slab_max = new_bio_slab_max;
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +0200108 bio_slabs = new_bio_slabs;
Jens Axboebb799ca2008-12-10 15:35:05 +0100109 }
110 if (entry == -1)
111 entry = bio_slab_nr++;
112
113 bslab = &bio_slabs[entry];
114
115 snprintf(bslab->name, sizeof(bslab->name), "bio-%d", entry);
116 slab = kmem_cache_create(bslab->name, sz, 0, SLAB_HWCACHE_ALIGN, NULL);
117 if (!slab)
118 goto out_unlock;
119
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -0700120 printk(KERN_INFO "bio: create slab <%s> at %d\n", bslab->name, entry);
Jens Axboebb799ca2008-12-10 15:35:05 +0100121 bslab->slab = slab;
122 bslab->slab_ref = 1;
123 bslab->slab_size = sz;
124out_unlock:
125 mutex_unlock(&bio_slab_lock);
126 return slab;
127}
128
129static void bio_put_slab(struct bio_set *bs)
130{
131 struct bio_slab *bslab = NULL;
132 unsigned int i;
133
134 mutex_lock(&bio_slab_lock);
135
136 for (i = 0; i < bio_slab_nr; i++) {
137 if (bs->bio_slab == bio_slabs[i].slab) {
138 bslab = &bio_slabs[i];
139 break;
140 }
141 }
142
143 if (WARN(!bslab, KERN_ERR "bio: unable to find slab!\n"))
144 goto out;
145
146 WARN_ON(!bslab->slab_ref);
147
148 if (--bslab->slab_ref)
149 goto out;
150
151 kmem_cache_destroy(bslab->slab);
152 bslab->slab = NULL;
153
154out:
155 mutex_unlock(&bio_slab_lock);
156}
157
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200158unsigned int bvec_nr_vecs(unsigned short idx)
159{
160 return bvec_slabs[idx].nr_vecs;
161}
162
Kent Overstreet9f060e22012-10-12 15:29:33 -0700163void bvec_free(mempool_t *pool, struct bio_vec *bv, unsigned int idx)
Jens Axboebb799ca2008-12-10 15:35:05 +0100164{
165 BIO_BUG_ON(idx >= BIOVEC_NR_POOLS);
166
167 if (idx == BIOVEC_MAX_IDX)
Kent Overstreet9f060e22012-10-12 15:29:33 -0700168 mempool_free(bv, pool);
Jens Axboebb799ca2008-12-10 15:35:05 +0100169 else {
170 struct biovec_slab *bvs = bvec_slabs + idx;
171
172 kmem_cache_free(bvs->slab, bv);
173 }
174}
175
Kent Overstreet9f060e22012-10-12 15:29:33 -0700176struct bio_vec *bvec_alloc(gfp_t gfp_mask, int nr, unsigned long *idx,
177 mempool_t *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 struct bio_vec *bvl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 /*
Jens Axboe7ff93452008-12-11 11:53:43 +0100182 * see comment near bvec_array define!
183 */
184 switch (nr) {
185 case 1:
186 *idx = 0;
187 break;
188 case 2 ... 4:
189 *idx = 1;
190 break;
191 case 5 ... 16:
192 *idx = 2;
193 break;
194 case 17 ... 64:
195 *idx = 3;
196 break;
197 case 65 ... 128:
198 *idx = 4;
199 break;
200 case 129 ... BIO_MAX_PAGES:
201 *idx = 5;
202 break;
203 default:
204 return NULL;
205 }
206
207 /*
208 * idx now points to the pool we want to allocate from. only the
209 * 1-vec entry pool is mempool backed.
210 */
211 if (*idx == BIOVEC_MAX_IDX) {
212fallback:
Kent Overstreet9f060e22012-10-12 15:29:33 -0700213 bvl = mempool_alloc(pool, gfp_mask);
Jens Axboe7ff93452008-12-11 11:53:43 +0100214 } else {
215 struct biovec_slab *bvs = bvec_slabs + *idx;
216 gfp_t __gfp_mask = gfp_mask & ~(__GFP_WAIT | __GFP_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Jens Axboe0a0d96b2008-09-11 13:17:37 +0200218 /*
Jens Axboe7ff93452008-12-11 11:53:43 +0100219 * Make this allocation restricted and don't dump info on
220 * allocation failures, since we'll fallback to the mempool
221 * in case of failure.
Jens Axboe0a0d96b2008-09-11 13:17:37 +0200222 */
Jens Axboe7ff93452008-12-11 11:53:43 +0100223 __gfp_mask |= __GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
224
225 /*
226 * Try a slab allocation. If this fails and __GFP_WAIT
227 * is set, retry with the 1-entry mempool
228 */
229 bvl = kmem_cache_alloc(bvs->slab, __gfp_mask);
230 if (unlikely(!bvl && (gfp_mask & __GFP_WAIT))) {
231 *idx = BIOVEC_MAX_IDX;
232 goto fallback;
233 }
234 }
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return bvl;
237}
238
Kent Overstreet4254bba2012-09-06 15:35:00 -0700239static void __bio_free(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Kent Overstreet4254bba2012-09-06 15:35:00 -0700241 bio_disassociate_task(bio);
Jens Axboe992c5dd2007-07-18 13:18:08 +0200242
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200243 if (bio_integrity(bio))
Kent Overstreet1e2a410f2012-09-06 15:34:56 -0700244 bio_integrity_free(bio);
Kent Overstreet4254bba2012-09-06 15:35:00 -0700245}
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200246
Kent Overstreet4254bba2012-09-06 15:35:00 -0700247static void bio_free(struct bio *bio)
248{
249 struct bio_set *bs = bio->bi_pool;
250 void *p;
251
252 __bio_free(bio);
253
254 if (bs) {
255 if (bio_has_allocated_vec(bio))
Kent Overstreet9f060e22012-10-12 15:29:33 -0700256 bvec_free(bs->bvec_pool, bio->bi_io_vec, BIO_POOL_IDX(bio));
Kent Overstreet4254bba2012-09-06 15:35:00 -0700257
258 /*
259 * If we have front padding, adjust the bio pointer before freeing
260 */
261 p = bio;
Jens Axboebb799ca2008-12-10 15:35:05 +0100262 p -= bs->front_pad;
263
Kent Overstreet4254bba2012-09-06 15:35:00 -0700264 mempool_free(p, bs->bio_pool);
265 } else {
266 /* Bio was allocated by bio_kmalloc() */
267 kfree(bio);
268 }
Peter Osterlund36763472005-09-06 15:16:42 -0700269}
270
Arjan van de Ven858119e2006-01-14 13:20:43 -0800271void bio_init(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Jens Axboe2b94de52007-07-18 13:14:03 +0200273 memset(bio, 0, sizeof(*bio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 bio->bi_flags = 1 << BIO_UPTODATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 atomic_set(&bio->bi_cnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200277EXPORT_SYMBOL(bio_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279/**
Kent Overstreetf44b48c72012-09-06 15:34:58 -0700280 * bio_reset - reinitialize a bio
281 * @bio: bio to reset
282 *
283 * Description:
284 * After calling bio_reset(), @bio will be in the same state as a freshly
285 * allocated bio returned bio bio_alloc_bioset() - the only fields that are
286 * preserved are the ones that are initialized by bio_alloc_bioset(). See
287 * comment in struct bio.
288 */
289void bio_reset(struct bio *bio)
290{
291 unsigned long flags = bio->bi_flags & (~0UL << BIO_RESET_BITS);
292
Kent Overstreet4254bba2012-09-06 15:35:00 -0700293 __bio_free(bio);
Kent Overstreetf44b48c72012-09-06 15:34:58 -0700294
295 memset(bio, 0, BIO_RESET_BYTES);
296 bio->bi_flags = flags|(1 << BIO_UPTODATE);
297}
298EXPORT_SYMBOL(bio_reset);
299
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -0700300static void bio_alloc_rescue(struct work_struct *work)
301{
302 struct bio_set *bs = container_of(work, struct bio_set, rescue_work);
303 struct bio *bio;
304
305 while (1) {
306 spin_lock(&bs->rescue_lock);
307 bio = bio_list_pop(&bs->rescue_list);
308 spin_unlock(&bs->rescue_lock);
309
310 if (!bio)
311 break;
312
313 generic_make_request(bio);
314 }
315}
316
317static void punt_bios_to_rescuer(struct bio_set *bs)
318{
319 struct bio_list punt, nopunt;
320 struct bio *bio;
321
322 /*
323 * In order to guarantee forward progress we must punt only bios that
324 * were allocated from this bio_set; otherwise, if there was a bio on
325 * there for a stacking driver higher up in the stack, processing it
326 * could require allocating bios from this bio_set, and doing that from
327 * our own rescuer would be bad.
328 *
329 * Since bio lists are singly linked, pop them all instead of trying to
330 * remove from the middle of the list:
331 */
332
333 bio_list_init(&punt);
334 bio_list_init(&nopunt);
335
336 while ((bio = bio_list_pop(current->bio_list)))
337 bio_list_add(bio->bi_pool == bs ? &punt : &nopunt, bio);
338
339 *current->bio_list = nopunt;
340
341 spin_lock(&bs->rescue_lock);
342 bio_list_merge(&bs->rescue_list, &punt);
343 spin_unlock(&bs->rescue_lock);
344
345 queue_work(bs->rescue_workqueue, &bs->rescue_work);
346}
347
Kent Overstreetf44b48c72012-09-06 15:34:58 -0700348/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * bio_alloc_bioset - allocate a bio for I/O
350 * @gfp_mask: the GFP_ mask given to the slab allocator
351 * @nr_iovecs: number of iovecs to pre-allocate
Jaak Ristiojadb18efa2010-01-15 12:05:07 +0200352 * @bs: the bio_set to allocate from.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 *
354 * Description:
Kent Overstreet3f86a822012-09-06 15:35:01 -0700355 * If @bs is NULL, uses kmalloc() to allocate the bio; else the allocation is
356 * backed by the @bs's mempool.
357 *
358 * When @bs is not NULL, if %__GFP_WAIT is set then bio_alloc will always be
359 * able to allocate a bio. This is due to the mempool guarantees. To make this
360 * work, callers must never allocate more than 1 bio at a time from this pool.
361 * Callers that need to allocate more than 1 bio must always submit the
362 * previously allocated bio for IO before attempting to allocate a new one.
363 * Failure to do so can cause deadlocks under memory pressure.
364 *
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -0700365 * Note that when running under generic_make_request() (i.e. any block
366 * driver), bios are not submitted until after you return - see the code in
367 * generic_make_request() that converts recursion into iteration, to prevent
368 * stack overflows.
369 *
370 * This would normally mean allocating multiple bios under
371 * generic_make_request() would be susceptible to deadlocks, but we have
372 * deadlock avoidance code that resubmits any blocked bios from a rescuer
373 * thread.
374 *
375 * However, we do not guarantee forward progress for allocations from other
376 * mempools. Doing multiple allocations from the same mempool under
377 * generic_make_request() should be avoided - instead, use bio_set's front_pad
378 * for per bio allocations.
379 *
Kent Overstreet3f86a822012-09-06 15:35:01 -0700380 * RETURNS:
381 * Pointer to new bio on success, NULL on failure.
382 */
Al Virodd0fc662005-10-07 07:46:04 +0100383struct bio *bio_alloc_bioset(gfp_t gfp_mask, int nr_iovecs, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -0700385 gfp_t saved_gfp = gfp_mask;
Kent Overstreet3f86a822012-09-06 15:35:01 -0700386 unsigned front_pad;
387 unsigned inline_vecs;
Tejun Heo451a9eb2009-04-15 19:50:51 +0200388 unsigned long idx = BIO_POOL_NONE;
Ingo Molnar34053972009-02-21 11:16:36 +0100389 struct bio_vec *bvl = NULL;
Tejun Heo451a9eb2009-04-15 19:50:51 +0200390 struct bio *bio;
391 void *p;
Jens Axboe0a0d96b2008-09-11 13:17:37 +0200392
Kent Overstreet3f86a822012-09-06 15:35:01 -0700393 if (!bs) {
394 if (nr_iovecs > UIO_MAXIOV)
395 return NULL;
396
397 p = kmalloc(sizeof(struct bio) +
398 nr_iovecs * sizeof(struct bio_vec),
399 gfp_mask);
400 front_pad = 0;
401 inline_vecs = nr_iovecs;
402 } else {
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -0700403 /*
404 * generic_make_request() converts recursion to iteration; this
405 * means if we're running beneath it, any bios we allocate and
406 * submit will not be submitted (and thus freed) until after we
407 * return.
408 *
409 * This exposes us to a potential deadlock if we allocate
410 * multiple bios from the same bio_set() while running
411 * underneath generic_make_request(). If we were to allocate
412 * multiple bios (say a stacking block driver that was splitting
413 * bios), we would deadlock if we exhausted the mempool's
414 * reserve.
415 *
416 * We solve this, and guarantee forward progress, with a rescuer
417 * workqueue per bio_set. If we go to allocate and there are
418 * bios on current->bio_list, we first try the allocation
419 * without __GFP_WAIT; if that fails, we punt those bios we
420 * would be blocking to the rescuer workqueue before we retry
421 * with the original gfp_flags.
422 */
423
424 if (current->bio_list && !bio_list_empty(current->bio_list))
425 gfp_mask &= ~__GFP_WAIT;
426
Kent Overstreet3f86a822012-09-06 15:35:01 -0700427 p = mempool_alloc(bs->bio_pool, gfp_mask);
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -0700428 if (!p && gfp_mask != saved_gfp) {
429 punt_bios_to_rescuer(bs);
430 gfp_mask = saved_gfp;
431 p = mempool_alloc(bs->bio_pool, gfp_mask);
432 }
433
Kent Overstreet3f86a822012-09-06 15:35:01 -0700434 front_pad = bs->front_pad;
435 inline_vecs = BIO_INLINE_VECS;
436 }
437
Tejun Heo451a9eb2009-04-15 19:50:51 +0200438 if (unlikely(!p))
439 return NULL;
Ingo Molnar34053972009-02-21 11:16:36 +0100440
Kent Overstreet3f86a822012-09-06 15:35:01 -0700441 bio = p + front_pad;
Ingo Molnar34053972009-02-21 11:16:36 +0100442 bio_init(bio);
443
Kent Overstreet3f86a822012-09-06 15:35:01 -0700444 if (nr_iovecs > inline_vecs) {
Kent Overstreet9f060e22012-10-12 15:29:33 -0700445 bvl = bvec_alloc(gfp_mask, nr_iovecs, &idx, bs->bvec_pool);
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -0700446 if (!bvl && gfp_mask != saved_gfp) {
447 punt_bios_to_rescuer(bs);
448 gfp_mask = saved_gfp;
Kent Overstreet9f060e22012-10-12 15:29:33 -0700449 bvl = bvec_alloc(gfp_mask, nr_iovecs, &idx, bs->bvec_pool);
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -0700450 }
451
Ingo Molnar34053972009-02-21 11:16:36 +0100452 if (unlikely(!bvl))
453 goto err_free;
Kent Overstreet3f86a822012-09-06 15:35:01 -0700454 } else if (nr_iovecs) {
455 bvl = bio->bi_inline_vecs;
Ingo Molnar34053972009-02-21 11:16:36 +0100456 }
Kent Overstreet3f86a822012-09-06 15:35:01 -0700457
458 bio->bi_pool = bs;
Ingo Molnar34053972009-02-21 11:16:36 +0100459 bio->bi_flags |= idx << BIO_POOL_OFFSET;
460 bio->bi_max_vecs = nr_iovecs;
Ingo Molnar34053972009-02-21 11:16:36 +0100461 bio->bi_io_vec = bvl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return bio;
Ingo Molnar34053972009-02-21 11:16:36 +0100463
464err_free:
Tejun Heo451a9eb2009-04-15 19:50:51 +0200465 mempool_free(p, bs->bio_pool);
Ingo Molnar34053972009-02-21 11:16:36 +0100466 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200468EXPORT_SYMBOL(bio_alloc_bioset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470void zero_fill_bio(struct bio *bio)
471{
472 unsigned long flags;
473 struct bio_vec *bv;
474 int i;
475
476 bio_for_each_segment(bv, bio, i) {
477 char *data = bvec_kmap_irq(bv, &flags);
478 memset(data, 0, bv->bv_len);
479 flush_dcache_page(bv->bv_page);
480 bvec_kunmap_irq(data, &flags);
481 }
482}
483EXPORT_SYMBOL(zero_fill_bio);
484
485/**
486 * bio_put - release a reference to a bio
487 * @bio: bio to release reference to
488 *
489 * Description:
490 * Put a reference to a &struct bio, either one you have gotten with
Alberto Bertogliad0bf112009-11-02 11:39:22 +0100491 * bio_alloc, bio_get or bio_clone. The last put of a bio will free it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 **/
493void bio_put(struct bio *bio)
494{
495 BIO_BUG_ON(!atomic_read(&bio->bi_cnt));
496
497 /*
498 * last put frees it
499 */
Kent Overstreet4254bba2012-09-06 15:35:00 -0700500 if (atomic_dec_and_test(&bio->bi_cnt))
501 bio_free(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200503EXPORT_SYMBOL(bio_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Jens Axboe165125e2007-07-24 09:28:11 +0200505inline int bio_phys_segments(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
508 blk_recount_segments(q, bio);
509
510 return bio->bi_phys_segments;
511}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200512EXPORT_SYMBOL(bio_phys_segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/**
515 * __bio_clone - clone a bio
516 * @bio: destination bio
517 * @bio_src: bio to clone
518 *
519 * Clone a &bio. Caller will own the returned bio, but not
520 * the actual data it points to. Reference count of returned
521 * bio will be one.
522 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800523void __bio_clone(struct bio *bio, struct bio *bio_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Andrew Mortone525e152005-08-07 09:42:12 -0700525 memcpy(bio->bi_io_vec, bio_src->bi_io_vec,
526 bio_src->bi_max_vecs * sizeof(struct bio_vec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Jens Axboe5d840702008-01-25 12:44:44 +0100528 /*
529 * most users will be overriding ->bi_bdev with a new target,
530 * so we don't set nor calculate new physical/hw segment counts here
531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 bio->bi_sector = bio_src->bi_sector;
533 bio->bi_bdev = bio_src->bi_bdev;
534 bio->bi_flags |= 1 << BIO_CLONED;
535 bio->bi_rw = bio_src->bi_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 bio->bi_vcnt = bio_src->bi_vcnt;
537 bio->bi_size = bio_src->bi_size;
Andrew Mortona5453be2005-07-28 01:07:18 -0700538 bio->bi_idx = bio_src->bi_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200540EXPORT_SYMBOL(__bio_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542/**
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700543 * bio_clone_bioset - clone a bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * @bio: bio to clone
545 * @gfp_mask: allocation priority
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700546 * @bs: bio_set to allocate from
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *
548 * Like __bio_clone, only also allocates the returned bio
549 */
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700550struct bio *bio_clone_bioset(struct bio *bio, gfp_t gfp_mask,
551 struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700553 struct bio *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700555 b = bio_alloc_bioset(gfp_mask, bio->bi_max_vecs, bs);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200556 if (!b)
557 return NULL;
558
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200559 __bio_clone(b, bio);
560
561 if (bio_integrity(bio)) {
562 int ret;
563
Kent Overstreet1e2a410f2012-09-06 15:34:56 -0700564 ret = bio_integrity_clone(b, bio, gfp_mask);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200565
Li Zefan059ea332009-03-09 10:42:45 +0100566 if (ret < 0) {
567 bio_put(b);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200568 return NULL;
Li Zefan059ea332009-03-09 10:42:45 +0100569 }
Peter Osterlund36763472005-09-06 15:16:42 -0700570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 return b;
573}
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700574EXPORT_SYMBOL(bio_clone_bioset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576/**
577 * bio_get_nr_vecs - return approx number of vecs
578 * @bdev: I/O target
579 *
580 * Return the approximate number of pages we can send to this target.
581 * There's no guarantee that you will be able to fit this number of pages
582 * into a bio, it does not account for dynamic restrictions that vary
583 * on offset.
584 */
585int bio_get_nr_vecs(struct block_device *bdev)
586{
Jens Axboe165125e2007-07-24 09:28:11 +0200587 struct request_queue *q = bdev_get_queue(bdev);
Bernd Schubertf908ee92012-05-11 16:36:44 +0200588 int nr_pages;
589
590 nr_pages = min_t(unsigned,
Kent Overstreet5abebfd2012-02-08 22:07:18 +0100591 queue_max_segments(q),
592 queue_max_sectors(q) / (PAGE_SIZE >> 9) + 1);
Bernd Schubertf908ee92012-05-11 16:36:44 +0200593
594 return min_t(unsigned, nr_pages, BIO_MAX_PAGES);
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200597EXPORT_SYMBOL(bio_get_nr_vecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Jens Axboe165125e2007-07-24 09:28:11 +0200599static int __bio_add_page(struct request_queue *q, struct bio *bio, struct page
Mike Christiedefd94b2005-12-05 02:37:06 -0600600 *page, unsigned int len, unsigned int offset,
601 unsigned short max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 int retried_segments = 0;
604 struct bio_vec *bvec;
605
606 /*
607 * cloned bio must not modify vec list
608 */
609 if (unlikely(bio_flagged(bio, BIO_CLONED)))
610 return 0;
611
Jens Axboe80cfd542006-01-06 09:43:28 +0100612 if (((bio->bi_size + len) >> 9) > max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return 0;
614
Jens Axboe80cfd542006-01-06 09:43:28 +0100615 /*
616 * For filesystems with a blocksize smaller than the pagesize
617 * we will often be called with the same page as last time and
618 * a consecutive offset. Optimize this special case.
619 */
620 if (bio->bi_vcnt > 0) {
621 struct bio_vec *prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
622
623 if (page == prev->bv_page &&
624 offset == prev->bv_offset + prev->bv_len) {
Dmitry Monakhov1d616582010-01-27 22:44:36 +0300625 unsigned int prev_bv_len = prev->bv_len;
Jens Axboe80cfd542006-01-06 09:43:28 +0100626 prev->bv_len += len;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200627
628 if (q->merge_bvec_fn) {
629 struct bvec_merge_data bvm = {
Dmitry Monakhov1d616582010-01-27 22:44:36 +0300630 /* prev_bvec is already charged in
631 bi_size, discharge it in order to
632 simulate merging updated prev_bvec
633 as new bvec. */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200634 .bi_bdev = bio->bi_bdev,
635 .bi_sector = bio->bi_sector,
Dmitry Monakhov1d616582010-01-27 22:44:36 +0300636 .bi_size = bio->bi_size - prev_bv_len,
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200637 .bi_rw = bio->bi_rw,
638 };
639
Dmitry Monakhov8bf8c372010-03-03 06:28:06 +0300640 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len) {
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200641 prev->bv_len -= len;
642 return 0;
643 }
Jens Axboe80cfd542006-01-06 09:43:28 +0100644 }
645
646 goto done;
647 }
648 }
649
650 if (bio->bi_vcnt >= bio->bi_max_vecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return 0;
652
653 /*
654 * we might lose a segment or two here, but rather that than
655 * make this too complex.
656 */
657
Martin K. Petersen8a783622010-02-26 00:20:39 -0500658 while (bio->bi_phys_segments >= queue_max_segments(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 if (retried_segments)
661 return 0;
662
663 retried_segments = 1;
664 blk_recount_segments(q, bio);
665 }
666
667 /*
668 * setup the new entry, we might clear it again later if we
669 * cannot add the page
670 */
671 bvec = &bio->bi_io_vec[bio->bi_vcnt];
672 bvec->bv_page = page;
673 bvec->bv_len = len;
674 bvec->bv_offset = offset;
675
676 /*
677 * if queue has other restrictions (eg varying max sector size
678 * depending on offset), it can specify a merge_bvec_fn in the
679 * queue to get further control
680 */
681 if (q->merge_bvec_fn) {
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200682 struct bvec_merge_data bvm = {
683 .bi_bdev = bio->bi_bdev,
684 .bi_sector = bio->bi_sector,
685 .bi_size = bio->bi_size,
686 .bi_rw = bio->bi_rw,
687 };
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /*
690 * merge_bvec_fn() returns number of bytes it can accept
691 * at this offset
692 */
Dmitry Monakhov8bf8c372010-03-03 06:28:06 +0300693 if (q->merge_bvec_fn(q, &bvm, bvec) < bvec->bv_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 bvec->bv_page = NULL;
695 bvec->bv_len = 0;
696 bvec->bv_offset = 0;
697 return 0;
698 }
699 }
700
701 /* If we may be able to merge these biovecs, force a recount */
Mikulas Patockab8b3e162008-08-15 10:15:19 +0200702 if (bio->bi_vcnt && (BIOVEC_PHYS_MERGEABLE(bvec-1, bvec)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
704
705 bio->bi_vcnt++;
706 bio->bi_phys_segments++;
Jens Axboe80cfd542006-01-06 09:43:28 +0100707 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 bio->bi_size += len;
709 return len;
710}
711
712/**
Mike Christie6e68af62005-11-11 05:30:27 -0600713 * bio_add_pc_page - attempt to add page to bio
Jens Axboefddfdea2006-01-31 15:24:34 +0100714 * @q: the target queue
Mike Christie6e68af62005-11-11 05:30:27 -0600715 * @bio: destination bio
716 * @page: page to add
717 * @len: vec entry length
718 * @offset: vec entry offset
719 *
720 * Attempt to add a page to the bio_vec maplist. This can fail for a
Andreas Gruenbacherc6428082011-05-27 14:52:09 +0200721 * number of reasons, such as the bio being full or target block device
722 * limitations. The target block device must allow bio's up to PAGE_SIZE,
723 * so it is always possible to add a single page to an empty bio.
724 *
725 * This should only be used by REQ_PC bios.
Mike Christie6e68af62005-11-11 05:30:27 -0600726 */
Jens Axboe165125e2007-07-24 09:28:11 +0200727int bio_add_pc_page(struct request_queue *q, struct bio *bio, struct page *page,
Mike Christie6e68af62005-11-11 05:30:27 -0600728 unsigned int len, unsigned int offset)
729{
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400730 return __bio_add_page(q, bio, page, len, offset,
731 queue_max_hw_sectors(q));
Mike Christie6e68af62005-11-11 05:30:27 -0600732}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200733EXPORT_SYMBOL(bio_add_pc_page);
Mike Christie6e68af62005-11-11 05:30:27 -0600734
735/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * bio_add_page - attempt to add page to bio
737 * @bio: destination bio
738 * @page: page to add
739 * @len: vec entry length
740 * @offset: vec entry offset
741 *
742 * Attempt to add a page to the bio_vec maplist. This can fail for a
Andreas Gruenbacherc6428082011-05-27 14:52:09 +0200743 * number of reasons, such as the bio being full or target block device
744 * limitations. The target block device must allow bio's up to PAGE_SIZE,
745 * so it is always possible to add a single page to an empty bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 */
747int bio_add_page(struct bio *bio, struct page *page, unsigned int len,
748 unsigned int offset)
749{
Mike Christiedefd94b2005-12-05 02:37:06 -0600750 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400751 return __bio_add_page(q, bio, page, len, offset, queue_max_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200753EXPORT_SYMBOL(bio_add_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Kent Overstreet9e882242012-09-10 14:41:12 -0700755struct submit_bio_ret {
756 struct completion event;
757 int error;
758};
759
760static void submit_bio_wait_endio(struct bio *bio, int error)
761{
762 struct submit_bio_ret *ret = bio->bi_private;
763
764 ret->error = error;
765 complete(&ret->event);
766}
767
768/**
769 * submit_bio_wait - submit a bio, and wait until it completes
770 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
771 * @bio: The &struct bio which describes the I/O
772 *
773 * Simple wrapper around submit_bio(). Returns 0 on success, or the error from
774 * bio_endio() on failure.
775 */
776int submit_bio_wait(int rw, struct bio *bio)
777{
778 struct submit_bio_ret ret;
779
780 rw |= REQ_SYNC;
781 init_completion(&ret.event);
782 bio->bi_private = &ret;
783 bio->bi_end_io = submit_bio_wait_endio;
784 submit_bio(rw, bio);
785 wait_for_completion(&ret.event);
786
787 return ret.error;
788}
789EXPORT_SYMBOL(submit_bio_wait);
790
Kent Overstreet054bdf62012-09-28 13:17:55 -0700791/**
792 * bio_advance - increment/complete a bio by some number of bytes
793 * @bio: bio to advance
794 * @bytes: number of bytes to complete
795 *
796 * This updates bi_sector, bi_size and bi_idx; if the number of bytes to
797 * complete doesn't align with a bvec boundary, then bv_len and bv_offset will
798 * be updated on the last bvec as well.
799 *
800 * @bio will then represent the remaining, uncompleted portion of the io.
801 */
802void bio_advance(struct bio *bio, unsigned bytes)
803{
804 if (bio_integrity(bio))
805 bio_integrity_advance(bio, bytes);
806
807 bio->bi_sector += bytes >> 9;
808 bio->bi_size -= bytes;
809
810 if (bio->bi_rw & BIO_NO_ADVANCE_ITER_MASK)
811 return;
812
813 while (bytes) {
814 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
815 WARN_ONCE(1, "bio idx %d >= vcnt %d\n",
816 bio->bi_idx, bio->bi_vcnt);
817 break;
818 }
819
820 if (bytes >= bio_iovec(bio)->bv_len) {
821 bytes -= bio_iovec(bio)->bv_len;
822 bio->bi_idx++;
823 } else {
824 bio_iovec(bio)->bv_len -= bytes;
825 bio_iovec(bio)->bv_offset += bytes;
826 bytes = 0;
827 }
828 }
829}
830EXPORT_SYMBOL(bio_advance);
831
Kent Overstreet16ac3d62012-09-10 13:57:51 -0700832/**
833 * bio_copy_data - copy contents of data buffers from one chain of bios to
834 * another
835 * @src: source bio list
836 * @dst: destination bio list
837 *
838 * If @src and @dst are single bios, bi_next must be NULL - otherwise, treats
839 * @src and @dst as linked lists of bios.
840 *
841 * Stops when it reaches the end of either @src or @dst - that is, copies
842 * min(src->bi_size, dst->bi_size) bytes (or the equivalent for lists of bios).
843 */
844void bio_copy_data(struct bio *dst, struct bio *src)
845{
846 struct bio_vec *src_bv, *dst_bv;
847 unsigned src_offset, dst_offset, bytes;
848 void *src_p, *dst_p;
849
850 src_bv = bio_iovec(src);
851 dst_bv = bio_iovec(dst);
852
853 src_offset = src_bv->bv_offset;
854 dst_offset = dst_bv->bv_offset;
855
856 while (1) {
857 if (src_offset == src_bv->bv_offset + src_bv->bv_len) {
858 src_bv++;
859 if (src_bv == bio_iovec_idx(src, src->bi_vcnt)) {
860 src = src->bi_next;
861 if (!src)
862 break;
863
864 src_bv = bio_iovec(src);
865 }
866
867 src_offset = src_bv->bv_offset;
868 }
869
870 if (dst_offset == dst_bv->bv_offset + dst_bv->bv_len) {
871 dst_bv++;
872 if (dst_bv == bio_iovec_idx(dst, dst->bi_vcnt)) {
873 dst = dst->bi_next;
874 if (!dst)
875 break;
876
877 dst_bv = bio_iovec(dst);
878 }
879
880 dst_offset = dst_bv->bv_offset;
881 }
882
883 bytes = min(dst_bv->bv_offset + dst_bv->bv_len - dst_offset,
884 src_bv->bv_offset + src_bv->bv_len - src_offset);
885
886 src_p = kmap_atomic(src_bv->bv_page);
887 dst_p = kmap_atomic(dst_bv->bv_page);
888
889 memcpy(dst_p + dst_bv->bv_offset,
890 src_p + src_bv->bv_offset,
891 bytes);
892
893 kunmap_atomic(dst_p);
894 kunmap_atomic(src_p);
895
896 src_offset += bytes;
897 dst_offset += bytes;
898 }
899}
900EXPORT_SYMBOL(bio_copy_data);
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902struct bio_map_data {
903 struct bio_vec *iovecs;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200904 struct sg_iovec *sgvecs;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900905 int nr_sgvecs;
906 int is_our_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907};
908
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200909static void bio_set_map_data(struct bio_map_data *bmd, struct bio *bio,
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900910 struct sg_iovec *iov, int iov_count,
911 int is_our_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 memcpy(bmd->iovecs, bio->bi_io_vec, sizeof(struct bio_vec) * bio->bi_vcnt);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200914 memcpy(bmd->sgvecs, iov, sizeof(struct sg_iovec) * iov_count);
915 bmd->nr_sgvecs = iov_count;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900916 bmd->is_our_pages = is_our_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 bio->bi_private = bmd;
918}
919
920static void bio_free_map_data(struct bio_map_data *bmd)
921{
922 kfree(bmd->iovecs);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200923 kfree(bmd->sgvecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 kfree(bmd);
925}
926
Dan Carpenter121f0992011-11-16 09:21:50 +0100927static struct bio_map_data *bio_alloc_map_data(int nr_segs,
928 unsigned int iov_count,
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200929 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Jens Axboef3f63c12010-10-29 11:46:56 -0600931 struct bio_map_data *bmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jens Axboef3f63c12010-10-29 11:46:56 -0600933 if (iov_count > UIO_MAXIOV)
934 return NULL;
935
936 bmd = kmalloc(sizeof(*bmd), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (!bmd)
938 return NULL;
939
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200940 bmd->iovecs = kmalloc(sizeof(struct bio_vec) * nr_segs, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200941 if (!bmd->iovecs) {
942 kfree(bmd);
943 return NULL;
944 }
945
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200946 bmd->sgvecs = kmalloc(sizeof(struct sg_iovec) * iov_count, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200947 if (bmd->sgvecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return bmd;
949
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200950 kfree(bmd->iovecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 kfree(bmd);
952 return NULL;
953}
954
FUJITA Tomonoriaefcc282008-08-25 20:36:08 +0200955static int __bio_copy_iov(struct bio *bio, struct bio_vec *iovecs,
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200956 struct sg_iovec *iov, int iov_count,
957 int to_user, int from_user, int do_free_page)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200958{
959 int ret = 0, i;
960 struct bio_vec *bvec;
961 int iov_idx = 0;
962 unsigned int iov_off = 0;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200963
Kent Overstreetd74c6d52013-02-06 12:23:11 -0800964 bio_for_each_segment_all(bvec, bio, i) {
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200965 char *bv_addr = page_address(bvec->bv_page);
FUJITA Tomonoriaefcc282008-08-25 20:36:08 +0200966 unsigned int bv_len = iovecs[i].bv_len;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200967
968 while (bv_len && iov_idx < iov_count) {
969 unsigned int bytes;
Michal Simek0e0c6212009-06-10 12:57:07 -0700970 char __user *iov_addr;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200971
972 bytes = min_t(unsigned int,
973 iov[iov_idx].iov_len - iov_off, bv_len);
974 iov_addr = iov[iov_idx].iov_base + iov_off;
975
976 if (!ret) {
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200977 if (to_user)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200978 ret = copy_to_user(iov_addr, bv_addr,
979 bytes);
980
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200981 if (from_user)
982 ret = copy_from_user(bv_addr, iov_addr,
983 bytes);
984
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200985 if (ret)
986 ret = -EFAULT;
987 }
988
989 bv_len -= bytes;
990 bv_addr += bytes;
991 iov_addr += bytes;
992 iov_off += bytes;
993
994 if (iov[iov_idx].iov_len == iov_off) {
995 iov_idx++;
996 iov_off = 0;
997 }
998 }
999
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001000 if (do_free_page)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001001 __free_page(bvec->bv_page);
1002 }
1003
1004 return ret;
1005}
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/**
1008 * bio_uncopy_user - finish previously mapped bio
1009 * @bio: bio being terminated
1010 *
1011 * Free pages allocated from bio_copy_user() and write back data
1012 * to user space in case of a read.
1013 */
1014int bio_uncopy_user(struct bio *bio)
1015{
1016 struct bio_map_data *bmd = bio->bi_private;
FUJITA Tomonori81882762008-09-02 16:20:19 +09001017 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
FUJITA Tomonori81882762008-09-02 16:20:19 +09001019 if (!bio_flagged(bio, BIO_NULL_MAPPED))
1020 ret = __bio_copy_iov(bio, bmd->iovecs, bmd->sgvecs,
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001021 bmd->nr_sgvecs, bio_data_dir(bio) == READ,
1022 0, bmd->is_our_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 bio_free_map_data(bmd);
1024 bio_put(bio);
1025 return ret;
1026}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001027EXPORT_SYMBOL(bio_uncopy_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029/**
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001030 * bio_copy_user_iov - copy user data to bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 * @q: destination block queue
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001032 * @map_data: pointer to the rq_map_data holding pages (if necessary)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001033 * @iov: the iovec.
1034 * @iov_count: number of elements in the iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001036 * @gfp_mask: memory allocation flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 *
1038 * Prepares and returns a bio for indirect user io, bouncing data
1039 * to/from kernel pages as necessary. Must be paired with
1040 * call bio_uncopy_user() on io completion.
1041 */
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001042struct bio *bio_copy_user_iov(struct request_queue *q,
1043 struct rq_map_data *map_data,
1044 struct sg_iovec *iov, int iov_count,
1045 int write_to_vm, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 struct bio_map_data *bmd;
1048 struct bio_vec *bvec;
1049 struct page *page;
1050 struct bio *bio;
1051 int i, ret;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001052 int nr_pages = 0;
1053 unsigned int len = 0;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001054 unsigned int offset = map_data ? map_data->offset & ~PAGE_MASK : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001056 for (i = 0; i < iov_count; i++) {
1057 unsigned long uaddr;
1058 unsigned long end;
1059 unsigned long start;
1060
1061 uaddr = (unsigned long)iov[i].iov_base;
1062 end = (uaddr + iov[i].iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1063 start = uaddr >> PAGE_SHIFT;
1064
Jens Axboecb4644c2010-11-10 14:36:25 +01001065 /*
1066 * Overflow, abort
1067 */
1068 if (end < start)
1069 return ERR_PTR(-EINVAL);
1070
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001071 nr_pages += end - start;
1072 len += iov[i].iov_len;
1073 }
1074
FUJITA Tomonori69838722009-04-28 20:24:29 +02001075 if (offset)
1076 nr_pages++;
1077
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001078 bmd = bio_alloc_map_data(nr_pages, iov_count, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (!bmd)
1080 return ERR_PTR(-ENOMEM);
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 ret = -ENOMEM;
Tejun Heoa9e9dc22009-04-15 22:10:27 +09001083 bio = bio_kmalloc(gfp_mask, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (!bio)
1085 goto out_bmd;
1086
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001087 if (!write_to_vm)
1088 bio->bi_rw |= REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 ret = 0;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001091
1092 if (map_data) {
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +09001093 nr_pages = 1 << map_data->page_order;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001094 i = map_data->offset / PAGE_SIZE;
1095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 while (len) {
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +09001097 unsigned int bytes = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001099 bytes -= offset;
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (bytes > len)
1102 bytes = len;
1103
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001104 if (map_data) {
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +09001105 if (i == map_data->nr_entries * nr_pages) {
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001106 ret = -ENOMEM;
1107 break;
1108 }
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +09001109
1110 page = map_data->pages[i / nr_pages];
1111 page += (i % nr_pages);
1112
1113 i++;
1114 } else {
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001115 page = alloc_page(q->bounce_gfp | gfp_mask);
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +09001116 if (!page) {
1117 ret = -ENOMEM;
1118 break;
1119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001122 if (bio_add_pc_page(q, bio, page, bytes, offset) < bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 len -= bytes;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001126 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128
1129 if (ret)
1130 goto cleanup;
1131
1132 /*
1133 * success
1134 */
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001135 if ((!write_to_vm && (!map_data || !map_data->null_mapped)) ||
1136 (map_data && map_data->from_user)) {
1137 ret = __bio_copy_iov(bio, bio->bi_io_vec, iov, iov_count, 0, 1, 0);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001138 if (ret)
1139 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001142 bio_set_map_data(bmd, bio, iov, iov_count, map_data ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return bio;
1144cleanup:
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001145 if (!map_data)
Kent Overstreetd74c6d52013-02-06 12:23:11 -08001146 bio_for_each_segment_all(bvec, bio, i)
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001147 __free_page(bvec->bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 bio_put(bio);
1150out_bmd:
1151 bio_free_map_data(bmd);
1152 return ERR_PTR(ret);
1153}
1154
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001155/**
1156 * bio_copy_user - copy user data to bio
1157 * @q: destination block queue
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001158 * @map_data: pointer to the rq_map_data holding pages (if necessary)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001159 * @uaddr: start of user address
1160 * @len: length in bytes
1161 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001162 * @gfp_mask: memory allocation flags
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001163 *
1164 * Prepares and returns a bio for indirect user io, bouncing data
1165 * to/from kernel pages as necessary. Must be paired with
1166 * call bio_uncopy_user() on io completion.
1167 */
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001168struct bio *bio_copy_user(struct request_queue *q, struct rq_map_data *map_data,
1169 unsigned long uaddr, unsigned int len,
1170 int write_to_vm, gfp_t gfp_mask)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001171{
1172 struct sg_iovec iov;
1173
1174 iov.iov_base = (void __user *)uaddr;
1175 iov.iov_len = len;
1176
FUJITA Tomonori152e2832008-08-28 16:17:06 +09001177 return bio_copy_user_iov(q, map_data, &iov, 1, write_to_vm, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001178}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001179EXPORT_SYMBOL(bio_copy_user);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +02001180
Jens Axboe165125e2007-07-24 09:28:11 +02001181static struct bio *__bio_map_user_iov(struct request_queue *q,
James Bottomley f1970ba2005-06-20 14:06:52 +02001182 struct block_device *bdev,
1183 struct sg_iovec *iov, int iov_count,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001184 int write_to_vm, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
James Bottomley f1970ba2005-06-20 14:06:52 +02001186 int i, j;
1187 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 struct page **pages;
1189 struct bio *bio;
James Bottomley f1970ba2005-06-20 14:06:52 +02001190 int cur_page = 0;
1191 int ret, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
James Bottomley f1970ba2005-06-20 14:06:52 +02001193 for (i = 0; i < iov_count; i++) {
1194 unsigned long uaddr = (unsigned long)iov[i].iov_base;
1195 unsigned long len = iov[i].iov_len;
1196 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1197 unsigned long start = uaddr >> PAGE_SHIFT;
1198
Jens Axboecb4644c2010-11-10 14:36:25 +01001199 /*
1200 * Overflow, abort
1201 */
1202 if (end < start)
1203 return ERR_PTR(-EINVAL);
1204
James Bottomley f1970ba2005-06-20 14:06:52 +02001205 nr_pages += end - start;
1206 /*
Mike Christiead2d7222006-12-01 10:40:20 +01001207 * buffer must be aligned to at least hardsector size for now
James Bottomley f1970ba2005-06-20 14:06:52 +02001208 */
Mike Christiead2d7222006-12-01 10:40:20 +01001209 if (uaddr & queue_dma_alignment(q))
James Bottomley f1970ba2005-06-20 14:06:52 +02001210 return ERR_PTR(-EINVAL);
1211 }
1212
1213 if (!nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return ERR_PTR(-EINVAL);
1215
Tejun Heoa9e9dc22009-04-15 22:10:27 +09001216 bio = bio_kmalloc(gfp_mask, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (!bio)
1218 return ERR_PTR(-ENOMEM);
1219
1220 ret = -ENOMEM;
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001221 pages = kcalloc(nr_pages, sizeof(struct page *), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (!pages)
1223 goto out;
1224
James Bottomley f1970ba2005-06-20 14:06:52 +02001225 for (i = 0; i < iov_count; i++) {
1226 unsigned long uaddr = (unsigned long)iov[i].iov_base;
1227 unsigned long len = iov[i].iov_len;
1228 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1229 unsigned long start = uaddr >> PAGE_SHIFT;
1230 const int local_nr_pages = end - start;
1231 const int page_limit = cur_page + local_nr_pages;
Jens Axboecb4644c2010-11-10 14:36:25 +01001232
Nick Pigginf5dd33c2008-07-25 19:45:25 -07001233 ret = get_user_pages_fast(uaddr, local_nr_pages,
1234 write_to_vm, &pages[cur_page]);
Jens Axboe99172152006-06-16 13:02:29 +02001235 if (ret < local_nr_pages) {
1236 ret = -EFAULT;
James Bottomley f1970ba2005-06-20 14:06:52 +02001237 goto out_unmap;
Jens Axboe99172152006-06-16 13:02:29 +02001238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
James Bottomley f1970ba2005-06-20 14:06:52 +02001240 offset = uaddr & ~PAGE_MASK;
1241 for (j = cur_page; j < page_limit; j++) {
1242 unsigned int bytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
James Bottomley f1970ba2005-06-20 14:06:52 +02001244 if (len <= 0)
1245 break;
1246
1247 if (bytes > len)
1248 bytes = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
James Bottomley f1970ba2005-06-20 14:06:52 +02001250 /*
1251 * sorry...
1252 */
Mike Christiedefd94b2005-12-05 02:37:06 -06001253 if (bio_add_pc_page(q, bio, pages[j], bytes, offset) <
1254 bytes)
James Bottomley f1970ba2005-06-20 14:06:52 +02001255 break;
1256
1257 len -= bytes;
1258 offset = 0;
1259 }
1260
1261 cur_page = j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 /*
James Bottomley f1970ba2005-06-20 14:06:52 +02001263 * release the pages we didn't map into the bio, if any
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 */
James Bottomley f1970ba2005-06-20 14:06:52 +02001265 while (j < page_limit)
1266 page_cache_release(pages[j++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 kfree(pages);
1270
1271 /*
1272 * set data direction, and check if mapped pages need bouncing
1273 */
1274 if (!write_to_vm)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001275 bio->bi_rw |= REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
James Bottomley f1970ba2005-06-20 14:06:52 +02001277 bio->bi_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 bio->bi_flags |= (1 << BIO_USER_MAPPED);
1279 return bio;
James Bottomley f1970ba2005-06-20 14:06:52 +02001280
1281 out_unmap:
1282 for (i = 0; i < nr_pages; i++) {
1283 if(!pages[i])
1284 break;
1285 page_cache_release(pages[i]);
1286 }
1287 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 kfree(pages);
1289 bio_put(bio);
1290 return ERR_PTR(ret);
1291}
1292
1293/**
1294 * bio_map_user - map user address into bio
Jens Axboe165125e2007-07-24 09:28:11 +02001295 * @q: the struct request_queue for the bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 * @bdev: destination block device
1297 * @uaddr: start of user address
1298 * @len: length in bytes
1299 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001300 * @gfp_mask: memory allocation flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 *
1302 * Map the user space address into a bio suitable for io to a block
1303 * device. Returns an error pointer in case of error.
1304 */
Jens Axboe165125e2007-07-24 09:28:11 +02001305struct bio *bio_map_user(struct request_queue *q, struct block_device *bdev,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001306 unsigned long uaddr, unsigned int len, int write_to_vm,
1307 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
James Bottomley f1970ba2005-06-20 14:06:52 +02001309 struct sg_iovec iov;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
viro@ZenIV.linux.org.uk3f703532005-09-09 16:53:56 +01001311 iov.iov_base = (void __user *)uaddr;
James Bottomley f1970ba2005-06-20 14:06:52 +02001312 iov.iov_len = len;
1313
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001314 return bio_map_user_iov(q, bdev, &iov, 1, write_to_vm, gfp_mask);
James Bottomley f1970ba2005-06-20 14:06:52 +02001315}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001316EXPORT_SYMBOL(bio_map_user);
James Bottomley f1970ba2005-06-20 14:06:52 +02001317
1318/**
1319 * bio_map_user_iov - map user sg_iovec table into bio
Jens Axboe165125e2007-07-24 09:28:11 +02001320 * @q: the struct request_queue for the bio
James Bottomley f1970ba2005-06-20 14:06:52 +02001321 * @bdev: destination block device
1322 * @iov: the iovec.
1323 * @iov_count: number of elements in the iovec
1324 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001325 * @gfp_mask: memory allocation flags
James Bottomley f1970ba2005-06-20 14:06:52 +02001326 *
1327 * Map the user space address into a bio suitable for io to a block
1328 * device. Returns an error pointer in case of error.
1329 */
Jens Axboe165125e2007-07-24 09:28:11 +02001330struct bio *bio_map_user_iov(struct request_queue *q, struct block_device *bdev,
James Bottomley f1970ba2005-06-20 14:06:52 +02001331 struct sg_iovec *iov, int iov_count,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001332 int write_to_vm, gfp_t gfp_mask)
James Bottomley f1970ba2005-06-20 14:06:52 +02001333{
1334 struct bio *bio;
James Bottomley f1970ba2005-06-20 14:06:52 +02001335
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001336 bio = __bio_map_user_iov(q, bdev, iov, iov_count, write_to_vm,
1337 gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (IS_ERR(bio))
1339 return bio;
1340
1341 /*
1342 * subtle -- if __bio_map_user() ended up bouncing a bio,
1343 * it would normally disappear when its bi_end_io is run.
1344 * however, we need it for the unmap, so grab an extra
1345 * reference to it
1346 */
1347 bio_get(bio);
1348
Mike Christie0e75f902006-12-01 10:40:55 +01001349 return bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352static void __bio_unmap_user(struct bio *bio)
1353{
1354 struct bio_vec *bvec;
1355 int i;
1356
1357 /*
1358 * make sure we dirty pages we wrote to
1359 */
Kent Overstreetd74c6d52013-02-06 12:23:11 -08001360 bio_for_each_segment_all(bvec, bio, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (bio_data_dir(bio) == READ)
1362 set_page_dirty_lock(bvec->bv_page);
1363
1364 page_cache_release(bvec->bv_page);
1365 }
1366
1367 bio_put(bio);
1368}
1369
1370/**
1371 * bio_unmap_user - unmap a bio
1372 * @bio: the bio being unmapped
1373 *
1374 * Unmap a bio previously mapped by bio_map_user(). Must be called with
1375 * a process context.
1376 *
1377 * bio_unmap_user() may sleep.
1378 */
1379void bio_unmap_user(struct bio *bio)
1380{
1381 __bio_unmap_user(bio);
1382 bio_put(bio);
1383}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001384EXPORT_SYMBOL(bio_unmap_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
NeilBrown6712ecf2007-09-27 12:47:43 +02001386static void bio_map_kern_endio(struct bio *bio, int err)
Jens Axboeb8238252005-06-20 14:05:27 +02001387{
Jens Axboeb8238252005-06-20 14:05:27 +02001388 bio_put(bio);
Jens Axboeb8238252005-06-20 14:05:27 +02001389}
1390
Jens Axboe165125e2007-07-24 09:28:11 +02001391static struct bio *__bio_map_kern(struct request_queue *q, void *data,
Al Viro27496a82005-10-21 03:20:48 -04001392 unsigned int len, gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +02001393{
1394 unsigned long kaddr = (unsigned long)data;
1395 unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1396 unsigned long start = kaddr >> PAGE_SHIFT;
1397 const int nr_pages = end - start;
1398 int offset, i;
1399 struct bio *bio;
1400
Tejun Heoa9e9dc22009-04-15 22:10:27 +09001401 bio = bio_kmalloc(gfp_mask, nr_pages);
Mike Christie df46b9a2005-06-20 14:04:44 +02001402 if (!bio)
1403 return ERR_PTR(-ENOMEM);
1404
1405 offset = offset_in_page(kaddr);
1406 for (i = 0; i < nr_pages; i++) {
1407 unsigned int bytes = PAGE_SIZE - offset;
1408
1409 if (len <= 0)
1410 break;
1411
1412 if (bytes > len)
1413 bytes = len;
1414
Mike Christiedefd94b2005-12-05 02:37:06 -06001415 if (bio_add_pc_page(q, bio, virt_to_page(data), bytes,
1416 offset) < bytes)
Mike Christie df46b9a2005-06-20 14:04:44 +02001417 break;
1418
1419 data += bytes;
1420 len -= bytes;
1421 offset = 0;
1422 }
1423
Jens Axboeb8238252005-06-20 14:05:27 +02001424 bio->bi_end_io = bio_map_kern_endio;
Mike Christie df46b9a2005-06-20 14:04:44 +02001425 return bio;
1426}
1427
1428/**
1429 * bio_map_kern - map kernel address into bio
Jens Axboe165125e2007-07-24 09:28:11 +02001430 * @q: the struct request_queue for the bio
Mike Christie df46b9a2005-06-20 14:04:44 +02001431 * @data: pointer to buffer to map
1432 * @len: length in bytes
1433 * @gfp_mask: allocation flags for bio allocation
1434 *
1435 * Map the kernel address into a bio suitable for io to a block
1436 * device. Returns an error pointer in case of error.
1437 */
Jens Axboe165125e2007-07-24 09:28:11 +02001438struct bio *bio_map_kern(struct request_queue *q, void *data, unsigned int len,
Al Viro27496a82005-10-21 03:20:48 -04001439 gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +02001440{
1441 struct bio *bio;
1442
1443 bio = __bio_map_kern(q, data, len, gfp_mask);
1444 if (IS_ERR(bio))
1445 return bio;
1446
1447 if (bio->bi_size == len)
1448 return bio;
1449
1450 /*
1451 * Don't support partial mappings.
1452 */
1453 bio_put(bio);
1454 return ERR_PTR(-EINVAL);
1455}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001456EXPORT_SYMBOL(bio_map_kern);
Mike Christie df46b9a2005-06-20 14:04:44 +02001457
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001458static void bio_copy_kern_endio(struct bio *bio, int err)
1459{
1460 struct bio_vec *bvec;
1461 const int read = bio_data_dir(bio) == READ;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001462 struct bio_map_data *bmd = bio->bi_private;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001463 int i;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001464 char *p = bmd->sgvecs[0].iov_base;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001465
Kent Overstreetd74c6d52013-02-06 12:23:11 -08001466 bio_for_each_segment_all(bvec, bio, i) {
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001467 char *addr = page_address(bvec->bv_page);
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001468 int len = bmd->iovecs[i].bv_len;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001469
Tejun Heo4fc981e2009-05-19 18:33:06 +09001470 if (read)
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001471 memcpy(p, addr, len);
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001472
1473 __free_page(bvec->bv_page);
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001474 p += len;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001475 }
1476
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001477 bio_free_map_data(bmd);
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001478 bio_put(bio);
1479}
1480
1481/**
1482 * bio_copy_kern - copy kernel address into bio
1483 * @q: the struct request_queue for the bio
1484 * @data: pointer to buffer to copy
1485 * @len: length in bytes
1486 * @gfp_mask: allocation flags for bio and page allocation
Randy Dunlapffee0252008-04-30 09:08:54 +02001487 * @reading: data direction is READ
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001488 *
1489 * copy the kernel address into a bio suitable for io to a block
1490 * device. Returns an error pointer in case of error.
1491 */
1492struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len,
1493 gfp_t gfp_mask, int reading)
1494{
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001495 struct bio *bio;
1496 struct bio_vec *bvec;
FUJITA Tomonori4d8ab622008-08-28 15:05:57 +09001497 int i;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001498
FUJITA Tomonori4d8ab622008-08-28 15:05:57 +09001499 bio = bio_copy_user(q, NULL, (unsigned long)data, len, 1, gfp_mask);
1500 if (IS_ERR(bio))
1501 return bio;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001502
1503 if (!reading) {
1504 void *p = data;
1505
Kent Overstreetd74c6d52013-02-06 12:23:11 -08001506 bio_for_each_segment_all(bvec, bio, i) {
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001507 char *addr = page_address(bvec->bv_page);
1508
1509 memcpy(addr, p, bvec->bv_len);
1510 p += bvec->bv_len;
1511 }
1512 }
1513
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001514 bio->bi_end_io = bio_copy_kern_endio;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001515
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001516 return bio;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001517}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001518EXPORT_SYMBOL(bio_copy_kern);
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520/*
1521 * bio_set_pages_dirty() and bio_check_pages_dirty() are support functions
1522 * for performing direct-IO in BIOs.
1523 *
1524 * The problem is that we cannot run set_page_dirty() from interrupt context
1525 * because the required locks are not interrupt-safe. So what we can do is to
1526 * mark the pages dirty _before_ performing IO. And in interrupt context,
1527 * check that the pages are still dirty. If so, fine. If not, redirty them
1528 * in process context.
1529 *
1530 * We special-case compound pages here: normally this means reads into hugetlb
1531 * pages. The logic in here doesn't really work right for compound pages
1532 * because the VM does not uniformly chase down the head page in all cases.
1533 * But dirtiness of compound pages is pretty meaningless anyway: the VM doesn't
1534 * handle them at all. So we skip compound pages here at an early stage.
1535 *
1536 * Note that this code is very hard to test under normal circumstances because
1537 * direct-io pins the pages with get_user_pages(). This makes
1538 * is_page_cache_freeable return false, and the VM will not clean the pages.
Artem Bityutskiy0d5c3eb2012-07-25 18:12:08 +03001539 * But other code (eg, flusher threads) could clean the pages if they are mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 * pagecache.
1541 *
1542 * Simply disabling the call to bio_set_pages_dirty() is a good way to test the
1543 * deferred bio dirtying paths.
1544 */
1545
1546/*
1547 * bio_set_pages_dirty() will mark all the bio's pages as dirty.
1548 */
1549void bio_set_pages_dirty(struct bio *bio)
1550{
Kent Overstreetcb34e052012-09-05 15:22:02 -07001551 struct bio_vec *bvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 int i;
1553
Kent Overstreetcb34e052012-09-05 15:22:02 -07001554 bio_for_each_segment_all(bvec, bio, i) {
1555 struct page *page = bvec->bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 if (page && !PageCompound(page))
1558 set_page_dirty_lock(page);
1559 }
1560}
1561
Adrian Bunk86b6c7a2008-02-18 13:48:32 +01001562static void bio_release_pages(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Kent Overstreetcb34e052012-09-05 15:22:02 -07001564 struct bio_vec *bvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 int i;
1566
Kent Overstreetcb34e052012-09-05 15:22:02 -07001567 bio_for_each_segment_all(bvec, bio, i) {
1568 struct page *page = bvec->bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 if (page)
1571 put_page(page);
1572 }
1573}
1574
1575/*
1576 * bio_check_pages_dirty() will check that all the BIO's pages are still dirty.
1577 * If they are, then fine. If, however, some pages are clean then they must
1578 * have been written out during the direct-IO read. So we take another ref on
1579 * the BIO and the offending pages and re-dirty the pages in process context.
1580 *
1581 * It is expected that bio_check_pages_dirty() will wholly own the BIO from
1582 * here on. It will run one page_cache_release() against each page and will
1583 * run one bio_put() against the BIO.
1584 */
1585
David Howells65f27f32006-11-22 14:55:48 +00001586static void bio_dirty_fn(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
David Howells65f27f32006-11-22 14:55:48 +00001588static DECLARE_WORK(bio_dirty_work, bio_dirty_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589static DEFINE_SPINLOCK(bio_dirty_lock);
1590static struct bio *bio_dirty_list;
1591
1592/*
1593 * This runs in process context
1594 */
David Howells65f27f32006-11-22 14:55:48 +00001595static void bio_dirty_fn(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 unsigned long flags;
1598 struct bio *bio;
1599
1600 spin_lock_irqsave(&bio_dirty_lock, flags);
1601 bio = bio_dirty_list;
1602 bio_dirty_list = NULL;
1603 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1604
1605 while (bio) {
1606 struct bio *next = bio->bi_private;
1607
1608 bio_set_pages_dirty(bio);
1609 bio_release_pages(bio);
1610 bio_put(bio);
1611 bio = next;
1612 }
1613}
1614
1615void bio_check_pages_dirty(struct bio *bio)
1616{
Kent Overstreetcb34e052012-09-05 15:22:02 -07001617 struct bio_vec *bvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 int nr_clean_pages = 0;
1619 int i;
1620
Kent Overstreetcb34e052012-09-05 15:22:02 -07001621 bio_for_each_segment_all(bvec, bio, i) {
1622 struct page *page = bvec->bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 if (PageDirty(page) || PageCompound(page)) {
1625 page_cache_release(page);
Kent Overstreetcb34e052012-09-05 15:22:02 -07001626 bvec->bv_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 } else {
1628 nr_clean_pages++;
1629 }
1630 }
1631
1632 if (nr_clean_pages) {
1633 unsigned long flags;
1634
1635 spin_lock_irqsave(&bio_dirty_lock, flags);
1636 bio->bi_private = bio_dirty_list;
1637 bio_dirty_list = bio;
1638 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1639 schedule_work(&bio_dirty_work);
1640 } else {
1641 bio_put(bio);
1642 }
1643}
1644
Ilya Loginov2d4dc892009-11-26 09:16:19 +01001645#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
1646void bio_flush_dcache_pages(struct bio *bi)
1647{
1648 int i;
1649 struct bio_vec *bvec;
1650
1651 bio_for_each_segment(bvec, bi, i)
1652 flush_dcache_page(bvec->bv_page);
1653}
1654EXPORT_SYMBOL(bio_flush_dcache_pages);
1655#endif
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657/**
1658 * bio_endio - end I/O on a bio
1659 * @bio: bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 * @error: error, if any
1661 *
1662 * Description:
NeilBrown6712ecf2007-09-27 12:47:43 +02001663 * bio_endio() will end I/O on the whole bio. bio_endio() is the
NeilBrown5bb23a62007-09-27 12:46:13 +02001664 * preferred way to end I/O on a bio, it takes care of clearing
1665 * BIO_UPTODATE on error. @error is 0 on success, and and one of the
1666 * established -Exxxx (-EIO, for instance) error values in case
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001667 * something went wrong. No one should call bi_end_io() directly on a
NeilBrown5bb23a62007-09-27 12:46:13 +02001668 * bio unless they own it and thus know that it has an end_io
1669 * function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 **/
NeilBrown6712ecf2007-09-27 12:47:43 +02001671void bio_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 if (error)
1674 clear_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9cc54d42007-09-27 12:46:12 +02001675 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
1676 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Tejun Heo3a366e62013-01-11 13:06:33 -08001678 trace_block_bio_complete(bio, error);
1679
NeilBrown5bb23a62007-09-27 12:46:13 +02001680 if (bio->bi_end_io)
NeilBrown6712ecf2007-09-27 12:47:43 +02001681 bio->bi_end_io(bio, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001683EXPORT_SYMBOL(bio_endio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685void bio_pair_release(struct bio_pair *bp)
1686{
1687 if (atomic_dec_and_test(&bp->cnt)) {
1688 struct bio *master = bp->bio1.bi_private;
1689
NeilBrown6712ecf2007-09-27 12:47:43 +02001690 bio_endio(master, bp->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 mempool_free(bp, bp->bio2.bi_private);
1692 }
1693}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001694EXPORT_SYMBOL(bio_pair_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
NeilBrown6712ecf2007-09-27 12:47:43 +02001696static void bio_pair_end_1(struct bio *bi, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
1698 struct bio_pair *bp = container_of(bi, struct bio_pair, bio1);
1699
1700 if (err)
1701 bp->error = err;
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 bio_pair_release(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704}
1705
NeilBrown6712ecf2007-09-27 12:47:43 +02001706static void bio_pair_end_2(struct bio *bi, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
1708 struct bio_pair *bp = container_of(bi, struct bio_pair, bio2);
1709
1710 if (err)
1711 bp->error = err;
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 bio_pair_release(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
1716/*
Alberto Bertoglic7eee1b2009-01-25 23:36:14 -02001717 * split a bio - only worry about a bio with a single page in its iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 */
Denis ChengRq6feef532008-10-09 08:57:05 +02001719struct bio_pair *bio_split(struct bio *bi, int first_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Denis ChengRq6feef532008-10-09 08:57:05 +02001721 struct bio_pair *bp = mempool_alloc(bio_split_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 if (!bp)
1724 return bp;
1725
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001726 trace_block_split(bdev_get_queue(bi->bi_bdev), bi,
Jens Axboe2056a782006-03-23 20:00:26 +01001727 bi->bi_sector + first_sectors);
1728
Kent Overstreet5b836362012-09-04 15:20:38 -07001729 BUG_ON(bio_segments(bi) > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 atomic_set(&bp->cnt, 3);
1731 bp->error = 0;
1732 bp->bio1 = *bi;
1733 bp->bio2 = *bi;
1734 bp->bio2.bi_sector += first_sectors;
1735 bp->bio2.bi_size -= first_sectors << 9;
1736 bp->bio1.bi_size = first_sectors << 9;
1737
Shaohua Li02f39392012-09-28 10:38:48 +02001738 if (bi->bi_vcnt != 0) {
Kent Overstreet5b836362012-09-04 15:20:38 -07001739 bp->bv1 = *bio_iovec(bi);
1740 bp->bv2 = *bio_iovec(bi);
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001741
Shaohua Li02f39392012-09-28 10:38:48 +02001742 if (bio_is_rw(bi)) {
1743 bp->bv2.bv_offset += first_sectors << 9;
1744 bp->bv2.bv_len -= first_sectors << 9;
1745 bp->bv1.bv_len = first_sectors << 9;
1746 }
1747
1748 bp->bio1.bi_io_vec = &bp->bv1;
1749 bp->bio2.bi_io_vec = &bp->bv2;
1750
1751 bp->bio1.bi_max_vecs = 1;
1752 bp->bio2.bi_max_vecs = 1;
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 bp->bio1.bi_end_io = bio_pair_end_1;
1756 bp->bio2.bi_end_io = bio_pair_end_2;
1757
1758 bp->bio1.bi_private = bi;
Denis ChengRq6feef532008-10-09 08:57:05 +02001759 bp->bio2.bi_private = bio_split_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001761 if (bio_integrity(bi))
1762 bio_integrity_split(bi, bp, first_sectors);
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return bp;
1765}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001766EXPORT_SYMBOL(bio_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Martin K. Petersenad3316b2008-10-01 22:42:53 -04001768/**
1769 * bio_sector_offset - Find hardware sector offset in bio
1770 * @bio: bio to inspect
1771 * @index: bio_vec index
1772 * @offset: offset in bv_page
1773 *
1774 * Return the number of hardware sectors between beginning of bio
1775 * and an end point indicated by a bio_vec index and an offset
1776 * within that vector's page.
1777 */
1778sector_t bio_sector_offset(struct bio *bio, unsigned short index,
1779 unsigned int offset)
1780{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001781 unsigned int sector_sz;
Martin K. Petersenad3316b2008-10-01 22:42:53 -04001782 struct bio_vec *bv;
1783 sector_t sectors;
1784 int i;
1785
Martin K. Petersene1defc42009-05-22 17:17:49 -04001786 sector_sz = queue_logical_block_size(bio->bi_bdev->bd_disk->queue);
Martin K. Petersenad3316b2008-10-01 22:42:53 -04001787 sectors = 0;
1788
1789 if (index >= bio->bi_idx)
1790 index = bio->bi_vcnt - 1;
1791
Kent Overstreetd74c6d52013-02-06 12:23:11 -08001792 bio_for_each_segment_all(bv, bio, i) {
Martin K. Petersenad3316b2008-10-01 22:42:53 -04001793 if (i == index) {
1794 if (offset > bv->bv_offset)
1795 sectors += (offset - bv->bv_offset) / sector_sz;
1796 break;
1797 }
1798
1799 sectors += bv->bv_len / sector_sz;
1800 }
1801
1802 return sectors;
1803}
1804EXPORT_SYMBOL(bio_sector_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806/*
1807 * create memory pools for biovec's in a bio_set.
1808 * use the global biovec slabs created for general use.
1809 */
Kent Overstreet9f060e22012-10-12 15:29:33 -07001810mempool_t *biovec_create_pool(struct bio_set *bs, int pool_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
Jens Axboe7ff93452008-12-11 11:53:43 +01001812 struct biovec_slab *bp = bvec_slabs + BIOVEC_MAX_IDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Kent Overstreet9f060e22012-10-12 15:29:33 -07001814 return mempool_create_slab_pool(pool_entries, bp->slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817void bioset_free(struct bio_set *bs)
1818{
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -07001819 if (bs->rescue_workqueue)
1820 destroy_workqueue(bs->rescue_workqueue);
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (bs->bio_pool)
1823 mempool_destroy(bs->bio_pool);
1824
Kent Overstreet9f060e22012-10-12 15:29:33 -07001825 if (bs->bvec_pool)
1826 mempool_destroy(bs->bvec_pool);
1827
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001828 bioset_integrity_free(bs);
Jens Axboebb799ca2008-12-10 15:35:05 +01001829 bio_put_slab(bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 kfree(bs);
1832}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001833EXPORT_SYMBOL(bioset_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Jens Axboebb799ca2008-12-10 15:35:05 +01001835/**
1836 * bioset_create - Create a bio_set
1837 * @pool_size: Number of bio and bio_vecs to cache in the mempool
1838 * @front_pad: Number of bytes to allocate in front of the returned bio
1839 *
1840 * Description:
1841 * Set up a bio_set to be used with @bio_alloc_bioset. Allows the caller
1842 * to ask for a number of bytes to be allocated in front of the bio.
1843 * Front pad allocation is useful for embedding the bio inside
1844 * another structure, to avoid allocating extra data to go with the bio.
1845 * Note that the bio must be embedded at the END of that structure always,
1846 * or things will break badly.
1847 */
1848struct bio_set *bioset_create(unsigned int pool_size, unsigned int front_pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Jens Axboe392ddc32008-12-23 12:42:54 +01001850 unsigned int back_pad = BIO_INLINE_VECS * sizeof(struct bio_vec);
Jens Axboe1b434492008-10-22 20:32:58 +02001851 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Jens Axboe1b434492008-10-22 20:32:58 +02001853 bs = kzalloc(sizeof(*bs), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (!bs)
1855 return NULL;
1856
Jens Axboebb799ca2008-12-10 15:35:05 +01001857 bs->front_pad = front_pad;
Jens Axboe1b434492008-10-22 20:32:58 +02001858
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -07001859 spin_lock_init(&bs->rescue_lock);
1860 bio_list_init(&bs->rescue_list);
1861 INIT_WORK(&bs->rescue_work, bio_alloc_rescue);
1862
Jens Axboe392ddc32008-12-23 12:42:54 +01001863 bs->bio_slab = bio_find_or_create_slab(front_pad + back_pad);
Jens Axboebb799ca2008-12-10 15:35:05 +01001864 if (!bs->bio_slab) {
1865 kfree(bs);
1866 return NULL;
1867 }
1868
1869 bs->bio_pool = mempool_create_slab_pool(pool_size, bs->bio_slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if (!bs->bio_pool)
1871 goto bad;
1872
Kent Overstreet9f060e22012-10-12 15:29:33 -07001873 bs->bvec_pool = biovec_create_pool(bs, pool_size);
1874 if (!bs->bvec_pool)
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -07001875 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Kent Overstreetdf2cb6d2012-09-10 14:33:46 -07001877 bs->rescue_workqueue = alloc_workqueue("bioset", WQ_MEM_RECLAIM, 0);
1878 if (!bs->rescue_workqueue)
1879 goto bad;
1880
1881 return bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882bad:
1883 bioset_free(bs);
1884 return NULL;
1885}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001886EXPORT_SYMBOL(bioset_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Tejun Heo852c7882012-03-05 13:15:27 -08001888#ifdef CONFIG_BLK_CGROUP
1889/**
1890 * bio_associate_current - associate a bio with %current
1891 * @bio: target bio
1892 *
1893 * Associate @bio with %current if it hasn't been associated yet. Block
1894 * layer will treat @bio as if it were issued by %current no matter which
1895 * task actually issues it.
1896 *
1897 * This function takes an extra reference of @task's io_context and blkcg
1898 * which will be put when @bio is released. The caller must own @bio,
1899 * ensure %current->io_context exists, and is responsible for synchronizing
1900 * calls to this function.
1901 */
1902int bio_associate_current(struct bio *bio)
1903{
1904 struct io_context *ioc;
1905 struct cgroup_subsys_state *css;
1906
1907 if (bio->bi_ioc)
1908 return -EBUSY;
1909
1910 ioc = current->io_context;
1911 if (!ioc)
1912 return -ENOENT;
1913
1914 /* acquire active ref on @ioc and associate */
1915 get_io_context_active(ioc);
1916 bio->bi_ioc = ioc;
1917
1918 /* associate blkcg if exists */
1919 rcu_read_lock();
1920 css = task_subsys_state(current, blkio_subsys_id);
1921 if (css && css_tryget(css))
1922 bio->bi_css = css;
1923 rcu_read_unlock();
1924
1925 return 0;
1926}
1927
1928/**
1929 * bio_disassociate_task - undo bio_associate_current()
1930 * @bio: target bio
1931 */
1932void bio_disassociate_task(struct bio *bio)
1933{
1934 if (bio->bi_ioc) {
1935 put_io_context(bio->bi_ioc);
1936 bio->bi_ioc = NULL;
1937 }
1938 if (bio->bi_css) {
1939 css_put(bio->bi_css);
1940 bio->bi_css = NULL;
1941 }
1942}
1943
1944#endif /* CONFIG_BLK_CGROUP */
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946static void __init biovec_init_slabs(void)
1947{
1948 int i;
1949
1950 for (i = 0; i < BIOVEC_NR_POOLS; i++) {
1951 int size;
1952 struct biovec_slab *bvs = bvec_slabs + i;
1953
Jens Axboea7fcd372008-12-05 16:10:29 +01001954 if (bvs->nr_vecs <= BIO_INLINE_VECS) {
1955 bvs->slab = NULL;
1956 continue;
1957 }
Jens Axboea7fcd372008-12-05 16:10:29 +01001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 size = bvs->nr_vecs * sizeof(struct bio_vec);
1960 bvs->slab = kmem_cache_create(bvs->name, size, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001961 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963}
1964
1965static int __init init_bio(void)
1966{
Jens Axboebb799ca2008-12-10 15:35:05 +01001967 bio_slab_max = 2;
1968 bio_slab_nr = 0;
1969 bio_slabs = kzalloc(bio_slab_max * sizeof(struct bio_slab), GFP_KERNEL);
1970 if (!bio_slabs)
1971 panic("bio: can't allocate bios\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001973 bio_integrity_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 biovec_init_slabs();
1975
Jens Axboebb799ca2008-12-10 15:35:05 +01001976 fs_bio_set = bioset_create(BIO_POOL_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (!fs_bio_set)
1978 panic("bio: can't allocate bios\n");
1979
Martin K. Petersena91a2782011-03-17 11:11:05 +01001980 if (bioset_integrity_create(fs_bio_set, BIO_POOL_SIZE))
1981 panic("bio: can't create integrity pool\n");
1982
Matthew Dobson0eaae62a2006-03-26 01:37:47 -08001983 bio_split_pool = mempool_create_kmalloc_pool(BIO_SPLIT_ENTRIES,
1984 sizeof(struct bio_pair));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (!bio_split_pool)
1986 panic("bio: can't create split pool\n");
1987
1988 return 0;
1989}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990subsys_initcall(init_bio);