]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - block/bio.c
iucv: Convert sk_wmem_alloc accesses to refcount_t.
[mirror_ubuntu-artful-kernel.git] / block / bio.c
CommitLineData
1da177e4 1/*
0fe23479 2 * Copyright (C) 2001 Jens Axboe <axboe@kernel.dk>
1da177e4
LT
3 *
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>
a27bb332 22#include <linux/uio.h>
852c788f 23#include <linux/iocontext.h>
1da177e4
LT
24#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/kernel.h>
630d9c47 27#include <linux/export.h>
1da177e4
LT
28#include <linux/mempool.h>
29#include <linux/workqueue.h>
852c788f 30#include <linux/cgroup.h>
1da177e4 31
55782138 32#include <trace/events/block.h>
9e234eea 33#include "blk.h"
0bfc2455 34
392ddc32
JA
35/*
36 * Test patch to inline a certain number of bi_io_vec's inside the bio
37 * itself, to shrink a bio data allocation from two mempool calls to one
38 */
39#define BIO_INLINE_VECS 4
40
1da177e4
LT
41/*
42 * if you change this list, also change bvec_alloc or things will
43 * break badly! cannot be bigger than what you can fit into an
44 * unsigned short
45 */
1da177e4 46#define BV(x) { .nr_vecs = x, .name = "biovec-"__stringify(x) }
ed996a52 47static struct biovec_slab bvec_slabs[BVEC_POOL_NR] __read_mostly = {
1da177e4
LT
48 BV(1), BV(4), BV(16), BV(64), BV(128), BV(BIO_MAX_PAGES),
49};
50#undef BV
51
1da177e4
LT
52/*
53 * fs_bio_set is the bio_set containing bio and iovec memory pools used by
54 * IO code that does not need private memory pools.
55 */
51d654e1 56struct bio_set *fs_bio_set;
3f86a82a 57EXPORT_SYMBOL(fs_bio_set);
1da177e4 58
bb799ca0
JA
59/*
60 * Our slab pool management
61 */
62struct bio_slab {
63 struct kmem_cache *slab;
64 unsigned int slab_ref;
65 unsigned int slab_size;
66 char name[8];
67};
68static DEFINE_MUTEX(bio_slab_lock);
69static struct bio_slab *bio_slabs;
70static unsigned int bio_slab_nr, bio_slab_max;
71
72static struct kmem_cache *bio_find_or_create_slab(unsigned int extra_size)
73{
74 unsigned int sz = sizeof(struct bio) + extra_size;
75 struct kmem_cache *slab = NULL;
389d7b26 76 struct bio_slab *bslab, *new_bio_slabs;
386bc35a 77 unsigned int new_bio_slab_max;
bb799ca0
JA
78 unsigned int i, entry = -1;
79
80 mutex_lock(&bio_slab_lock);
81
82 i = 0;
83 while (i < bio_slab_nr) {
f06f135d 84 bslab = &bio_slabs[i];
bb799ca0
JA
85
86 if (!bslab->slab && entry == -1)
87 entry = i;
88 else if (bslab->slab_size == sz) {
89 slab = bslab->slab;
90 bslab->slab_ref++;
91 break;
92 }
93 i++;
94 }
95
96 if (slab)
97 goto out_unlock;
98
99 if (bio_slab_nr == bio_slab_max && entry == -1) {
386bc35a 100 new_bio_slab_max = bio_slab_max << 1;
389d7b26 101 new_bio_slabs = krealloc(bio_slabs,
386bc35a 102 new_bio_slab_max * sizeof(struct bio_slab),
389d7b26
AK
103 GFP_KERNEL);
104 if (!new_bio_slabs)
bb799ca0 105 goto out_unlock;
386bc35a 106 bio_slab_max = new_bio_slab_max;
389d7b26 107 bio_slabs = new_bio_slabs;
bb799ca0
JA
108 }
109 if (entry == -1)
110 entry = bio_slab_nr++;
111
112 bslab = &bio_slabs[entry];
113
114 snprintf(bslab->name, sizeof(bslab->name), "bio-%d", entry);
6a241483
MP
115 slab = kmem_cache_create(bslab->name, sz, ARCH_KMALLOC_MINALIGN,
116 SLAB_HWCACHE_ALIGN, NULL);
bb799ca0
JA
117 if (!slab)
118 goto out_unlock;
119
bb799ca0
JA
120 bslab->slab = slab;
121 bslab->slab_ref = 1;
122 bslab->slab_size = sz;
123out_unlock:
124 mutex_unlock(&bio_slab_lock);
125 return slab;
126}
127
128static void bio_put_slab(struct bio_set *bs)
129{
130 struct bio_slab *bslab = NULL;
131 unsigned int i;
132
133 mutex_lock(&bio_slab_lock);
134
135 for (i = 0; i < bio_slab_nr; i++) {
136 if (bs->bio_slab == bio_slabs[i].slab) {
137 bslab = &bio_slabs[i];
138 break;
139 }
140 }
141
142 if (WARN(!bslab, KERN_ERR "bio: unable to find slab!\n"))
143 goto out;
144
145 WARN_ON(!bslab->slab_ref);
146
147 if (--bslab->slab_ref)
148 goto out;
149
150 kmem_cache_destroy(bslab->slab);
151 bslab->slab = NULL;
152
153out:
154 mutex_unlock(&bio_slab_lock);
155}
156
7ba1ba12
MP
157unsigned int bvec_nr_vecs(unsigned short idx)
158{
159 return bvec_slabs[idx].nr_vecs;
160}
161
9f060e22 162void bvec_free(mempool_t *pool, struct bio_vec *bv, unsigned int idx)
bb799ca0 163{
ed996a52
CH
164 if (!idx)
165 return;
166 idx--;
167
168 BIO_BUG_ON(idx >= BVEC_POOL_NR);
bb799ca0 169
ed996a52 170 if (idx == BVEC_POOL_MAX) {
9f060e22 171 mempool_free(bv, pool);
ed996a52 172 } else {
bb799ca0
JA
173 struct biovec_slab *bvs = bvec_slabs + idx;
174
175 kmem_cache_free(bvs->slab, bv);
176 }
177}
178
9f060e22
KO
179struct bio_vec *bvec_alloc(gfp_t gfp_mask, int nr, unsigned long *idx,
180 mempool_t *pool)
1da177e4
LT
181{
182 struct bio_vec *bvl;
1da177e4 183
7ff9345f
JA
184 /*
185 * see comment near bvec_array define!
186 */
187 switch (nr) {
188 case 1:
189 *idx = 0;
190 break;
191 case 2 ... 4:
192 *idx = 1;
193 break;
194 case 5 ... 16:
195 *idx = 2;
196 break;
197 case 17 ... 64:
198 *idx = 3;
199 break;
200 case 65 ... 128:
201 *idx = 4;
202 break;
203 case 129 ... BIO_MAX_PAGES:
204 *idx = 5;
205 break;
206 default:
207 return NULL;
208 }
209
210 /*
211 * idx now points to the pool we want to allocate from. only the
212 * 1-vec entry pool is mempool backed.
213 */
ed996a52 214 if (*idx == BVEC_POOL_MAX) {
7ff9345f 215fallback:
9f060e22 216 bvl = mempool_alloc(pool, gfp_mask);
7ff9345f
JA
217 } else {
218 struct biovec_slab *bvs = bvec_slabs + *idx;
d0164adc 219 gfp_t __gfp_mask = gfp_mask & ~(__GFP_DIRECT_RECLAIM | __GFP_IO);
7ff9345f 220
0a0d96b0 221 /*
7ff9345f
JA
222 * Make this allocation restricted and don't dump info on
223 * allocation failures, since we'll fallback to the mempool
224 * in case of failure.
0a0d96b0 225 */
7ff9345f 226 __gfp_mask |= __GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
1da177e4 227
0a0d96b0 228 /*
d0164adc 229 * Try a slab allocation. If this fails and __GFP_DIRECT_RECLAIM
7ff9345f 230 * is set, retry with the 1-entry mempool
0a0d96b0 231 */
7ff9345f 232 bvl = kmem_cache_alloc(bvs->slab, __gfp_mask);
d0164adc 233 if (unlikely(!bvl && (gfp_mask & __GFP_DIRECT_RECLAIM))) {
ed996a52 234 *idx = BVEC_POOL_MAX;
7ff9345f
JA
235 goto fallback;
236 }
237 }
238
ed996a52 239 (*idx)++;
1da177e4
LT
240 return bvl;
241}
242
9ae3b3f5 243void bio_uninit(struct bio *bio)
1da177e4 244{
4254bba1 245 bio_disassociate_task(bio);
1da177e4 246
7ba1ba12 247 if (bio_integrity(bio))
1e2a410f 248 bio_integrity_free(bio);
4254bba1 249}
9ae3b3f5 250EXPORT_SYMBOL(bio_uninit);
7ba1ba12 251
4254bba1
KO
252static void bio_free(struct bio *bio)
253{
254 struct bio_set *bs = bio->bi_pool;
255 void *p;
256
9ae3b3f5 257 bio_uninit(bio);
4254bba1
KO
258
259 if (bs) {
ed996a52 260 bvec_free(bs->bvec_pool, bio->bi_io_vec, BVEC_POOL_IDX(bio));
4254bba1
KO
261
262 /*
263 * If we have front padding, adjust the bio pointer before freeing
264 */
265 p = bio;
bb799ca0
JA
266 p -= bs->front_pad;
267
4254bba1
KO
268 mempool_free(p, bs->bio_pool);
269 } else {
270 /* Bio was allocated by bio_kmalloc() */
271 kfree(bio);
272 }
3676347a
PO
273}
274
9ae3b3f5
JA
275/*
276 * Users of this function have their own bio allocation. Subsequently,
277 * they must remember to pair any call to bio_init() with bio_uninit()
278 * when IO has completed, or when the bio is released.
279 */
3a83f467
ML
280void bio_init(struct bio *bio, struct bio_vec *table,
281 unsigned short max_vecs)
1da177e4 282{
2b94de55 283 memset(bio, 0, sizeof(*bio));
c4cf5261 284 atomic_set(&bio->__bi_remaining, 1);
dac56212 285 atomic_set(&bio->__bi_cnt, 1);
3a83f467
ML
286
287 bio->bi_io_vec = table;
288 bio->bi_max_vecs = max_vecs;
1da177e4 289}
a112a71d 290EXPORT_SYMBOL(bio_init);
1da177e4 291
f44b48c7
KO
292/**
293 * bio_reset - reinitialize a bio
294 * @bio: bio to reset
295 *
296 * Description:
297 * After calling bio_reset(), @bio will be in the same state as a freshly
298 * allocated bio returned bio bio_alloc_bioset() - the only fields that are
299 * preserved are the ones that are initialized by bio_alloc_bioset(). See
300 * comment in struct bio.
301 */
302void bio_reset(struct bio *bio)
303{
304 unsigned long flags = bio->bi_flags & (~0UL << BIO_RESET_BITS);
305
9ae3b3f5 306 bio_uninit(bio);
f44b48c7
KO
307
308 memset(bio, 0, BIO_RESET_BYTES);
4246a0b6 309 bio->bi_flags = flags;
c4cf5261 310 atomic_set(&bio->__bi_remaining, 1);
f44b48c7
KO
311}
312EXPORT_SYMBOL(bio_reset);
313
38f8baae 314static struct bio *__bio_chain_endio(struct bio *bio)
196d38bc 315{
4246a0b6
CH
316 struct bio *parent = bio->bi_private;
317
af3e3a52
CH
318 if (!parent->bi_error)
319 parent->bi_error = bio->bi_error;
196d38bc 320 bio_put(bio);
38f8baae
CH
321 return parent;
322}
323
324static void bio_chain_endio(struct bio *bio)
325{
326 bio_endio(__bio_chain_endio(bio));
196d38bc
KO
327}
328
329/**
330 * bio_chain - chain bio completions
1051a902
RD
331 * @bio: the target bio
332 * @parent: the @bio's parent bio
196d38bc
KO
333 *
334 * The caller won't have a bi_end_io called when @bio completes - instead,
335 * @parent's bi_end_io won't be called until both @parent and @bio have
336 * completed; the chained bio will also be freed when it completes.
337 *
338 * The caller must not set bi_private or bi_end_io in @bio.
339 */
340void bio_chain(struct bio *bio, struct bio *parent)
341{
342 BUG_ON(bio->bi_private || bio->bi_end_io);
343
344 bio->bi_private = parent;
345 bio->bi_end_io = bio_chain_endio;
c4cf5261 346 bio_inc_remaining(parent);
196d38bc
KO
347}
348EXPORT_SYMBOL(bio_chain);
349
df2cb6da
KO
350static void bio_alloc_rescue(struct work_struct *work)
351{
352 struct bio_set *bs = container_of(work, struct bio_set, rescue_work);
353 struct bio *bio;
354
355 while (1) {
356 spin_lock(&bs->rescue_lock);
357 bio = bio_list_pop(&bs->rescue_list);
358 spin_unlock(&bs->rescue_lock);
359
360 if (!bio)
361 break;
362
363 generic_make_request(bio);
364 }
365}
366
367static void punt_bios_to_rescuer(struct bio_set *bs)
368{
369 struct bio_list punt, nopunt;
370 struct bio *bio;
371
372 /*
373 * In order to guarantee forward progress we must punt only bios that
374 * were allocated from this bio_set; otherwise, if there was a bio on
375 * there for a stacking driver higher up in the stack, processing it
376 * could require allocating bios from this bio_set, and doing that from
377 * our own rescuer would be bad.
378 *
379 * Since bio lists are singly linked, pop them all instead of trying to
380 * remove from the middle of the list:
381 */
382
383 bio_list_init(&punt);
384 bio_list_init(&nopunt);
385
f5fe1b51 386 while ((bio = bio_list_pop(&current->bio_list[0])))
df2cb6da 387 bio_list_add(bio->bi_pool == bs ? &punt : &nopunt, bio);
f5fe1b51 388 current->bio_list[0] = nopunt;
df2cb6da 389
f5fe1b51
N
390 bio_list_init(&nopunt);
391 while ((bio = bio_list_pop(&current->bio_list[1])))
392 bio_list_add(bio->bi_pool == bs ? &punt : &nopunt, bio);
393 current->bio_list[1] = nopunt;
df2cb6da
KO
394
395 spin_lock(&bs->rescue_lock);
396 bio_list_merge(&bs->rescue_list, &punt);
397 spin_unlock(&bs->rescue_lock);
398
399 queue_work(bs->rescue_workqueue, &bs->rescue_work);
400}
401
1da177e4
LT
402/**
403 * bio_alloc_bioset - allocate a bio for I/O
404 * @gfp_mask: the GFP_ mask given to the slab allocator
405 * @nr_iovecs: number of iovecs to pre-allocate
db18efac 406 * @bs: the bio_set to allocate from.
1da177e4
LT
407 *
408 * Description:
3f86a82a
KO
409 * If @bs is NULL, uses kmalloc() to allocate the bio; else the allocation is
410 * backed by the @bs's mempool.
411 *
d0164adc
MG
412 * When @bs is not NULL, if %__GFP_DIRECT_RECLAIM is set then bio_alloc will
413 * always be able to allocate a bio. This is due to the mempool guarantees.
414 * To make this work, callers must never allocate more than 1 bio at a time
415 * from this pool. Callers that need to allocate more than 1 bio must always
416 * submit the previously allocated bio for IO before attempting to allocate
417 * a new one. Failure to do so can cause deadlocks under memory pressure.
3f86a82a 418 *
df2cb6da
KO
419 * Note that when running under generic_make_request() (i.e. any block
420 * driver), bios are not submitted until after you return - see the code in
421 * generic_make_request() that converts recursion into iteration, to prevent
422 * stack overflows.
423 *
424 * This would normally mean allocating multiple bios under
425 * generic_make_request() would be susceptible to deadlocks, but we have
426 * deadlock avoidance code that resubmits any blocked bios from a rescuer
427 * thread.
428 *
429 * However, we do not guarantee forward progress for allocations from other
430 * mempools. Doing multiple allocations from the same mempool under
431 * generic_make_request() should be avoided - instead, use bio_set's front_pad
432 * for per bio allocations.
433 *
3f86a82a
KO
434 * RETURNS:
435 * Pointer to new bio on success, NULL on failure.
436 */
7a88fa19
DC
437struct bio *bio_alloc_bioset(gfp_t gfp_mask, unsigned int nr_iovecs,
438 struct bio_set *bs)
1da177e4 439{
df2cb6da 440 gfp_t saved_gfp = gfp_mask;
3f86a82a
KO
441 unsigned front_pad;
442 unsigned inline_vecs;
34053979 443 struct bio_vec *bvl = NULL;
451a9ebf
TH
444 struct bio *bio;
445 void *p;
446
3f86a82a
KO
447 if (!bs) {
448 if (nr_iovecs > UIO_MAXIOV)
449 return NULL;
450
451 p = kmalloc(sizeof(struct bio) +
452 nr_iovecs * sizeof(struct bio_vec),
453 gfp_mask);
454 front_pad = 0;
455 inline_vecs = nr_iovecs;
456 } else {
d8f429e1
JN
457 /* should not use nobvec bioset for nr_iovecs > 0 */
458 if (WARN_ON_ONCE(!bs->bvec_pool && nr_iovecs > 0))
459 return NULL;
df2cb6da
KO
460 /*
461 * generic_make_request() converts recursion to iteration; this
462 * means if we're running beneath it, any bios we allocate and
463 * submit will not be submitted (and thus freed) until after we
464 * return.
465 *
466 * This exposes us to a potential deadlock if we allocate
467 * multiple bios from the same bio_set() while running
468 * underneath generic_make_request(). If we were to allocate
469 * multiple bios (say a stacking block driver that was splitting
470 * bios), we would deadlock if we exhausted the mempool's
471 * reserve.
472 *
473 * We solve this, and guarantee forward progress, with a rescuer
474 * workqueue per bio_set. If we go to allocate and there are
475 * bios on current->bio_list, we first try the allocation
d0164adc
MG
476 * without __GFP_DIRECT_RECLAIM; if that fails, we punt those
477 * bios we would be blocking to the rescuer workqueue before
478 * we retry with the original gfp_flags.
df2cb6da
KO
479 */
480
f5fe1b51
N
481 if (current->bio_list &&
482 (!bio_list_empty(&current->bio_list[0]) ||
483 !bio_list_empty(&current->bio_list[1])))
d0164adc 484 gfp_mask &= ~__GFP_DIRECT_RECLAIM;
df2cb6da 485
3f86a82a 486 p = mempool_alloc(bs->bio_pool, gfp_mask);
df2cb6da
KO
487 if (!p && gfp_mask != saved_gfp) {
488 punt_bios_to_rescuer(bs);
489 gfp_mask = saved_gfp;
490 p = mempool_alloc(bs->bio_pool, gfp_mask);
491 }
492
3f86a82a
KO
493 front_pad = bs->front_pad;
494 inline_vecs = BIO_INLINE_VECS;
495 }
496
451a9ebf
TH
497 if (unlikely(!p))
498 return NULL;
1da177e4 499
3f86a82a 500 bio = p + front_pad;
3a83f467 501 bio_init(bio, NULL, 0);
34053979 502
3f86a82a 503 if (nr_iovecs > inline_vecs) {
ed996a52
CH
504 unsigned long idx = 0;
505
9f060e22 506 bvl = bvec_alloc(gfp_mask, nr_iovecs, &idx, bs->bvec_pool);
df2cb6da
KO
507 if (!bvl && gfp_mask != saved_gfp) {
508 punt_bios_to_rescuer(bs);
509 gfp_mask = saved_gfp;
9f060e22 510 bvl = bvec_alloc(gfp_mask, nr_iovecs, &idx, bs->bvec_pool);
df2cb6da
KO
511 }
512
34053979
IM
513 if (unlikely(!bvl))
514 goto err_free;
a38352e0 515
ed996a52 516 bio->bi_flags |= idx << BVEC_POOL_OFFSET;
3f86a82a
KO
517 } else if (nr_iovecs) {
518 bvl = bio->bi_inline_vecs;
1da177e4 519 }
3f86a82a
KO
520
521 bio->bi_pool = bs;
34053979 522 bio->bi_max_vecs = nr_iovecs;
34053979 523 bio->bi_io_vec = bvl;
1da177e4 524 return bio;
34053979
IM
525
526err_free:
451a9ebf 527 mempool_free(p, bs->bio_pool);
34053979 528 return NULL;
1da177e4 529}
a112a71d 530EXPORT_SYMBOL(bio_alloc_bioset);
1da177e4 531
1da177e4
LT
532void zero_fill_bio(struct bio *bio)
533{
534 unsigned long flags;
7988613b
KO
535 struct bio_vec bv;
536 struct bvec_iter iter;
1da177e4 537
7988613b
KO
538 bio_for_each_segment(bv, bio, iter) {
539 char *data = bvec_kmap_irq(&bv, &flags);
540 memset(data, 0, bv.bv_len);
541 flush_dcache_page(bv.bv_page);
1da177e4
LT
542 bvec_kunmap_irq(data, &flags);
543 }
544}
545EXPORT_SYMBOL(zero_fill_bio);
546
547/**
548 * bio_put - release a reference to a bio
549 * @bio: bio to release reference to
550 *
551 * Description:
552 * Put a reference to a &struct bio, either one you have gotten with
ad0bf110 553 * bio_alloc, bio_get or bio_clone. The last put of a bio will free it.
1da177e4
LT
554 **/
555void bio_put(struct bio *bio)
556{
dac56212 557 if (!bio_flagged(bio, BIO_REFFED))
4254bba1 558 bio_free(bio);
dac56212
JA
559 else {
560 BIO_BUG_ON(!atomic_read(&bio->__bi_cnt));
561
562 /*
563 * last put frees it
564 */
565 if (atomic_dec_and_test(&bio->__bi_cnt))
566 bio_free(bio);
567 }
1da177e4 568}
a112a71d 569EXPORT_SYMBOL(bio_put);
1da177e4 570
165125e1 571inline int bio_phys_segments(struct request_queue *q, struct bio *bio)
1da177e4
LT
572{
573 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
574 blk_recount_segments(q, bio);
575
576 return bio->bi_phys_segments;
577}
a112a71d 578EXPORT_SYMBOL(bio_phys_segments);
1da177e4 579
59d276fe
KO
580/**
581 * __bio_clone_fast - clone a bio that shares the original bio's biovec
582 * @bio: destination bio
583 * @bio_src: bio to clone
584 *
585 * Clone a &bio. Caller will own the returned bio, but not
586 * the actual data it points to. Reference count of returned
587 * bio will be one.
588 *
589 * Caller must ensure that @bio_src is not freed before @bio.
590 */
591void __bio_clone_fast(struct bio *bio, struct bio *bio_src)
592{
ed996a52 593 BUG_ON(bio->bi_pool && BVEC_POOL_IDX(bio));
59d276fe
KO
594
595 /*
596 * most users will be overriding ->bi_bdev with a new target,
597 * so we don't set nor calculate new physical/hw segment counts here
598 */
599 bio->bi_bdev = bio_src->bi_bdev;
b7c44ed9 600 bio_set_flag(bio, BIO_CLONED);
1eff9d32 601 bio->bi_opf = bio_src->bi_opf;
59d276fe
KO
602 bio->bi_iter = bio_src->bi_iter;
603 bio->bi_io_vec = bio_src->bi_io_vec;
20bd723e
PV
604
605 bio_clone_blkcg_association(bio, bio_src);
59d276fe
KO
606}
607EXPORT_SYMBOL(__bio_clone_fast);
608
609/**
610 * bio_clone_fast - clone a bio that shares the original bio's biovec
611 * @bio: bio to clone
612 * @gfp_mask: allocation priority
613 * @bs: bio_set to allocate from
614 *
615 * Like __bio_clone_fast, only also allocates the returned bio
616 */
617struct bio *bio_clone_fast(struct bio *bio, gfp_t gfp_mask, struct bio_set *bs)
618{
619 struct bio *b;
620
621 b = bio_alloc_bioset(gfp_mask, 0, bs);
622 if (!b)
623 return NULL;
624
625 __bio_clone_fast(b, bio);
626
627 if (bio_integrity(bio)) {
628 int ret;
629
630 ret = bio_integrity_clone(b, bio, gfp_mask);
631
632 if (ret < 0) {
633 bio_put(b);
634 return NULL;
635 }
636 }
637
638 return b;
639}
640EXPORT_SYMBOL(bio_clone_fast);
641
f4595875
SL
642/**
643 * bio_clone_bioset - clone a bio
644 * @bio_src: bio to clone
645 * @gfp_mask: allocation priority
646 * @bs: bio_set to allocate from
647 *
648 * Clone bio. Caller will own the returned bio, but not the actual data it
649 * points to. Reference count of returned bio will be one.
650 */
651struct bio *bio_clone_bioset(struct bio *bio_src, gfp_t gfp_mask,
652 struct bio_set *bs)
1da177e4 653{
bdb53207
KO
654 struct bvec_iter iter;
655 struct bio_vec bv;
656 struct bio *bio;
1da177e4 657
bdb53207
KO
658 /*
659 * Pre immutable biovecs, __bio_clone() used to just do a memcpy from
660 * bio_src->bi_io_vec to bio->bi_io_vec.
661 *
662 * We can't do that anymore, because:
663 *
664 * - The point of cloning the biovec is to produce a bio with a biovec
665 * the caller can modify: bi_idx and bi_bvec_done should be 0.
666 *
667 * - The original bio could've had more than BIO_MAX_PAGES biovecs; if
668 * we tried to clone the whole thing bio_alloc_bioset() would fail.
669 * But the clone should succeed as long as the number of biovecs we
670 * actually need to allocate is fewer than BIO_MAX_PAGES.
671 *
672 * - Lastly, bi_vcnt should not be looked at or relied upon by code
673 * that does not own the bio - reason being drivers don't use it for
674 * iterating over the biovec anymore, so expecting it to be kept up
675 * to date (i.e. for clones that share the parent biovec) is just
676 * asking for trouble and would force extra work on
677 * __bio_clone_fast() anyways.
678 */
679
f4595875 680 bio = bio_alloc_bioset(gfp_mask, bio_segments(bio_src), bs);
bdb53207 681 if (!bio)
7ba1ba12 682 return NULL;
bdb53207 683 bio->bi_bdev = bio_src->bi_bdev;
1eff9d32 684 bio->bi_opf = bio_src->bi_opf;
bdb53207
KO
685 bio->bi_iter.bi_sector = bio_src->bi_iter.bi_sector;
686 bio->bi_iter.bi_size = bio_src->bi_iter.bi_size;
7ba1ba12 687
7afafc8a
AH
688 switch (bio_op(bio)) {
689 case REQ_OP_DISCARD:
690 case REQ_OP_SECURE_ERASE:
a6f0788e 691 case REQ_OP_WRITE_ZEROES:
7afafc8a
AH
692 break;
693 case REQ_OP_WRITE_SAME:
8423ae3d 694 bio->bi_io_vec[bio->bi_vcnt++] = bio_src->bi_io_vec[0];
7afafc8a
AH
695 break;
696 default:
f4595875 697 bio_for_each_segment(bv, bio_src, iter)
7afafc8a
AH
698 bio->bi_io_vec[bio->bi_vcnt++] = bv;
699 break;
8423ae3d
KO
700 }
701
bdb53207
KO
702 if (bio_integrity(bio_src)) {
703 int ret;
7ba1ba12 704
bdb53207 705 ret = bio_integrity_clone(bio, bio_src, gfp_mask);
059ea331 706 if (ret < 0) {
bdb53207 707 bio_put(bio);
7ba1ba12 708 return NULL;
059ea331 709 }
3676347a 710 }
1da177e4 711
20bd723e
PV
712 bio_clone_blkcg_association(bio, bio_src);
713
bdb53207 714 return bio;
1da177e4 715}
bf800ef1 716EXPORT_SYMBOL(bio_clone_bioset);
1da177e4
LT
717
718/**
c66a14d0
KO
719 * bio_add_pc_page - attempt to add page to bio
720 * @q: the target queue
721 * @bio: destination bio
722 * @page: page to add
723 * @len: vec entry length
724 * @offset: vec entry offset
1da177e4 725 *
c66a14d0
KO
726 * Attempt to add a page to the bio_vec maplist. This can fail for a
727 * number of reasons, such as the bio being full or target block device
728 * limitations. The target block device must allow bio's up to PAGE_SIZE,
729 * so it is always possible to add a single page to an empty bio.
730 *
731 * This should only be used by REQ_PC bios.
1da177e4 732 */
c66a14d0
KO
733int bio_add_pc_page(struct request_queue *q, struct bio *bio, struct page
734 *page, unsigned int len, unsigned int offset)
1da177e4
LT
735{
736 int retried_segments = 0;
737 struct bio_vec *bvec;
738
739 /*
740 * cloned bio must not modify vec list
741 */
742 if (unlikely(bio_flagged(bio, BIO_CLONED)))
743 return 0;
744
c66a14d0 745 if (((bio->bi_iter.bi_size + len) >> 9) > queue_max_hw_sectors(q))
1da177e4
LT
746 return 0;
747
80cfd548
JA
748 /*
749 * For filesystems with a blocksize smaller than the pagesize
750 * we will often be called with the same page as last time and
751 * a consecutive offset. Optimize this special case.
752 */
753 if (bio->bi_vcnt > 0) {
754 struct bio_vec *prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
755
756 if (page == prev->bv_page &&
757 offset == prev->bv_offset + prev->bv_len) {
758 prev->bv_len += len;
fcbf6a08 759 bio->bi_iter.bi_size += len;
80cfd548
JA
760 goto done;
761 }
66cb45aa
JA
762
763 /*
764 * If the queue doesn't support SG gaps and adding this
765 * offset would create a gap, disallow it.
766 */
03100aad 767 if (bvec_gap_to_prev(q, prev, offset))
66cb45aa 768 return 0;
80cfd548
JA
769 }
770
771 if (bio->bi_vcnt >= bio->bi_max_vecs)
1da177e4
LT
772 return 0;
773
774 /*
fcbf6a08
ML
775 * setup the new entry, we might clear it again later if we
776 * cannot add the page
777 */
778 bvec = &bio->bi_io_vec[bio->bi_vcnt];
779 bvec->bv_page = page;
780 bvec->bv_len = len;
781 bvec->bv_offset = offset;
782 bio->bi_vcnt++;
783 bio->bi_phys_segments++;
784 bio->bi_iter.bi_size += len;
785
786 /*
787 * Perform a recount if the number of segments is greater
788 * than queue_max_segments(q).
1da177e4
LT
789 */
790
fcbf6a08 791 while (bio->bi_phys_segments > queue_max_segments(q)) {
1da177e4
LT
792
793 if (retried_segments)
fcbf6a08 794 goto failed;
1da177e4
LT
795
796 retried_segments = 1;
797 blk_recount_segments(q, bio);
798 }
799
1da177e4 800 /* If we may be able to merge these biovecs, force a recount */
fcbf6a08 801 if (bio->bi_vcnt > 1 && (BIOVEC_PHYS_MERGEABLE(bvec-1, bvec)))
b7c44ed9 802 bio_clear_flag(bio, BIO_SEG_VALID);
1da177e4 803
80cfd548 804 done:
1da177e4 805 return len;
fcbf6a08
ML
806
807 failed:
808 bvec->bv_page = NULL;
809 bvec->bv_len = 0;
810 bvec->bv_offset = 0;
811 bio->bi_vcnt--;
812 bio->bi_iter.bi_size -= len;
813 blk_recount_segments(q, bio);
814 return 0;
1da177e4 815}
a112a71d 816EXPORT_SYMBOL(bio_add_pc_page);
6e68af66 817
1da177e4
LT
818/**
819 * bio_add_page - attempt to add page to bio
820 * @bio: destination bio
821 * @page: page to add
822 * @len: vec entry length
823 * @offset: vec entry offset
824 *
c66a14d0
KO
825 * Attempt to add a page to the bio_vec maplist. This will only fail
826 * if either bio->bi_vcnt == bio->bi_max_vecs or it's a cloned bio.
1da177e4 827 */
c66a14d0
KO
828int bio_add_page(struct bio *bio, struct page *page,
829 unsigned int len, unsigned int offset)
1da177e4 830{
c66a14d0
KO
831 struct bio_vec *bv;
832
833 /*
834 * cloned bio must not modify vec list
835 */
836 if (WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED)))
837 return 0;
762380ad 838
c66a14d0
KO
839 /*
840 * For filesystems with a blocksize smaller than the pagesize
841 * we will often be called with the same page as last time and
842 * a consecutive offset. Optimize this special case.
843 */
844 if (bio->bi_vcnt > 0) {
845 bv = &bio->bi_io_vec[bio->bi_vcnt - 1];
58a4915a 846
c66a14d0
KO
847 if (page == bv->bv_page &&
848 offset == bv->bv_offset + bv->bv_len) {
849 bv->bv_len += len;
850 goto done;
851 }
852 }
853
854 if (bio->bi_vcnt >= bio->bi_max_vecs)
855 return 0;
856
857 bv = &bio->bi_io_vec[bio->bi_vcnt];
858 bv->bv_page = page;
859 bv->bv_len = len;
860 bv->bv_offset = offset;
861
862 bio->bi_vcnt++;
863done:
864 bio->bi_iter.bi_size += len;
865 return len;
1da177e4 866}
a112a71d 867EXPORT_SYMBOL(bio_add_page);
1da177e4 868
2cefe4db
KO
869/**
870 * bio_iov_iter_get_pages - pin user or kernel pages and add them to a bio
871 * @bio: bio to add pages to
872 * @iter: iov iterator describing the region to be mapped
873 *
874 * Pins as many pages from *iter and appends them to @bio's bvec array. The
875 * pages will have to be released using put_page() when done.
876 */
877int bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter)
878{
879 unsigned short nr_pages = bio->bi_max_vecs - bio->bi_vcnt;
880 struct bio_vec *bv = bio->bi_io_vec + bio->bi_vcnt;
881 struct page **pages = (struct page **)bv;
882 size_t offset, diff;
883 ssize_t size;
884
885 size = iov_iter_get_pages(iter, pages, LONG_MAX, nr_pages, &offset);
886 if (unlikely(size <= 0))
887 return size ? size : -EFAULT;
888 nr_pages = (size + offset + PAGE_SIZE - 1) / PAGE_SIZE;
889
890 /*
891 * Deep magic below: We need to walk the pinned pages backwards
892 * because we are abusing the space allocated for the bio_vecs
893 * for the page array. Because the bio_vecs are larger than the
894 * page pointers by definition this will always work. But it also
895 * means we can't use bio_add_page, so any changes to it's semantics
896 * need to be reflected here as well.
897 */
898 bio->bi_iter.bi_size += size;
899 bio->bi_vcnt += nr_pages;
900
901 diff = (nr_pages * PAGE_SIZE - offset) - size;
902 while (nr_pages--) {
903 bv[nr_pages].bv_page = pages[nr_pages];
904 bv[nr_pages].bv_len = PAGE_SIZE;
905 bv[nr_pages].bv_offset = 0;
906 }
907
908 bv[0].bv_offset += offset;
909 bv[0].bv_len -= offset;
910 if (diff)
911 bv[bio->bi_vcnt - 1].bv_len -= diff;
912
913 iov_iter_advance(iter, size);
914 return 0;
915}
916EXPORT_SYMBOL_GPL(bio_iov_iter_get_pages);
917
9e882242
KO
918struct submit_bio_ret {
919 struct completion event;
920 int error;
921};
922
4246a0b6 923static void submit_bio_wait_endio(struct bio *bio)
9e882242
KO
924{
925 struct submit_bio_ret *ret = bio->bi_private;
926
4246a0b6 927 ret->error = bio->bi_error;
9e882242
KO
928 complete(&ret->event);
929}
930
931/**
932 * submit_bio_wait - submit a bio, and wait until it completes
9e882242
KO
933 * @bio: The &struct bio which describes the I/O
934 *
935 * Simple wrapper around submit_bio(). Returns 0 on success, or the error from
936 * bio_endio() on failure.
937 */
4e49ea4a 938int submit_bio_wait(struct bio *bio)
9e882242
KO
939{
940 struct submit_bio_ret ret;
941
9e882242
KO
942 init_completion(&ret.event);
943 bio->bi_private = &ret;
944 bio->bi_end_io = submit_bio_wait_endio;
1eff9d32 945 bio->bi_opf |= REQ_SYNC;
4e49ea4a 946 submit_bio(bio);
d57d6115 947 wait_for_completion_io(&ret.event);
9e882242
KO
948
949 return ret.error;
950}
951EXPORT_SYMBOL(submit_bio_wait);
952
054bdf64
KO
953/**
954 * bio_advance - increment/complete a bio by some number of bytes
955 * @bio: bio to advance
956 * @bytes: number of bytes to complete
957 *
958 * This updates bi_sector, bi_size and bi_idx; if the number of bytes to
959 * complete doesn't align with a bvec boundary, then bv_len and bv_offset will
960 * be updated on the last bvec as well.
961 *
962 * @bio will then represent the remaining, uncompleted portion of the io.
963 */
964void bio_advance(struct bio *bio, unsigned bytes)
965{
966 if (bio_integrity(bio))
967 bio_integrity_advance(bio, bytes);
968
4550dd6c 969 bio_advance_iter(bio, &bio->bi_iter, bytes);
054bdf64
KO
970}
971EXPORT_SYMBOL(bio_advance);
972
a0787606
KO
973/**
974 * bio_alloc_pages - allocates a single page for each bvec in a bio
975 * @bio: bio to allocate pages for
976 * @gfp_mask: flags for allocation
977 *
978 * Allocates pages up to @bio->bi_vcnt.
979 *
980 * Returns 0 on success, -ENOMEM on failure. On failure, any allocated pages are
981 * freed.
982 */
983int bio_alloc_pages(struct bio *bio, gfp_t gfp_mask)
984{
985 int i;
986 struct bio_vec *bv;
987
988 bio_for_each_segment_all(bv, bio, i) {
989 bv->bv_page = alloc_page(gfp_mask);
990 if (!bv->bv_page) {
991 while (--bv >= bio->bi_io_vec)
992 __free_page(bv->bv_page);
993 return -ENOMEM;
994 }
995 }
996
997 return 0;
998}
999EXPORT_SYMBOL(bio_alloc_pages);
1000
16ac3d63
KO
1001/**
1002 * bio_copy_data - copy contents of data buffers from one chain of bios to
1003 * another
1004 * @src: source bio list
1005 * @dst: destination bio list
1006 *
1007 * If @src and @dst are single bios, bi_next must be NULL - otherwise, treats
1008 * @src and @dst as linked lists of bios.
1009 *
1010 * Stops when it reaches the end of either @src or @dst - that is, copies
1011 * min(src->bi_size, dst->bi_size) bytes (or the equivalent for lists of bios).
1012 */
1013void bio_copy_data(struct bio *dst, struct bio *src)
1014{
1cb9dda4
KO
1015 struct bvec_iter src_iter, dst_iter;
1016 struct bio_vec src_bv, dst_bv;
16ac3d63 1017 void *src_p, *dst_p;
1cb9dda4 1018 unsigned bytes;
16ac3d63 1019
1cb9dda4
KO
1020 src_iter = src->bi_iter;
1021 dst_iter = dst->bi_iter;
16ac3d63
KO
1022
1023 while (1) {
1cb9dda4
KO
1024 if (!src_iter.bi_size) {
1025 src = src->bi_next;
1026 if (!src)
1027 break;
16ac3d63 1028
1cb9dda4 1029 src_iter = src->bi_iter;
16ac3d63
KO
1030 }
1031
1cb9dda4
KO
1032 if (!dst_iter.bi_size) {
1033 dst = dst->bi_next;
1034 if (!dst)
1035 break;
16ac3d63 1036
1cb9dda4 1037 dst_iter = dst->bi_iter;
16ac3d63
KO
1038 }
1039
1cb9dda4
KO
1040 src_bv = bio_iter_iovec(src, src_iter);
1041 dst_bv = bio_iter_iovec(dst, dst_iter);
1042
1043 bytes = min(src_bv.bv_len, dst_bv.bv_len);
16ac3d63 1044
1cb9dda4
KO
1045 src_p = kmap_atomic(src_bv.bv_page);
1046 dst_p = kmap_atomic(dst_bv.bv_page);
16ac3d63 1047
1cb9dda4
KO
1048 memcpy(dst_p + dst_bv.bv_offset,
1049 src_p + src_bv.bv_offset,
16ac3d63
KO
1050 bytes);
1051
1052 kunmap_atomic(dst_p);
1053 kunmap_atomic(src_p);
1054
1cb9dda4
KO
1055 bio_advance_iter(src, &src_iter, bytes);
1056 bio_advance_iter(dst, &dst_iter, bytes);
16ac3d63
KO
1057 }
1058}
1059EXPORT_SYMBOL(bio_copy_data);
1060
1da177e4 1061struct bio_map_data {
152e283f 1062 int is_our_pages;
26e49cfc
KO
1063 struct iov_iter iter;
1064 struct iovec iov[];
1da177e4
LT
1065};
1066
7410b3c6 1067static struct bio_map_data *bio_alloc_map_data(unsigned int iov_count,
76029ff3 1068 gfp_t gfp_mask)
1da177e4 1069{
f3f63c1c
JA
1070 if (iov_count > UIO_MAXIOV)
1071 return NULL;
1da177e4 1072
c8db4448 1073 return kmalloc(sizeof(struct bio_map_data) +
26e49cfc 1074 sizeof(struct iovec) * iov_count, gfp_mask);
1da177e4
LT
1075}
1076
9124d3fe
DP
1077/**
1078 * bio_copy_from_iter - copy all pages from iov_iter to bio
1079 * @bio: The &struct bio which describes the I/O as destination
1080 * @iter: iov_iter as source
1081 *
1082 * Copy all pages from iov_iter to bio.
1083 * Returns 0 on success, or error on failure.
1084 */
1085static int bio_copy_from_iter(struct bio *bio, struct iov_iter iter)
c5dec1c3 1086{
9124d3fe 1087 int i;
c5dec1c3 1088 struct bio_vec *bvec;
c5dec1c3 1089
d74c6d51 1090 bio_for_each_segment_all(bvec, bio, i) {
9124d3fe 1091 ssize_t ret;
c5dec1c3 1092
9124d3fe
DP
1093 ret = copy_page_from_iter(bvec->bv_page,
1094 bvec->bv_offset,
1095 bvec->bv_len,
1096 &iter);
1097
1098 if (!iov_iter_count(&iter))
1099 break;
1100
1101 if (ret < bvec->bv_len)
1102 return -EFAULT;
c5dec1c3
FT
1103 }
1104
9124d3fe
DP
1105 return 0;
1106}
1107
1108/**
1109 * bio_copy_to_iter - copy all pages from bio to iov_iter
1110 * @bio: The &struct bio which describes the I/O as source
1111 * @iter: iov_iter as destination
1112 *
1113 * Copy all pages from bio to iov_iter.
1114 * Returns 0 on success, or error on failure.
1115 */
1116static int bio_copy_to_iter(struct bio *bio, struct iov_iter iter)
1117{
1118 int i;
1119 struct bio_vec *bvec;
1120
1121 bio_for_each_segment_all(bvec, bio, i) {
1122 ssize_t ret;
1123
1124 ret = copy_page_to_iter(bvec->bv_page,
1125 bvec->bv_offset,
1126 bvec->bv_len,
1127 &iter);
1128
1129 if (!iov_iter_count(&iter))
1130 break;
1131
1132 if (ret < bvec->bv_len)
1133 return -EFAULT;
1134 }
1135
1136 return 0;
c5dec1c3
FT
1137}
1138
491221f8 1139void bio_free_pages(struct bio *bio)
1dfa0f68
CH
1140{
1141 struct bio_vec *bvec;
1142 int i;
1143
1144 bio_for_each_segment_all(bvec, bio, i)
1145 __free_page(bvec->bv_page);
1146}
491221f8 1147EXPORT_SYMBOL(bio_free_pages);
1dfa0f68 1148
1da177e4
LT
1149/**
1150 * bio_uncopy_user - finish previously mapped bio
1151 * @bio: bio being terminated
1152 *
ddad8dd0 1153 * Free pages allocated from bio_copy_user_iov() and write back data
1da177e4
LT
1154 * to user space in case of a read.
1155 */
1156int bio_uncopy_user(struct bio *bio)
1157{
1158 struct bio_map_data *bmd = bio->bi_private;
1dfa0f68 1159 int ret = 0;
1da177e4 1160
35dc2483
RD
1161 if (!bio_flagged(bio, BIO_NULL_MAPPED)) {
1162 /*
1163 * if we're in a workqueue, the request is orphaned, so
2d99b55d
HR
1164 * don't copy into a random user address space, just free
1165 * and return -EINTR so user space doesn't expect any data.
35dc2483 1166 */
2d99b55d
HR
1167 if (!current->mm)
1168 ret = -EINTR;
1169 else if (bio_data_dir(bio) == READ)
9124d3fe 1170 ret = bio_copy_to_iter(bio, bmd->iter);
1dfa0f68
CH
1171 if (bmd->is_our_pages)
1172 bio_free_pages(bio);
35dc2483 1173 }
c8db4448 1174 kfree(bmd);
1da177e4
LT
1175 bio_put(bio);
1176 return ret;
1177}
1178
1179/**
c5dec1c3 1180 * bio_copy_user_iov - copy user data to bio
26e49cfc
KO
1181 * @q: destination block queue
1182 * @map_data: pointer to the rq_map_data holding pages (if necessary)
1183 * @iter: iovec iterator
1184 * @gfp_mask: memory allocation flags
1da177e4
LT
1185 *
1186 * Prepares and returns a bio for indirect user io, bouncing data
1187 * to/from kernel pages as necessary. Must be paired with
1188 * call bio_uncopy_user() on io completion.
1189 */
152e283f
FT
1190struct bio *bio_copy_user_iov(struct request_queue *q,
1191 struct rq_map_data *map_data,
26e49cfc
KO
1192 const struct iov_iter *iter,
1193 gfp_t gfp_mask)
1da177e4 1194{
1da177e4 1195 struct bio_map_data *bmd;
1da177e4
LT
1196 struct page *page;
1197 struct bio *bio;
1198 int i, ret;
c5dec1c3 1199 int nr_pages = 0;
26e49cfc 1200 unsigned int len = iter->count;
bd5cecea 1201 unsigned int offset = map_data ? offset_in_page(map_data->offset) : 0;
1da177e4 1202
26e49cfc 1203 for (i = 0; i < iter->nr_segs; i++) {
c5dec1c3
FT
1204 unsigned long uaddr;
1205 unsigned long end;
1206 unsigned long start;
1207
26e49cfc
KO
1208 uaddr = (unsigned long) iter->iov[i].iov_base;
1209 end = (uaddr + iter->iov[i].iov_len + PAGE_SIZE - 1)
1210 >> PAGE_SHIFT;
c5dec1c3
FT
1211 start = uaddr >> PAGE_SHIFT;
1212
cb4644ca
JA
1213 /*
1214 * Overflow, abort
1215 */
1216 if (end < start)
1217 return ERR_PTR(-EINVAL);
1218
c5dec1c3 1219 nr_pages += end - start;
c5dec1c3
FT
1220 }
1221
69838727
FT
1222 if (offset)
1223 nr_pages++;
1224
26e49cfc 1225 bmd = bio_alloc_map_data(iter->nr_segs, gfp_mask);
1da177e4
LT
1226 if (!bmd)
1227 return ERR_PTR(-ENOMEM);
1228
26e49cfc
KO
1229 /*
1230 * We need to do a deep copy of the iov_iter including the iovecs.
1231 * The caller provided iov might point to an on-stack or otherwise
1232 * shortlived one.
1233 */
1234 bmd->is_our_pages = map_data ? 0 : 1;
1235 memcpy(bmd->iov, iter->iov, sizeof(struct iovec) * iter->nr_segs);
1236 iov_iter_init(&bmd->iter, iter->type, bmd->iov,
1237 iter->nr_segs, iter->count);
1238
1da177e4 1239 ret = -ENOMEM;
a9e9dc24 1240 bio = bio_kmalloc(gfp_mask, nr_pages);
1da177e4
LT
1241 if (!bio)
1242 goto out_bmd;
1243
1da177e4 1244 ret = 0;
56c451f4
FT
1245
1246 if (map_data) {
e623ddb4 1247 nr_pages = 1 << map_data->page_order;
56c451f4
FT
1248 i = map_data->offset / PAGE_SIZE;
1249 }
1da177e4 1250 while (len) {
e623ddb4 1251 unsigned int bytes = PAGE_SIZE;
1da177e4 1252
56c451f4
FT
1253 bytes -= offset;
1254
1da177e4
LT
1255 if (bytes > len)
1256 bytes = len;
1257
152e283f 1258 if (map_data) {
e623ddb4 1259 if (i == map_data->nr_entries * nr_pages) {
152e283f
FT
1260 ret = -ENOMEM;
1261 break;
1262 }
e623ddb4
FT
1263
1264 page = map_data->pages[i / nr_pages];
1265 page += (i % nr_pages);
1266
1267 i++;
1268 } else {
152e283f 1269 page = alloc_page(q->bounce_gfp | gfp_mask);
e623ddb4
FT
1270 if (!page) {
1271 ret = -ENOMEM;
1272 break;
1273 }
1da177e4
LT
1274 }
1275
56c451f4 1276 if (bio_add_pc_page(q, bio, page, bytes, offset) < bytes)
1da177e4 1277 break;
1da177e4
LT
1278
1279 len -= bytes;
56c451f4 1280 offset = 0;
1da177e4
LT
1281 }
1282
1283 if (ret)
1284 goto cleanup;
1285
1286 /*
1287 * success
1288 */
26e49cfc 1289 if (((iter->type & WRITE) && (!map_data || !map_data->null_mapped)) ||
ecb554a8 1290 (map_data && map_data->from_user)) {
9124d3fe 1291 ret = bio_copy_from_iter(bio, *iter);
c5dec1c3
FT
1292 if (ret)
1293 goto cleanup;
1da177e4
LT
1294 }
1295
26e49cfc 1296 bio->bi_private = bmd;
1da177e4
LT
1297 return bio;
1298cleanup:
152e283f 1299 if (!map_data)
1dfa0f68 1300 bio_free_pages(bio);
1da177e4
LT
1301 bio_put(bio);
1302out_bmd:
c8db4448 1303 kfree(bmd);
1da177e4
LT
1304 return ERR_PTR(ret);
1305}
1306
37f19e57
CH
1307/**
1308 * bio_map_user_iov - map user iovec into bio
1309 * @q: the struct request_queue for the bio
1310 * @iter: iovec iterator
1311 * @gfp_mask: memory allocation flags
1312 *
1313 * Map the user space address into a bio suitable for io to a block
1314 * device. Returns an error pointer in case of error.
1315 */
1316struct bio *bio_map_user_iov(struct request_queue *q,
1317 const struct iov_iter *iter,
1318 gfp_t gfp_mask)
1da177e4 1319{
26e49cfc 1320 int j;
f1970baf 1321 int nr_pages = 0;
1da177e4
LT
1322 struct page **pages;
1323 struct bio *bio;
f1970baf
JB
1324 int cur_page = 0;
1325 int ret, offset;
26e49cfc
KO
1326 struct iov_iter i;
1327 struct iovec iov;
1da177e4 1328
26e49cfc
KO
1329 iov_for_each(iov, i, *iter) {
1330 unsigned long uaddr = (unsigned long) iov.iov_base;
1331 unsigned long len = iov.iov_len;
f1970baf
JB
1332 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1333 unsigned long start = uaddr >> PAGE_SHIFT;
1334
cb4644ca
JA
1335 /*
1336 * Overflow, abort
1337 */
1338 if (end < start)
1339 return ERR_PTR(-EINVAL);
1340
f1970baf
JB
1341 nr_pages += end - start;
1342 /*
a441b0d0 1343 * buffer must be aligned to at least logical block size for now
f1970baf 1344 */
ad2d7225 1345 if (uaddr & queue_dma_alignment(q))
f1970baf
JB
1346 return ERR_PTR(-EINVAL);
1347 }
1348
1349 if (!nr_pages)
1da177e4
LT
1350 return ERR_PTR(-EINVAL);
1351
a9e9dc24 1352 bio = bio_kmalloc(gfp_mask, nr_pages);
1da177e4
LT
1353 if (!bio)
1354 return ERR_PTR(-ENOMEM);
1355
1356 ret = -ENOMEM;
a3bce90e 1357 pages = kcalloc(nr_pages, sizeof(struct page *), gfp_mask);
1da177e4
LT
1358 if (!pages)
1359 goto out;
1360
26e49cfc
KO
1361 iov_for_each(iov, i, *iter) {
1362 unsigned long uaddr = (unsigned long) iov.iov_base;
1363 unsigned long len = iov.iov_len;
f1970baf
JB
1364 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1365 unsigned long start = uaddr >> PAGE_SHIFT;
1366 const int local_nr_pages = end - start;
1367 const int page_limit = cur_page + local_nr_pages;
cb4644ca 1368
f5dd33c4 1369 ret = get_user_pages_fast(uaddr, local_nr_pages,
26e49cfc
KO
1370 (iter->type & WRITE) != WRITE,
1371 &pages[cur_page]);
99172157
JA
1372 if (ret < local_nr_pages) {
1373 ret = -EFAULT;
f1970baf 1374 goto out_unmap;
99172157 1375 }
f1970baf 1376
bd5cecea 1377 offset = offset_in_page(uaddr);
f1970baf
JB
1378 for (j = cur_page; j < page_limit; j++) {
1379 unsigned int bytes = PAGE_SIZE - offset;
1380
1381 if (len <= 0)
1382 break;
1383
1384 if (bytes > len)
1385 bytes = len;
1386
1387 /*
1388 * sorry...
1389 */
defd94b7
MC
1390 if (bio_add_pc_page(q, bio, pages[j], bytes, offset) <
1391 bytes)
f1970baf
JB
1392 break;
1393
1394 len -= bytes;
1395 offset = 0;
1396 }
1da177e4 1397
f1970baf 1398 cur_page = j;
1da177e4 1399 /*
f1970baf 1400 * release the pages we didn't map into the bio, if any
1da177e4 1401 */
f1970baf 1402 while (j < page_limit)
09cbfeaf 1403 put_page(pages[j++]);
1da177e4
LT
1404 }
1405
1da177e4
LT
1406 kfree(pages);
1407
b7c44ed9 1408 bio_set_flag(bio, BIO_USER_MAPPED);
37f19e57
CH
1409
1410 /*
5fad1b64 1411 * subtle -- if bio_map_user_iov() ended up bouncing a bio,
37f19e57
CH
1412 * it would normally disappear when its bi_end_io is run.
1413 * however, we need it for the unmap, so grab an extra
1414 * reference to it
1415 */
1416 bio_get(bio);
1da177e4 1417 return bio;
f1970baf
JB
1418
1419 out_unmap:
26e49cfc
KO
1420 for (j = 0; j < nr_pages; j++) {
1421 if (!pages[j])
f1970baf 1422 break;
09cbfeaf 1423 put_page(pages[j]);
f1970baf
JB
1424 }
1425 out:
1da177e4
LT
1426 kfree(pages);
1427 bio_put(bio);
1428 return ERR_PTR(ret);
1429}
1430
1da177e4
LT
1431static void __bio_unmap_user(struct bio *bio)
1432{
1433 struct bio_vec *bvec;
1434 int i;
1435
1436 /*
1437 * make sure we dirty pages we wrote to
1438 */
d74c6d51 1439 bio_for_each_segment_all(bvec, bio, i) {
1da177e4
LT
1440 if (bio_data_dir(bio) == READ)
1441 set_page_dirty_lock(bvec->bv_page);
1442
09cbfeaf 1443 put_page(bvec->bv_page);
1da177e4
LT
1444 }
1445
1446 bio_put(bio);
1447}
1448
1449/**
1450 * bio_unmap_user - unmap a bio
1451 * @bio: the bio being unmapped
1452 *
5fad1b64
BVA
1453 * Unmap a bio previously mapped by bio_map_user_iov(). Must be called from
1454 * process context.
1da177e4
LT
1455 *
1456 * bio_unmap_user() may sleep.
1457 */
1458void bio_unmap_user(struct bio *bio)
1459{
1460 __bio_unmap_user(bio);
1461 bio_put(bio);
1462}
1463
4246a0b6 1464static void bio_map_kern_endio(struct bio *bio)
b823825e 1465{
b823825e 1466 bio_put(bio);
b823825e
JA
1467}
1468
75c72b83
CH
1469/**
1470 * bio_map_kern - map kernel address into bio
1471 * @q: the struct request_queue for the bio
1472 * @data: pointer to buffer to map
1473 * @len: length in bytes
1474 * @gfp_mask: allocation flags for bio allocation
1475 *
1476 * Map the kernel address into a bio suitable for io to a block
1477 * device. Returns an error pointer in case of error.
1478 */
1479struct bio *bio_map_kern(struct request_queue *q, void *data, unsigned int len,
1480 gfp_t gfp_mask)
df46b9a4
MC
1481{
1482 unsigned long kaddr = (unsigned long)data;
1483 unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1484 unsigned long start = kaddr >> PAGE_SHIFT;
1485 const int nr_pages = end - start;
1486 int offset, i;
1487 struct bio *bio;
1488
a9e9dc24 1489 bio = bio_kmalloc(gfp_mask, nr_pages);
df46b9a4
MC
1490 if (!bio)
1491 return ERR_PTR(-ENOMEM);
1492
1493 offset = offset_in_page(kaddr);
1494 for (i = 0; i < nr_pages; i++) {
1495 unsigned int bytes = PAGE_SIZE - offset;
1496
1497 if (len <= 0)
1498 break;
1499
1500 if (bytes > len)
1501 bytes = len;
1502
defd94b7 1503 if (bio_add_pc_page(q, bio, virt_to_page(data), bytes,
75c72b83
CH
1504 offset) < bytes) {
1505 /* we don't support partial mappings */
1506 bio_put(bio);
1507 return ERR_PTR(-EINVAL);
1508 }
df46b9a4
MC
1509
1510 data += bytes;
1511 len -= bytes;
1512 offset = 0;
1513 }
1514
b823825e 1515 bio->bi_end_io = bio_map_kern_endio;
df46b9a4
MC
1516 return bio;
1517}
a112a71d 1518EXPORT_SYMBOL(bio_map_kern);
df46b9a4 1519
4246a0b6 1520static void bio_copy_kern_endio(struct bio *bio)
68154e90 1521{
1dfa0f68
CH
1522 bio_free_pages(bio);
1523 bio_put(bio);
1524}
1525
4246a0b6 1526static void bio_copy_kern_endio_read(struct bio *bio)
1dfa0f68 1527{
42d2683a 1528 char *p = bio->bi_private;
1dfa0f68 1529 struct bio_vec *bvec;
68154e90
FT
1530 int i;
1531
d74c6d51 1532 bio_for_each_segment_all(bvec, bio, i) {
1dfa0f68 1533 memcpy(p, page_address(bvec->bv_page), bvec->bv_len);
c8db4448 1534 p += bvec->bv_len;
68154e90
FT
1535 }
1536
4246a0b6 1537 bio_copy_kern_endio(bio);
68154e90
FT
1538}
1539
1540/**
1541 * bio_copy_kern - copy kernel address into bio
1542 * @q: the struct request_queue for the bio
1543 * @data: pointer to buffer to copy
1544 * @len: length in bytes
1545 * @gfp_mask: allocation flags for bio and page allocation
ffee0259 1546 * @reading: data direction is READ
68154e90
FT
1547 *
1548 * copy the kernel address into a bio suitable for io to a block
1549 * device. Returns an error pointer in case of error.
1550 */
1551struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len,
1552 gfp_t gfp_mask, int reading)
1553{
42d2683a
CH
1554 unsigned long kaddr = (unsigned long)data;
1555 unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1556 unsigned long start = kaddr >> PAGE_SHIFT;
42d2683a
CH
1557 struct bio *bio;
1558 void *p = data;
1dfa0f68 1559 int nr_pages = 0;
68154e90 1560
42d2683a
CH
1561 /*
1562 * Overflow, abort
1563 */
1564 if (end < start)
1565 return ERR_PTR(-EINVAL);
68154e90 1566
42d2683a
CH
1567 nr_pages = end - start;
1568 bio = bio_kmalloc(gfp_mask, nr_pages);
1569 if (!bio)
1570 return ERR_PTR(-ENOMEM);
68154e90 1571
42d2683a
CH
1572 while (len) {
1573 struct page *page;
1574 unsigned int bytes = PAGE_SIZE;
68154e90 1575
42d2683a
CH
1576 if (bytes > len)
1577 bytes = len;
1578
1579 page = alloc_page(q->bounce_gfp | gfp_mask);
1580 if (!page)
1581 goto cleanup;
1582
1583 if (!reading)
1584 memcpy(page_address(page), p, bytes);
1585
1586 if (bio_add_pc_page(q, bio, page, bytes, 0) < bytes)
1587 break;
1588
1589 len -= bytes;
1590 p += bytes;
68154e90
FT
1591 }
1592
1dfa0f68
CH
1593 if (reading) {
1594 bio->bi_end_io = bio_copy_kern_endio_read;
1595 bio->bi_private = data;
1596 } else {
1597 bio->bi_end_io = bio_copy_kern_endio;
1dfa0f68 1598 }
76029ff3 1599
68154e90 1600 return bio;
42d2683a
CH
1601
1602cleanup:
1dfa0f68 1603 bio_free_pages(bio);
42d2683a
CH
1604 bio_put(bio);
1605 return ERR_PTR(-ENOMEM);
68154e90
FT
1606}
1607
1da177e4
LT
1608/*
1609 * bio_set_pages_dirty() and bio_check_pages_dirty() are support functions
1610 * for performing direct-IO in BIOs.
1611 *
1612 * The problem is that we cannot run set_page_dirty() from interrupt context
1613 * because the required locks are not interrupt-safe. So what we can do is to
1614 * mark the pages dirty _before_ performing IO. And in interrupt context,
1615 * check that the pages are still dirty. If so, fine. If not, redirty them
1616 * in process context.
1617 *
1618 * We special-case compound pages here: normally this means reads into hugetlb
1619 * pages. The logic in here doesn't really work right for compound pages
1620 * because the VM does not uniformly chase down the head page in all cases.
1621 * But dirtiness of compound pages is pretty meaningless anyway: the VM doesn't
1622 * handle them at all. So we skip compound pages here at an early stage.
1623 *
1624 * Note that this code is very hard to test under normal circumstances because
1625 * direct-io pins the pages with get_user_pages(). This makes
1626 * is_page_cache_freeable return false, and the VM will not clean the pages.
0d5c3eba 1627 * But other code (eg, flusher threads) could clean the pages if they are mapped
1da177e4
LT
1628 * pagecache.
1629 *
1630 * Simply disabling the call to bio_set_pages_dirty() is a good way to test the
1631 * deferred bio dirtying paths.
1632 */
1633
1634/*
1635 * bio_set_pages_dirty() will mark all the bio's pages as dirty.
1636 */
1637void bio_set_pages_dirty(struct bio *bio)
1638{
cb34e057 1639 struct bio_vec *bvec;
1da177e4
LT
1640 int i;
1641
cb34e057
KO
1642 bio_for_each_segment_all(bvec, bio, i) {
1643 struct page *page = bvec->bv_page;
1da177e4
LT
1644
1645 if (page && !PageCompound(page))
1646 set_page_dirty_lock(page);
1647 }
1648}
1649
86b6c7a7 1650static void bio_release_pages(struct bio *bio)
1da177e4 1651{
cb34e057 1652 struct bio_vec *bvec;
1da177e4
LT
1653 int i;
1654
cb34e057
KO
1655 bio_for_each_segment_all(bvec, bio, i) {
1656 struct page *page = bvec->bv_page;
1da177e4
LT
1657
1658 if (page)
1659 put_page(page);
1660 }
1661}
1662
1663/*
1664 * bio_check_pages_dirty() will check that all the BIO's pages are still dirty.
1665 * If they are, then fine. If, however, some pages are clean then they must
1666 * have been written out during the direct-IO read. So we take another ref on
1667 * the BIO and the offending pages and re-dirty the pages in process context.
1668 *
1669 * It is expected that bio_check_pages_dirty() will wholly own the BIO from
ea1754a0
KS
1670 * here on. It will run one put_page() against each page and will run one
1671 * bio_put() against the BIO.
1da177e4
LT
1672 */
1673
65f27f38 1674static void bio_dirty_fn(struct work_struct *work);
1da177e4 1675
65f27f38 1676static DECLARE_WORK(bio_dirty_work, bio_dirty_fn);
1da177e4
LT
1677static DEFINE_SPINLOCK(bio_dirty_lock);
1678static struct bio *bio_dirty_list;
1679
1680/*
1681 * This runs in process context
1682 */
65f27f38 1683static void bio_dirty_fn(struct work_struct *work)
1da177e4
LT
1684{
1685 unsigned long flags;
1686 struct bio *bio;
1687
1688 spin_lock_irqsave(&bio_dirty_lock, flags);
1689 bio = bio_dirty_list;
1690 bio_dirty_list = NULL;
1691 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1692
1693 while (bio) {
1694 struct bio *next = bio->bi_private;
1695
1696 bio_set_pages_dirty(bio);
1697 bio_release_pages(bio);
1698 bio_put(bio);
1699 bio = next;
1700 }
1701}
1702
1703void bio_check_pages_dirty(struct bio *bio)
1704{
cb34e057 1705 struct bio_vec *bvec;
1da177e4
LT
1706 int nr_clean_pages = 0;
1707 int i;
1708
cb34e057
KO
1709 bio_for_each_segment_all(bvec, bio, i) {
1710 struct page *page = bvec->bv_page;
1da177e4
LT
1711
1712 if (PageDirty(page) || PageCompound(page)) {
09cbfeaf 1713 put_page(page);
cb34e057 1714 bvec->bv_page = NULL;
1da177e4
LT
1715 } else {
1716 nr_clean_pages++;
1717 }
1718 }
1719
1720 if (nr_clean_pages) {
1721 unsigned long flags;
1722
1723 spin_lock_irqsave(&bio_dirty_lock, flags);
1724 bio->bi_private = bio_dirty_list;
1725 bio_dirty_list = bio;
1726 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1727 schedule_work(&bio_dirty_work);
1728 } else {
1729 bio_put(bio);
1730 }
1731}
1732
394ffa50
GZ
1733void generic_start_io_acct(int rw, unsigned long sectors,
1734 struct hd_struct *part)
1735{
1736 int cpu = part_stat_lock();
1737
1738 part_round_stats(cpu, part);
1739 part_stat_inc(cpu, part, ios[rw]);
1740 part_stat_add(cpu, part, sectors[rw], sectors);
1741 part_inc_in_flight(part, rw);
1742
1743 part_stat_unlock();
1744}
1745EXPORT_SYMBOL(generic_start_io_acct);
1746
1747void generic_end_io_acct(int rw, struct hd_struct *part,
1748 unsigned long start_time)
1749{
1750 unsigned long duration = jiffies - start_time;
1751 int cpu = part_stat_lock();
1752
1753 part_stat_add(cpu, part, ticks[rw], duration);
1754 part_round_stats(cpu, part);
1755 part_dec_in_flight(part, rw);
1756
1757 part_stat_unlock();
1758}
1759EXPORT_SYMBOL(generic_end_io_acct);
1760
2d4dc890
IL
1761#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
1762void bio_flush_dcache_pages(struct bio *bi)
1763{
7988613b
KO
1764 struct bio_vec bvec;
1765 struct bvec_iter iter;
2d4dc890 1766
7988613b
KO
1767 bio_for_each_segment(bvec, bi, iter)
1768 flush_dcache_page(bvec.bv_page);
2d4dc890
IL
1769}
1770EXPORT_SYMBOL(bio_flush_dcache_pages);
1771#endif
1772
c4cf5261
JA
1773static inline bool bio_remaining_done(struct bio *bio)
1774{
1775 /*
1776 * If we're not chaining, then ->__bi_remaining is always 1 and
1777 * we always end io on the first invocation.
1778 */
1779 if (!bio_flagged(bio, BIO_CHAIN))
1780 return true;
1781
1782 BUG_ON(atomic_read(&bio->__bi_remaining) <= 0);
1783
326e1dbb 1784 if (atomic_dec_and_test(&bio->__bi_remaining)) {
b7c44ed9 1785 bio_clear_flag(bio, BIO_CHAIN);
c4cf5261 1786 return true;
326e1dbb 1787 }
c4cf5261
JA
1788
1789 return false;
1790}
1791
1da177e4
LT
1792/**
1793 * bio_endio - end I/O on a bio
1794 * @bio: bio
1da177e4
LT
1795 *
1796 * Description:
4246a0b6
CH
1797 * bio_endio() will end I/O on the whole bio. bio_endio() is the preferred
1798 * way to end I/O on a bio. No one should call bi_end_io() directly on a
1799 * bio unless they own it and thus know that it has an end_io function.
fbbaf700
N
1800 *
1801 * bio_endio() can be called several times on a bio that has been chained
1802 * using bio_chain(). The ->bi_end_io() function will only be called the
1803 * last time. At this point the BLK_TA_COMPLETE tracing event will be
1804 * generated if BIO_TRACE_COMPLETION is set.
1da177e4 1805 **/
4246a0b6 1806void bio_endio(struct bio *bio)
1da177e4 1807{
ba8c6967 1808again:
2b885517 1809 if (!bio_remaining_done(bio))
ba8c6967 1810 return;
1da177e4 1811
ba8c6967
CH
1812 /*
1813 * Need to have a real endio function for chained bios, otherwise
1814 * various corner cases will break (like stacking block devices that
1815 * save/restore bi_end_io) - however, we want to avoid unbounded
1816 * recursion and blowing the stack. Tail call optimization would
1817 * handle this, but compiling with frame pointers also disables
1818 * gcc's sibling call optimization.
1819 */
1820 if (bio->bi_end_io == bio_chain_endio) {
1821 bio = __bio_chain_endio(bio);
1822 goto again;
196d38bc 1823 }
ba8c6967 1824
fbbaf700
N
1825 if (bio->bi_bdev && bio_flagged(bio, BIO_TRACE_COMPLETION)) {
1826 trace_block_bio_complete(bdev_get_queue(bio->bi_bdev),
1827 bio, bio->bi_error);
1828 bio_clear_flag(bio, BIO_TRACE_COMPLETION);
1829 }
1830
9e234eea 1831 blk_throtl_bio_endio(bio);
ba8c6967
CH
1832 if (bio->bi_end_io)
1833 bio->bi_end_io(bio);
1da177e4 1834}
a112a71d 1835EXPORT_SYMBOL(bio_endio);
1da177e4 1836
20d0189b
KO
1837/**
1838 * bio_split - split a bio
1839 * @bio: bio to split
1840 * @sectors: number of sectors to split from the front of @bio
1841 * @gfp: gfp mask
1842 * @bs: bio set to allocate from
1843 *
1844 * Allocates and returns a new bio which represents @sectors from the start of
1845 * @bio, and updates @bio to represent the remaining sectors.
1846 *
f3f5da62
MP
1847 * Unless this is a discard request the newly allocated bio will point
1848 * to @bio's bi_io_vec; it is the caller's responsibility to ensure that
1849 * @bio is not freed before the split.
20d0189b
KO
1850 */
1851struct bio *bio_split(struct bio *bio, int sectors,
1852 gfp_t gfp, struct bio_set *bs)
1853{
1854 struct bio *split = NULL;
1855
1856 BUG_ON(sectors <= 0);
1857 BUG_ON(sectors >= bio_sectors(bio));
1858
f9d03f96 1859 split = bio_clone_fast(bio, gfp, bs);
20d0189b
KO
1860 if (!split)
1861 return NULL;
1862
1863 split->bi_iter.bi_size = sectors << 9;
1864
1865 if (bio_integrity(split))
1866 bio_integrity_trim(split, 0, sectors);
1867
1868 bio_advance(bio, split->bi_iter.bi_size);
1869
fbbaf700
N
1870 if (bio_flagged(bio, BIO_TRACE_COMPLETION))
1871 bio_set_flag(bio, BIO_TRACE_COMPLETION);
1872
20d0189b
KO
1873 return split;
1874}
1875EXPORT_SYMBOL(bio_split);
1876
6678d83f
KO
1877/**
1878 * bio_trim - trim a bio
1879 * @bio: bio to trim
1880 * @offset: number of sectors to trim from the front of @bio
1881 * @size: size we want to trim @bio to, in sectors
1882 */
1883void bio_trim(struct bio *bio, int offset, int size)
1884{
1885 /* 'bio' is a cloned bio which we need to trim to match
1886 * the given offset and size.
6678d83f 1887 */
6678d83f
KO
1888
1889 size <<= 9;
4f024f37 1890 if (offset == 0 && size == bio->bi_iter.bi_size)
6678d83f
KO
1891 return;
1892
b7c44ed9 1893 bio_clear_flag(bio, BIO_SEG_VALID);
6678d83f
KO
1894
1895 bio_advance(bio, offset << 9);
1896
4f024f37 1897 bio->bi_iter.bi_size = size;
6678d83f
KO
1898}
1899EXPORT_SYMBOL_GPL(bio_trim);
1900
1da177e4
LT
1901/*
1902 * create memory pools for biovec's in a bio_set.
1903 * use the global biovec slabs created for general use.
1904 */
a6c39cb4 1905mempool_t *biovec_create_pool(int pool_entries)
1da177e4 1906{
ed996a52 1907 struct biovec_slab *bp = bvec_slabs + BVEC_POOL_MAX;
1da177e4 1908
9f060e22 1909 return mempool_create_slab_pool(pool_entries, bp->slab);
1da177e4
LT
1910}
1911
1912void bioset_free(struct bio_set *bs)
1913{
df2cb6da
KO
1914 if (bs->rescue_workqueue)
1915 destroy_workqueue(bs->rescue_workqueue);
1916
1da177e4
LT
1917 if (bs->bio_pool)
1918 mempool_destroy(bs->bio_pool);
1919
9f060e22
KO
1920 if (bs->bvec_pool)
1921 mempool_destroy(bs->bvec_pool);
1922
7878cba9 1923 bioset_integrity_free(bs);
bb799ca0 1924 bio_put_slab(bs);
1da177e4
LT
1925
1926 kfree(bs);
1927}
a112a71d 1928EXPORT_SYMBOL(bioset_free);
1da177e4 1929
d8f429e1
JN
1930static struct bio_set *__bioset_create(unsigned int pool_size,
1931 unsigned int front_pad,
1932 bool create_bvec_pool)
1da177e4 1933{
392ddc32 1934 unsigned int back_pad = BIO_INLINE_VECS * sizeof(struct bio_vec);
1b434498 1935 struct bio_set *bs;
1da177e4 1936
1b434498 1937 bs = kzalloc(sizeof(*bs), GFP_KERNEL);
1da177e4
LT
1938 if (!bs)
1939 return NULL;
1940
bb799ca0 1941 bs->front_pad = front_pad;
1b434498 1942
df2cb6da
KO
1943 spin_lock_init(&bs->rescue_lock);
1944 bio_list_init(&bs->rescue_list);
1945 INIT_WORK(&bs->rescue_work, bio_alloc_rescue);
1946
392ddc32 1947 bs->bio_slab = bio_find_or_create_slab(front_pad + back_pad);
bb799ca0
JA
1948 if (!bs->bio_slab) {
1949 kfree(bs);
1950 return NULL;
1951 }
1952
1953 bs->bio_pool = mempool_create_slab_pool(pool_size, bs->bio_slab);
1da177e4
LT
1954 if (!bs->bio_pool)
1955 goto bad;
1956
d8f429e1
JN
1957 if (create_bvec_pool) {
1958 bs->bvec_pool = biovec_create_pool(pool_size);
1959 if (!bs->bvec_pool)
1960 goto bad;
1961 }
df2cb6da
KO
1962
1963 bs->rescue_workqueue = alloc_workqueue("bioset", WQ_MEM_RECLAIM, 0);
1964 if (!bs->rescue_workqueue)
1965 goto bad;
1da177e4 1966
df2cb6da 1967 return bs;
1da177e4
LT
1968bad:
1969 bioset_free(bs);
1970 return NULL;
1971}
d8f429e1
JN
1972
1973/**
1974 * bioset_create - Create a bio_set
1975 * @pool_size: Number of bio and bio_vecs to cache in the mempool
1976 * @front_pad: Number of bytes to allocate in front of the returned bio
1977 *
1978 * Description:
1979 * Set up a bio_set to be used with @bio_alloc_bioset. Allows the caller
1980 * to ask for a number of bytes to be allocated in front of the bio.
1981 * Front pad allocation is useful for embedding the bio inside
1982 * another structure, to avoid allocating extra data to go with the bio.
1983 * Note that the bio must be embedded at the END of that structure always,
1984 * or things will break badly.
1985 */
1986struct bio_set *bioset_create(unsigned int pool_size, unsigned int front_pad)
1987{
1988 return __bioset_create(pool_size, front_pad, true);
1989}
a112a71d 1990EXPORT_SYMBOL(bioset_create);
1da177e4 1991
d8f429e1
JN
1992/**
1993 * bioset_create_nobvec - Create a bio_set without bio_vec mempool
1994 * @pool_size: Number of bio to cache in the mempool
1995 * @front_pad: Number of bytes to allocate in front of the returned bio
1996 *
1997 * Description:
1998 * Same functionality as bioset_create() except that mempool is not
1999 * created for bio_vecs. Saving some memory for bio_clone_fast() users.
2000 */
2001struct bio_set *bioset_create_nobvec(unsigned int pool_size, unsigned int front_pad)
2002{
2003 return __bioset_create(pool_size, front_pad, false);
2004}
2005EXPORT_SYMBOL(bioset_create_nobvec);
2006
852c788f 2007#ifdef CONFIG_BLK_CGROUP
1d933cf0
TH
2008
2009/**
2010 * bio_associate_blkcg - associate a bio with the specified blkcg
2011 * @bio: target bio
2012 * @blkcg_css: css of the blkcg to associate
2013 *
2014 * Associate @bio with the blkcg specified by @blkcg_css. Block layer will
2015 * treat @bio as if it were issued by a task which belongs to the blkcg.
2016 *
2017 * This function takes an extra reference of @blkcg_css which will be put
2018 * when @bio is released. The caller must own @bio and is responsible for
2019 * synchronizing calls to this function.
2020 */
2021int bio_associate_blkcg(struct bio *bio, struct cgroup_subsys_state *blkcg_css)
2022{
2023 if (unlikely(bio->bi_css))
2024 return -EBUSY;
2025 css_get(blkcg_css);
2026 bio->bi_css = blkcg_css;
2027 return 0;
2028}
5aa2a96b 2029EXPORT_SYMBOL_GPL(bio_associate_blkcg);
1d933cf0 2030
852c788f
TH
2031/**
2032 * bio_associate_current - associate a bio with %current
2033 * @bio: target bio
2034 *
2035 * Associate @bio with %current if it hasn't been associated yet. Block
2036 * layer will treat @bio as if it were issued by %current no matter which
2037 * task actually issues it.
2038 *
2039 * This function takes an extra reference of @task's io_context and blkcg
2040 * which will be put when @bio is released. The caller must own @bio,
2041 * ensure %current->io_context exists, and is responsible for synchronizing
2042 * calls to this function.
2043 */
2044int bio_associate_current(struct bio *bio)
2045{
2046 struct io_context *ioc;
852c788f 2047
1d933cf0 2048 if (bio->bi_css)
852c788f
TH
2049 return -EBUSY;
2050
2051 ioc = current->io_context;
2052 if (!ioc)
2053 return -ENOENT;
2054
852c788f
TH
2055 get_io_context_active(ioc);
2056 bio->bi_ioc = ioc;
c165b3e3 2057 bio->bi_css = task_get_css(current, io_cgrp_id);
852c788f
TH
2058 return 0;
2059}
5aa2a96b 2060EXPORT_SYMBOL_GPL(bio_associate_current);
852c788f
TH
2061
2062/**
2063 * bio_disassociate_task - undo bio_associate_current()
2064 * @bio: target bio
2065 */
2066void bio_disassociate_task(struct bio *bio)
2067{
2068 if (bio->bi_ioc) {
2069 put_io_context(bio->bi_ioc);
2070 bio->bi_ioc = NULL;
2071 }
2072 if (bio->bi_css) {
2073 css_put(bio->bi_css);
2074 bio->bi_css = NULL;
2075 }
2076}
2077
20bd723e
PV
2078/**
2079 * bio_clone_blkcg_association - clone blkcg association from src to dst bio
2080 * @dst: destination bio
2081 * @src: source bio
2082 */
2083void bio_clone_blkcg_association(struct bio *dst, struct bio *src)
2084{
2085 if (src->bi_css)
2086 WARN_ON(bio_associate_blkcg(dst, src->bi_css));
2087}
2088
852c788f
TH
2089#endif /* CONFIG_BLK_CGROUP */
2090
1da177e4
LT
2091static void __init biovec_init_slabs(void)
2092{
2093 int i;
2094
ed996a52 2095 for (i = 0; i < BVEC_POOL_NR; i++) {
1da177e4
LT
2096 int size;
2097 struct biovec_slab *bvs = bvec_slabs + i;
2098
a7fcd37c
JA
2099 if (bvs->nr_vecs <= BIO_INLINE_VECS) {
2100 bvs->slab = NULL;
2101 continue;
2102 }
a7fcd37c 2103
1da177e4
LT
2104 size = bvs->nr_vecs * sizeof(struct bio_vec);
2105 bvs->slab = kmem_cache_create(bvs->name, size, 0,
20c2df83 2106 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
1da177e4
LT
2107 }
2108}
2109
2110static int __init init_bio(void)
2111{
bb799ca0
JA
2112 bio_slab_max = 2;
2113 bio_slab_nr = 0;
2114 bio_slabs = kzalloc(bio_slab_max * sizeof(struct bio_slab), GFP_KERNEL);
2115 if (!bio_slabs)
2116 panic("bio: can't allocate bios\n");
1da177e4 2117
7878cba9 2118 bio_integrity_init();
1da177e4
LT
2119 biovec_init_slabs();
2120
bb799ca0 2121 fs_bio_set = bioset_create(BIO_POOL_SIZE, 0);
1da177e4
LT
2122 if (!fs_bio_set)
2123 panic("bio: can't allocate bios\n");
2124
a91a2785
MP
2125 if (bioset_integrity_create(fs_bio_set, BIO_POOL_SIZE))
2126 panic("bio: can't create integrity pool\n");
2127
1da177e4
LT
2128 return 0;
2129}
1da177e4 2130subsys_initcall(init_bio);