]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/md/dm.c
dm kcopyd: return client directly and not through a pointer
[mirror_ubuntu-artful-kernel.git] / drivers / md / dm.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
784aae73 3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
1da177e4
LT
4 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
51e5b2bd 9#include "dm-uevent.h"
1da177e4
LT
10
11#include <linux/init.h>
12#include <linux/module.h>
48c9c27b 13#include <linux/mutex.h>
1da177e4
LT
14#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
17#include <linux/buffer_head.h>
18#include <linux/mempool.h>
19#include <linux/slab.h>
20#include <linux/idr.h>
3ac51e74 21#include <linux/hdreg.h>
3f77316d 22#include <linux/delay.h>
55782138
LZ
23
24#include <trace/events/block.h>
1da177e4 25
72d94861
AK
26#define DM_MSG_PREFIX "core"
27
60935eb2
MB
28/*
29 * Cookies are numeric values sent with CHANGE and REMOVE
30 * uevents while resuming, removing or renaming the device.
31 */
32#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
33#define DM_COOKIE_LENGTH 24
34
1da177e4
LT
35static const char *_name = DM_NAME;
36
37static unsigned int major = 0;
38static unsigned int _major = 0;
39
f32c10b0 40static DEFINE_SPINLOCK(_minor_lock);
1da177e4 41/*
8fbf26ad 42 * For bio-based dm.
1da177e4
LT
43 * One of these is allocated per bio.
44 */
45struct dm_io {
46 struct mapped_device *md;
47 int error;
1da177e4 48 atomic_t io_count;
6ae2fa67 49 struct bio *bio;
3eaf840e 50 unsigned long start_time;
f88fb981 51 spinlock_t endio_lock;
1da177e4
LT
52};
53
54/*
8fbf26ad 55 * For bio-based dm.
1da177e4
LT
56 * One of these is allocated per target within a bio. Hopefully
57 * this will be simplified out one day.
58 */
028867ac 59struct dm_target_io {
1da177e4
LT
60 struct dm_io *io;
61 struct dm_target *ti;
62 union map_info info;
63};
64
8fbf26ad
KU
65/*
66 * For request-based dm.
67 * One of these is allocated per request.
68 */
69struct dm_rq_target_io {
70 struct mapped_device *md;
71 struct dm_target *ti;
72 struct request *orig, clone;
73 int error;
74 union map_info info;
75};
76
77/*
78 * For request-based dm.
79 * One of these is allocated per bio.
80 */
81struct dm_rq_clone_bio_info {
82 struct bio *orig;
cec47e3d 83 struct dm_rq_target_io *tio;
8fbf26ad
KU
84};
85
1da177e4
LT
86union map_info *dm_get_mapinfo(struct bio *bio)
87{
17b2f66f 88 if (bio && bio->bi_private)
028867ac 89 return &((struct dm_target_io *)bio->bi_private)->info;
17b2f66f 90 return NULL;
1da177e4
LT
91}
92
cec47e3d
KU
93union map_info *dm_get_rq_mapinfo(struct request *rq)
94{
95 if (rq && rq->end_io_data)
96 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
97 return NULL;
98}
99EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
100
ba61fdd1
JM
101#define MINOR_ALLOCED ((void *)-1)
102
1da177e4
LT
103/*
104 * Bits for the md->flags field.
105 */
1eb787ec 106#define DMF_BLOCK_IO_FOR_SUSPEND 0
1da177e4 107#define DMF_SUSPENDED 1
aa8d7c2f 108#define DMF_FROZEN 2
fba9f90e 109#define DMF_FREEING 3
5c6bd75d 110#define DMF_DELETING 4
2e93ccc1 111#define DMF_NOFLUSH_SUSPENDING 5
1da177e4 112
304f3f6a
MB
113/*
114 * Work processed by per-device workqueue.
115 */
1da177e4 116struct mapped_device {
2ca3310e 117 struct rw_semaphore io_lock;
e61290a4 118 struct mutex suspend_lock;
1da177e4
LT
119 rwlock_t map_lock;
120 atomic_t holders;
5c6bd75d 121 atomic_t open_count;
1da177e4
LT
122
123 unsigned long flags;
124
165125e1 125 struct request_queue *queue;
a5664dad 126 unsigned type;
4a0b4ddf 127 /* Protect queue and type against concurrent access. */
a5664dad
MS
128 struct mutex type_lock;
129
1da177e4 130 struct gendisk *disk;
7e51f257 131 char name[16];
1da177e4
LT
132
133 void *interface_ptr;
134
135 /*
136 * A list of ios that arrived while we were suspended.
137 */
316d315b 138 atomic_t pending[2];
1da177e4 139 wait_queue_head_t wait;
53d5914f 140 struct work_struct work;
74859364 141 struct bio_list deferred;
022c2611 142 spinlock_t deferred_lock;
1da177e4 143
af7e466a 144 /*
29e4013d 145 * Processing queue (flush)
304f3f6a
MB
146 */
147 struct workqueue_struct *wq;
148
1da177e4
LT
149 /*
150 * The current mapping.
151 */
152 struct dm_table *map;
153
154 /*
155 * io objects are allocated from here.
156 */
157 mempool_t *io_pool;
158 mempool_t *tio_pool;
159
9faf400f
SB
160 struct bio_set *bs;
161
1da177e4
LT
162 /*
163 * Event handling.
164 */
165 atomic_t event_nr;
166 wait_queue_head_t eventq;
7a8c3d3b
MA
167 atomic_t uevent_seq;
168 struct list_head uevent_list;
169 spinlock_t uevent_lock; /* Protect access to uevent_list */
1da177e4
LT
170
171 /*
172 * freeze/thaw support require holding onto a super block
173 */
174 struct super_block *frozen_sb;
db8fef4f 175 struct block_device *bdev;
3ac51e74
DW
176
177 /* forced geometry settings */
178 struct hd_geometry geometry;
784aae73 179
cec47e3d
KU
180 /* For saving the address of __make_request for request based dm */
181 make_request_fn *saved_make_request_fn;
182
784aae73
MB
183 /* sysfs handle */
184 struct kobject kobj;
52b1fd5a 185
d87f4c14
TH
186 /* zero-length flush that will be cloned and submitted to targets */
187 struct bio flush_bio;
1da177e4
LT
188};
189
e6ee8c0b
KU
190/*
191 * For mempools pre-allocation at the table loading time.
192 */
193struct dm_md_mempools {
194 mempool_t *io_pool;
195 mempool_t *tio_pool;
196 struct bio_set *bs;
197};
198
1da177e4 199#define MIN_IOS 256
e18b890b
CL
200static struct kmem_cache *_io_cache;
201static struct kmem_cache *_tio_cache;
8fbf26ad
KU
202static struct kmem_cache *_rq_tio_cache;
203static struct kmem_cache *_rq_bio_info_cache;
1da177e4 204
1da177e4
LT
205static int __init local_init(void)
206{
51157b4a 207 int r = -ENOMEM;
1da177e4 208
1da177e4 209 /* allocate a slab for the dm_ios */
028867ac 210 _io_cache = KMEM_CACHE(dm_io, 0);
1da177e4 211 if (!_io_cache)
51157b4a 212 return r;
1da177e4
LT
213
214 /* allocate a slab for the target ios */
028867ac 215 _tio_cache = KMEM_CACHE(dm_target_io, 0);
51157b4a
KU
216 if (!_tio_cache)
217 goto out_free_io_cache;
1da177e4 218
8fbf26ad
KU
219 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
220 if (!_rq_tio_cache)
221 goto out_free_tio_cache;
222
223 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
224 if (!_rq_bio_info_cache)
225 goto out_free_rq_tio_cache;
226
51e5b2bd 227 r = dm_uevent_init();
51157b4a 228 if (r)
8fbf26ad 229 goto out_free_rq_bio_info_cache;
51e5b2bd 230
1da177e4
LT
231 _major = major;
232 r = register_blkdev(_major, _name);
51157b4a
KU
233 if (r < 0)
234 goto out_uevent_exit;
1da177e4
LT
235
236 if (!_major)
237 _major = r;
238
239 return 0;
51157b4a
KU
240
241out_uevent_exit:
242 dm_uevent_exit();
8fbf26ad
KU
243out_free_rq_bio_info_cache:
244 kmem_cache_destroy(_rq_bio_info_cache);
245out_free_rq_tio_cache:
246 kmem_cache_destroy(_rq_tio_cache);
51157b4a
KU
247out_free_tio_cache:
248 kmem_cache_destroy(_tio_cache);
249out_free_io_cache:
250 kmem_cache_destroy(_io_cache);
251
252 return r;
1da177e4
LT
253}
254
255static void local_exit(void)
256{
8fbf26ad
KU
257 kmem_cache_destroy(_rq_bio_info_cache);
258 kmem_cache_destroy(_rq_tio_cache);
1da177e4
LT
259 kmem_cache_destroy(_tio_cache);
260 kmem_cache_destroy(_io_cache);
00d59405 261 unregister_blkdev(_major, _name);
51e5b2bd 262 dm_uevent_exit();
1da177e4
LT
263
264 _major = 0;
265
266 DMINFO("cleaned up");
267}
268
b9249e55 269static int (*_inits[])(void) __initdata = {
1da177e4
LT
270 local_init,
271 dm_target_init,
272 dm_linear_init,
273 dm_stripe_init,
952b3557 274 dm_io_init,
945fa4d2 275 dm_kcopyd_init,
1da177e4
LT
276 dm_interface_init,
277};
278
b9249e55 279static void (*_exits[])(void) = {
1da177e4
LT
280 local_exit,
281 dm_target_exit,
282 dm_linear_exit,
283 dm_stripe_exit,
952b3557 284 dm_io_exit,
945fa4d2 285 dm_kcopyd_exit,
1da177e4
LT
286 dm_interface_exit,
287};
288
289static int __init dm_init(void)
290{
291 const int count = ARRAY_SIZE(_inits);
292
293 int r, i;
294
295 for (i = 0; i < count; i++) {
296 r = _inits[i]();
297 if (r)
298 goto bad;
299 }
300
301 return 0;
302
303 bad:
304 while (i--)
305 _exits[i]();
306
307 return r;
308}
309
310static void __exit dm_exit(void)
311{
312 int i = ARRAY_SIZE(_exits);
313
314 while (i--)
315 _exits[i]();
316}
317
318/*
319 * Block device functions
320 */
432a212c
MA
321int dm_deleting_md(struct mapped_device *md)
322{
323 return test_bit(DMF_DELETING, &md->flags);
324}
325
fe5f9f2c 326static int dm_blk_open(struct block_device *bdev, fmode_t mode)
1da177e4
LT
327{
328 struct mapped_device *md;
329
fba9f90e
JM
330 spin_lock(&_minor_lock);
331
fe5f9f2c 332 md = bdev->bd_disk->private_data;
fba9f90e
JM
333 if (!md)
334 goto out;
335
5c6bd75d 336 if (test_bit(DMF_FREEING, &md->flags) ||
432a212c 337 dm_deleting_md(md)) {
fba9f90e
JM
338 md = NULL;
339 goto out;
340 }
341
1da177e4 342 dm_get(md);
5c6bd75d 343 atomic_inc(&md->open_count);
fba9f90e
JM
344
345out:
346 spin_unlock(&_minor_lock);
347
348 return md ? 0 : -ENXIO;
1da177e4
LT
349}
350
fe5f9f2c 351static int dm_blk_close(struct gendisk *disk, fmode_t mode)
1da177e4 352{
fe5f9f2c 353 struct mapped_device *md = disk->private_data;
6e9624b8 354
4a1aeb98
MB
355 spin_lock(&_minor_lock);
356
5c6bd75d 357 atomic_dec(&md->open_count);
1da177e4 358 dm_put(md);
4a1aeb98
MB
359
360 spin_unlock(&_minor_lock);
6e9624b8 361
1da177e4
LT
362 return 0;
363}
364
5c6bd75d
AK
365int dm_open_count(struct mapped_device *md)
366{
367 return atomic_read(&md->open_count);
368}
369
370/*
371 * Guarantees nothing is using the device before it's deleted.
372 */
373int dm_lock_for_deletion(struct mapped_device *md)
374{
375 int r = 0;
376
377 spin_lock(&_minor_lock);
378
379 if (dm_open_count(md))
380 r = -EBUSY;
381 else
382 set_bit(DMF_DELETING, &md->flags);
383
384 spin_unlock(&_minor_lock);
385
386 return r;
387}
388
3ac51e74
DW
389static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
390{
391 struct mapped_device *md = bdev->bd_disk->private_data;
392
393 return dm_get_geometry(md, geo);
394}
395
fe5f9f2c 396static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
aa129a22
MB
397 unsigned int cmd, unsigned long arg)
398{
fe5f9f2c 399 struct mapped_device *md = bdev->bd_disk->private_data;
7c666411 400 struct dm_table *map = dm_get_live_table(md);
aa129a22
MB
401 struct dm_target *tgt;
402 int r = -ENOTTY;
403
aa129a22
MB
404 if (!map || !dm_table_get_size(map))
405 goto out;
406
407 /* We only support devices that have a single target */
408 if (dm_table_get_num_targets(map) != 1)
409 goto out;
410
411 tgt = dm_table_get_target(map, 0);
412
4f186f8b 413 if (dm_suspended_md(md)) {
aa129a22
MB
414 r = -EAGAIN;
415 goto out;
416 }
417
418 if (tgt->type->ioctl)
647b3d00 419 r = tgt->type->ioctl(tgt, cmd, arg);
aa129a22
MB
420
421out:
422 dm_table_put(map);
423
aa129a22
MB
424 return r;
425}
426
028867ac 427static struct dm_io *alloc_io(struct mapped_device *md)
1da177e4
LT
428{
429 return mempool_alloc(md->io_pool, GFP_NOIO);
430}
431
028867ac 432static void free_io(struct mapped_device *md, struct dm_io *io)
1da177e4
LT
433{
434 mempool_free(io, md->io_pool);
435}
436
028867ac 437static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
1da177e4
LT
438{
439 mempool_free(tio, md->tio_pool);
440}
441
08885643
KU
442static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
443 gfp_t gfp_mask)
cec47e3d 444{
08885643 445 return mempool_alloc(md->tio_pool, gfp_mask);
cec47e3d
KU
446}
447
448static void free_rq_tio(struct dm_rq_target_io *tio)
449{
450 mempool_free(tio, tio->md->tio_pool);
451}
452
453static struct dm_rq_clone_bio_info *alloc_bio_info(struct mapped_device *md)
454{
455 return mempool_alloc(md->io_pool, GFP_ATOMIC);
456}
457
458static void free_bio_info(struct dm_rq_clone_bio_info *info)
459{
460 mempool_free(info, info->tio->md->io_pool);
461}
462
90abb8c4
KU
463static int md_in_flight(struct mapped_device *md)
464{
465 return atomic_read(&md->pending[READ]) +
466 atomic_read(&md->pending[WRITE]);
467}
468
3eaf840e
JNN
469static void start_io_acct(struct dm_io *io)
470{
471 struct mapped_device *md = io->md;
c9959059 472 int cpu;
316d315b 473 int rw = bio_data_dir(io->bio);
3eaf840e
JNN
474
475 io->start_time = jiffies;
476
074a7aca
TH
477 cpu = part_stat_lock();
478 part_round_stats(cpu, &dm_disk(md)->part0);
479 part_stat_unlock();
1e9bb880
SL
480 atomic_set(&dm_disk(md)->part0.in_flight[rw],
481 atomic_inc_return(&md->pending[rw]));
3eaf840e
JNN
482}
483
d221d2e7 484static void end_io_acct(struct dm_io *io)
3eaf840e
JNN
485{
486 struct mapped_device *md = io->md;
487 struct bio *bio = io->bio;
488 unsigned long duration = jiffies - io->start_time;
c9959059 489 int pending, cpu;
3eaf840e
JNN
490 int rw = bio_data_dir(bio);
491
074a7aca
TH
492 cpu = part_stat_lock();
493 part_round_stats(cpu, &dm_disk(md)->part0);
494 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
495 part_stat_unlock();
3eaf840e 496
af7e466a
MP
497 /*
498 * After this is decremented the bio must not be touched if it is
d87f4c14 499 * a flush.
af7e466a 500 */
1e9bb880
SL
501 pending = atomic_dec_return(&md->pending[rw]);
502 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
316d315b 503 pending += atomic_read(&md->pending[rw^0x1]);
3eaf840e 504
d221d2e7
MP
505 /* nudge anyone waiting on suspend queue */
506 if (!pending)
507 wake_up(&md->wait);
3eaf840e
JNN
508}
509
1da177e4
LT
510/*
511 * Add the bio to the list of deferred io.
512 */
92c63902 513static void queue_io(struct mapped_device *md, struct bio *bio)
1da177e4 514{
05447420 515 unsigned long flags;
1da177e4 516
05447420 517 spin_lock_irqsave(&md->deferred_lock, flags);
1da177e4 518 bio_list_add(&md->deferred, bio);
05447420 519 spin_unlock_irqrestore(&md->deferred_lock, flags);
6a8736d1 520 queue_work(md->wq, &md->work);
1da177e4
LT
521}
522
523/*
524 * Everyone (including functions in this file), should use this
525 * function to access the md->map field, and make sure they call
526 * dm_table_put() when finished.
527 */
7c666411 528struct dm_table *dm_get_live_table(struct mapped_device *md)
1da177e4
LT
529{
530 struct dm_table *t;
523d9297 531 unsigned long flags;
1da177e4 532
523d9297 533 read_lock_irqsave(&md->map_lock, flags);
1da177e4
LT
534 t = md->map;
535 if (t)
536 dm_table_get(t);
523d9297 537 read_unlock_irqrestore(&md->map_lock, flags);
1da177e4
LT
538
539 return t;
540}
541
3ac51e74
DW
542/*
543 * Get the geometry associated with a dm device
544 */
545int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
546{
547 *geo = md->geometry;
548
549 return 0;
550}
551
552/*
553 * Set the geometry of a device.
554 */
555int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
556{
557 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
558
559 if (geo->start > sz) {
560 DMWARN("Start sector is beyond the geometry limits.");
561 return -EINVAL;
562 }
563
564 md->geometry = *geo;
565
566 return 0;
567}
568
1da177e4
LT
569/*-----------------------------------------------------------------
570 * CRUD START:
571 * A more elegant soln is in the works that uses the queue
572 * merge fn, unfortunately there are a couple of changes to
573 * the block layer that I want to make for this. So in the
574 * interests of getting something for people to use I give
575 * you this clearly demarcated crap.
576 *---------------------------------------------------------------*/
577
2e93ccc1
KU
578static int __noflush_suspending(struct mapped_device *md)
579{
580 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
581}
582
1da177e4
LT
583/*
584 * Decrements the number of outstanding ios that a bio has been
585 * cloned into, completing the original io if necc.
586 */
858119e1 587static void dec_pending(struct dm_io *io, int error)
1da177e4 588{
2e93ccc1 589 unsigned long flags;
b35f8caa
MB
590 int io_error;
591 struct bio *bio;
592 struct mapped_device *md = io->md;
2e93ccc1
KU
593
594 /* Push-back supersedes any I/O errors */
f88fb981
KU
595 if (unlikely(error)) {
596 spin_lock_irqsave(&io->endio_lock, flags);
597 if (!(io->error > 0 && __noflush_suspending(md)))
598 io->error = error;
599 spin_unlock_irqrestore(&io->endio_lock, flags);
600 }
1da177e4
LT
601
602 if (atomic_dec_and_test(&io->io_count)) {
2e93ccc1
KU
603 if (io->error == DM_ENDIO_REQUEUE) {
604 /*
605 * Target requested pushing back the I/O.
2e93ccc1 606 */
022c2611 607 spin_lock_irqsave(&md->deferred_lock, flags);
6a8736d1
TH
608 if (__noflush_suspending(md))
609 bio_list_add_head(&md->deferred, io->bio);
610 else
2e93ccc1
KU
611 /* noflush suspend was interrupted. */
612 io->error = -EIO;
022c2611 613 spin_unlock_irqrestore(&md->deferred_lock, flags);
2e93ccc1
KU
614 }
615
b35f8caa
MB
616 io_error = io->error;
617 bio = io->bio;
6a8736d1
TH
618 end_io_acct(io);
619 free_io(md, io);
620
621 if (io_error == DM_ENDIO_REQUEUE)
622 return;
2e93ccc1 623
b372d360 624 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_size) {
af7e466a 625 /*
6a8736d1
TH
626 * Preflush done for flush with data, reissue
627 * without REQ_FLUSH.
af7e466a 628 */
6a8736d1
TH
629 bio->bi_rw &= ~REQ_FLUSH;
630 queue_io(md, bio);
af7e466a 631 } else {
b372d360 632 /* done with normal IO or empty flush */
b7908c10 633 trace_block_bio_complete(md->queue, bio, io_error);
b372d360 634 bio_endio(bio, io_error);
b35f8caa 635 }
1da177e4
LT
636 }
637}
638
6712ecf8 639static void clone_endio(struct bio *bio, int error)
1da177e4
LT
640{
641 int r = 0;
028867ac 642 struct dm_target_io *tio = bio->bi_private;
b35f8caa 643 struct dm_io *io = tio->io;
9faf400f 644 struct mapped_device *md = tio->io->md;
1da177e4
LT
645 dm_endio_fn endio = tio->ti->type->end_io;
646
1da177e4
LT
647 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
648 error = -EIO;
649
650 if (endio) {
651 r = endio(tio->ti, bio, error, &tio->info);
2e93ccc1
KU
652 if (r < 0 || r == DM_ENDIO_REQUEUE)
653 /*
654 * error and requeue request are handled
655 * in dec_pending().
656 */
1da177e4 657 error = r;
45cbcd79
KU
658 else if (r == DM_ENDIO_INCOMPLETE)
659 /* The target will handle the io */
6712ecf8 660 return;
45cbcd79
KU
661 else if (r) {
662 DMWARN("unimplemented target endio return value: %d", r);
663 BUG();
664 }
1da177e4
LT
665 }
666
9faf400f
SB
667 /*
668 * Store md for cleanup instead of tio which is about to get freed.
669 */
670 bio->bi_private = md->bs;
671
9faf400f 672 free_tio(md, tio);
b35f8caa
MB
673 bio_put(bio);
674 dec_pending(io, error);
1da177e4
LT
675}
676
cec47e3d
KU
677/*
678 * Partial completion handling for request-based dm
679 */
680static void end_clone_bio(struct bio *clone, int error)
681{
682 struct dm_rq_clone_bio_info *info = clone->bi_private;
683 struct dm_rq_target_io *tio = info->tio;
684 struct bio *bio = info->orig;
685 unsigned int nr_bytes = info->orig->bi_size;
686
687 bio_put(clone);
688
689 if (tio->error)
690 /*
691 * An error has already been detected on the request.
692 * Once error occurred, just let clone->end_io() handle
693 * the remainder.
694 */
695 return;
696 else if (error) {
697 /*
698 * Don't notice the error to the upper layer yet.
699 * The error handling decision is made by the target driver,
700 * when the request is completed.
701 */
702 tio->error = error;
703 return;
704 }
705
706 /*
707 * I/O for the bio successfully completed.
708 * Notice the data completion to the upper layer.
709 */
710
711 /*
712 * bios are processed from the head of the list.
713 * So the completing bio should always be rq->bio.
714 * If it's not, something wrong is happening.
715 */
716 if (tio->orig->bio != bio)
717 DMERR("bio completion is going in the middle of the request");
718
719 /*
720 * Update the original request.
721 * Do not use blk_end_request() here, because it may complete
722 * the original request before the clone, and break the ordering.
723 */
724 blk_update_request(tio->orig, 0, nr_bytes);
725}
726
727/*
728 * Don't touch any member of the md after calling this function because
729 * the md may be freed in dm_put() at the end of this function.
730 * Or do dm_get() before calling this function and dm_put() later.
731 */
b4324fee 732static void rq_completed(struct mapped_device *md, int rw, int run_queue)
cec47e3d 733{
b4324fee 734 atomic_dec(&md->pending[rw]);
cec47e3d
KU
735
736 /* nudge anyone waiting on suspend queue */
b4324fee 737 if (!md_in_flight(md))
cec47e3d
KU
738 wake_up(&md->wait);
739
740 if (run_queue)
b4324fee 741 blk_run_queue(md->queue);
cec47e3d
KU
742
743 /*
744 * dm_put() must be at the end of this function. See the comment above
745 */
746 dm_put(md);
747}
748
a77e28c7
KU
749static void free_rq_clone(struct request *clone)
750{
751 struct dm_rq_target_io *tio = clone->end_io_data;
752
753 blk_rq_unprep_clone(clone);
754 free_rq_tio(tio);
755}
756
980691e5
KU
757/*
758 * Complete the clone and the original request.
759 * Must be called without queue lock.
760 */
761static void dm_end_request(struct request *clone, int error)
762{
763 int rw = rq_data_dir(clone);
764 struct dm_rq_target_io *tio = clone->end_io_data;
765 struct mapped_device *md = tio->md;
766 struct request *rq = tio->orig;
767
29e4013d 768 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
980691e5
KU
769 rq->errors = clone->errors;
770 rq->resid_len = clone->resid_len;
771
772 if (rq->sense)
773 /*
774 * We are using the sense buffer of the original
775 * request.
776 * So setting the length of the sense data is enough.
777 */
778 rq->sense_len = clone->sense_len;
779 }
780
781 free_rq_clone(clone);
29e4013d
TH
782 blk_end_request_all(rq, error);
783 rq_completed(md, rw, true);
980691e5
KU
784}
785
cec47e3d
KU
786static void dm_unprep_request(struct request *rq)
787{
788 struct request *clone = rq->special;
cec47e3d
KU
789
790 rq->special = NULL;
791 rq->cmd_flags &= ~REQ_DONTPREP;
792
a77e28c7 793 free_rq_clone(clone);
cec47e3d
KU
794}
795
796/*
797 * Requeue the original request of a clone.
798 */
799void dm_requeue_unmapped_request(struct request *clone)
800{
b4324fee 801 int rw = rq_data_dir(clone);
cec47e3d
KU
802 struct dm_rq_target_io *tio = clone->end_io_data;
803 struct mapped_device *md = tio->md;
804 struct request *rq = tio->orig;
805 struct request_queue *q = rq->q;
806 unsigned long flags;
807
808 dm_unprep_request(rq);
809
810 spin_lock_irqsave(q->queue_lock, flags);
cec47e3d
KU
811 blk_requeue_request(q, rq);
812 spin_unlock_irqrestore(q->queue_lock, flags);
813
b4324fee 814 rq_completed(md, rw, 0);
cec47e3d
KU
815}
816EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
817
818static void __stop_queue(struct request_queue *q)
819{
820 blk_stop_queue(q);
821}
822
823static void stop_queue(struct request_queue *q)
824{
825 unsigned long flags;
826
827 spin_lock_irqsave(q->queue_lock, flags);
828 __stop_queue(q);
829 spin_unlock_irqrestore(q->queue_lock, flags);
830}
831
832static void __start_queue(struct request_queue *q)
833{
834 if (blk_queue_stopped(q))
835 blk_start_queue(q);
836}
837
838static void start_queue(struct request_queue *q)
839{
840 unsigned long flags;
841
842 spin_lock_irqsave(q->queue_lock, flags);
843 __start_queue(q);
844 spin_unlock_irqrestore(q->queue_lock, flags);
845}
846
11a68244 847static void dm_done(struct request *clone, int error, bool mapped)
cec47e3d 848{
11a68244 849 int r = error;
cec47e3d
KU
850 struct dm_rq_target_io *tio = clone->end_io_data;
851 dm_request_endio_fn rq_end_io = tio->ti->type->rq_end_io;
cec47e3d 852
11a68244
KU
853 if (mapped && rq_end_io)
854 r = rq_end_io(tio->ti, clone, error, &tio->info);
cec47e3d 855
11a68244 856 if (r <= 0)
cec47e3d 857 /* The target wants to complete the I/O */
11a68244
KU
858 dm_end_request(clone, r);
859 else if (r == DM_ENDIO_INCOMPLETE)
cec47e3d
KU
860 /* The target will handle the I/O */
861 return;
11a68244 862 else if (r == DM_ENDIO_REQUEUE)
cec47e3d
KU
863 /* The target wants to requeue the I/O */
864 dm_requeue_unmapped_request(clone);
865 else {
11a68244 866 DMWARN("unimplemented target endio return value: %d", r);
cec47e3d
KU
867 BUG();
868 }
869}
870
11a68244
KU
871/*
872 * Request completion handler for request-based dm
873 */
874static void dm_softirq_done(struct request *rq)
875{
876 bool mapped = true;
877 struct request *clone = rq->completion_data;
878 struct dm_rq_target_io *tio = clone->end_io_data;
879
880 if (rq->cmd_flags & REQ_FAILED)
881 mapped = false;
882
883 dm_done(clone, tio->error, mapped);
884}
885
cec47e3d
KU
886/*
887 * Complete the clone and the original request with the error status
888 * through softirq context.
889 */
890static void dm_complete_request(struct request *clone, int error)
891{
892 struct dm_rq_target_io *tio = clone->end_io_data;
893 struct request *rq = tio->orig;
894
895 tio->error = error;
896 rq->completion_data = clone;
897 blk_complete_request(rq);
898}
899
900/*
901 * Complete the not-mapped clone and the original request with the error status
902 * through softirq context.
903 * Target's rq_end_io() function isn't called.
904 * This may be used when the target's map_rq() function fails.
905 */
906void dm_kill_unmapped_request(struct request *clone, int error)
907{
908 struct dm_rq_target_io *tio = clone->end_io_data;
909 struct request *rq = tio->orig;
910
911 rq->cmd_flags |= REQ_FAILED;
912 dm_complete_request(clone, error);
913}
914EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
915
916/*
917 * Called with the queue lock held
918 */
919static void end_clone_request(struct request *clone, int error)
920{
921 /*
922 * For just cleaning up the information of the queue in which
923 * the clone was dispatched.
924 * The clone is *NOT* freed actually here because it is alloced from
925 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
926 */
927 __blk_put_request(clone->q, clone);
928
929 /*
930 * Actual request completion is done in a softirq context which doesn't
931 * hold the queue lock. Otherwise, deadlock could occur because:
932 * - another request may be submitted by the upper level driver
933 * of the stacking during the completion
934 * - the submission which requires queue lock may be done
935 * against this queue
936 */
937 dm_complete_request(clone, error);
938}
939
56a67df7
MS
940/*
941 * Return maximum size of I/O possible at the supplied sector up to the current
942 * target boundary.
943 */
944static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
945{
946 sector_t target_offset = dm_target_offset(ti, sector);
947
948 return ti->len - target_offset;
949}
950
951static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1da177e4 952{
56a67df7 953 sector_t len = max_io_len_target_boundary(sector, ti);
1da177e4
LT
954
955 /*
956 * Does the target need to split even further ?
957 */
958 if (ti->split_io) {
959 sector_t boundary;
56a67df7 960 sector_t offset = dm_target_offset(ti, sector);
1da177e4
LT
961 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
962 - offset;
963 if (len > boundary)
964 len = boundary;
965 }
966
967 return len;
968}
969
970static void __map_bio(struct dm_target *ti, struct bio *clone,
028867ac 971 struct dm_target_io *tio)
1da177e4
LT
972{
973 int r;
2056a782 974 sector_t sector;
9faf400f 975 struct mapped_device *md;
1da177e4 976
1da177e4
LT
977 clone->bi_end_io = clone_endio;
978 clone->bi_private = tio;
979
980 /*
981 * Map the clone. If r == 0 we don't need to do
982 * anything, the target has assumed ownership of
983 * this io.
984 */
985 atomic_inc(&tio->io->io_count);
2056a782 986 sector = clone->bi_sector;
1da177e4 987 r = ti->type->map(ti, clone, &tio->info);
45cbcd79 988 if (r == DM_MAPIO_REMAPPED) {
1da177e4 989 /* the bio has been remapped so dispatch it */
2056a782 990
d07335e5
MS
991 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
992 tio->io->bio->bi_bdev->bd_dev, sector);
2056a782 993
1da177e4 994 generic_make_request(clone);
2e93ccc1
KU
995 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
996 /* error the io and bail out, or requeue it if needed */
9faf400f
SB
997 md = tio->io->md;
998 dec_pending(tio->io, r);
999 /*
1000 * Store bio_set for cleanup.
1001 */
1002 clone->bi_private = md->bs;
1da177e4 1003 bio_put(clone);
9faf400f 1004 free_tio(md, tio);
45cbcd79
KU
1005 } else if (r) {
1006 DMWARN("unimplemented target map return value: %d", r);
1007 BUG();
1da177e4
LT
1008 }
1009}
1010
1011struct clone_info {
1012 struct mapped_device *md;
1013 struct dm_table *map;
1014 struct bio *bio;
1015 struct dm_io *io;
1016 sector_t sector;
1017 sector_t sector_count;
1018 unsigned short idx;
1019};
1020
3676347a
PO
1021static void dm_bio_destructor(struct bio *bio)
1022{
9faf400f
SB
1023 struct bio_set *bs = bio->bi_private;
1024
1025 bio_free(bio, bs);
3676347a
PO
1026}
1027
1da177e4 1028/*
d87f4c14 1029 * Creates a little bio that just does part of a bvec.
1da177e4
LT
1030 */
1031static struct bio *split_bvec(struct bio *bio, sector_t sector,
1032 unsigned short idx, unsigned int offset,
9faf400f 1033 unsigned int len, struct bio_set *bs)
1da177e4
LT
1034{
1035 struct bio *clone;
1036 struct bio_vec *bv = bio->bi_io_vec + idx;
1037
9faf400f 1038 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
3676347a 1039 clone->bi_destructor = dm_bio_destructor;
1da177e4
LT
1040 *clone->bi_io_vec = *bv;
1041
1042 clone->bi_sector = sector;
1043 clone->bi_bdev = bio->bi_bdev;
d87f4c14 1044 clone->bi_rw = bio->bi_rw;
1da177e4
LT
1045 clone->bi_vcnt = 1;
1046 clone->bi_size = to_bytes(len);
1047 clone->bi_io_vec->bv_offset = offset;
1048 clone->bi_io_vec->bv_len = clone->bi_size;
f3e1d26e 1049 clone->bi_flags |= 1 << BIO_CLONED;
1da177e4 1050
9c47008d 1051 if (bio_integrity(bio)) {
7878cba9 1052 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
9c47008d
MP
1053 bio_integrity_trim(clone,
1054 bio_sector_offset(bio, idx, offset), len);
1055 }
1056
1da177e4
LT
1057 return clone;
1058}
1059
1060/*
1061 * Creates a bio that consists of range of complete bvecs.
1062 */
1063static struct bio *clone_bio(struct bio *bio, sector_t sector,
1064 unsigned short idx, unsigned short bv_count,
9faf400f 1065 unsigned int len, struct bio_set *bs)
1da177e4
LT
1066{
1067 struct bio *clone;
1068
9faf400f
SB
1069 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
1070 __bio_clone(clone, bio);
1071 clone->bi_destructor = dm_bio_destructor;
1da177e4
LT
1072 clone->bi_sector = sector;
1073 clone->bi_idx = idx;
1074 clone->bi_vcnt = idx + bv_count;
1075 clone->bi_size = to_bytes(len);
1076 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
1077
9c47008d 1078 if (bio_integrity(bio)) {
7878cba9 1079 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
9c47008d
MP
1080
1081 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1082 bio_integrity_trim(clone,
1083 bio_sector_offset(bio, idx, 0), len);
1084 }
1085
1da177e4
LT
1086 return clone;
1087}
1088
9015df24
AK
1089static struct dm_target_io *alloc_tio(struct clone_info *ci,
1090 struct dm_target *ti)
f9ab94ce 1091{
9015df24 1092 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
f9ab94ce
MP
1093
1094 tio->io = ci->io;
1095 tio->ti = ti;
f9ab94ce 1096 memset(&tio->info, 0, sizeof(tio->info));
9015df24
AK
1097
1098 return tio;
1099}
1100
06a426ce 1101static void __issue_target_request(struct clone_info *ci, struct dm_target *ti,
a79245b3 1102 unsigned request_nr, sector_t len)
9015df24
AK
1103{
1104 struct dm_target_io *tio = alloc_tio(ci, ti);
1105 struct bio *clone;
1106
57cba5d3 1107 tio->info.target_request_nr = request_nr;
f9ab94ce 1108
06a426ce
MS
1109 /*
1110 * Discard requests require the bio's inline iovecs be initialized.
1111 * ci->bio->bi_max_vecs is BIO_INLINE_VECS anyway, for both flush
1112 * and discard, so no need for concern about wasted bvec allocations.
1113 */
1114 clone = bio_alloc_bioset(GFP_NOIO, ci->bio->bi_max_vecs, ci->md->bs);
f9ab94ce
MP
1115 __bio_clone(clone, ci->bio);
1116 clone->bi_destructor = dm_bio_destructor;
a79245b3
MS
1117 if (len) {
1118 clone->bi_sector = ci->sector;
1119 clone->bi_size = to_bytes(len);
1120 }
f9ab94ce
MP
1121
1122 __map_bio(ti, clone, tio);
1123}
1124
06a426ce 1125static void __issue_target_requests(struct clone_info *ci, struct dm_target *ti,
a79245b3 1126 unsigned num_requests, sector_t len)
06a426ce
MS
1127{
1128 unsigned request_nr;
1129
1130 for (request_nr = 0; request_nr < num_requests; request_nr++)
a79245b3 1131 __issue_target_request(ci, ti, request_nr, len);
06a426ce
MS
1132}
1133
b372d360 1134static int __clone_and_map_empty_flush(struct clone_info *ci)
f9ab94ce 1135{
06a426ce 1136 unsigned target_nr = 0;
f9ab94ce
MP
1137 struct dm_target *ti;
1138
b372d360 1139 BUG_ON(bio_has_data(ci->bio));
f9ab94ce 1140 while ((ti = dm_table_get_target(ci->map, target_nr++)))
a79245b3 1141 __issue_target_requests(ci, ti, ti->num_flush_requests, 0);
f9ab94ce 1142
f9ab94ce
MP
1143 return 0;
1144}
1145
5ae89a87
MS
1146/*
1147 * Perform all io with a single clone.
1148 */
1149static void __clone_and_map_simple(struct clone_info *ci, struct dm_target *ti)
1150{
1151 struct bio *clone, *bio = ci->bio;
1152 struct dm_target_io *tio;
1153
1154 tio = alloc_tio(ci, ti);
1155 clone = clone_bio(bio, ci->sector, ci->idx,
1156 bio->bi_vcnt - ci->idx, ci->sector_count,
1157 ci->md->bs);
1158 __map_bio(ti, clone, tio);
1159 ci->sector_count = 0;
1160}
1161
1162static int __clone_and_map_discard(struct clone_info *ci)
1163{
1164 struct dm_target *ti;
a79245b3 1165 sector_t len;
5ae89a87 1166
a79245b3
MS
1167 do {
1168 ti = dm_table_find_target(ci->map, ci->sector);
1169 if (!dm_target_is_valid(ti))
1170 return -EIO;
5ae89a87 1171
5ae89a87 1172 /*
a79245b3
MS
1173 * Even though the device advertised discard support,
1174 * reconfiguration might have changed that since the
1175 * check was performed.
5ae89a87 1176 */
a79245b3
MS
1177 if (!ti->num_discard_requests)
1178 return -EOPNOTSUPP;
5ae89a87 1179
a79245b3 1180 len = min(ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
06a426ce 1181
a79245b3
MS
1182 __issue_target_requests(ci, ti, ti->num_discard_requests, len);
1183
1184 ci->sector += len;
1185 } while (ci->sector_count -= len);
5ae89a87
MS
1186
1187 return 0;
1188}
1189
512875bd 1190static int __clone_and_map(struct clone_info *ci)
1da177e4
LT
1191{
1192 struct bio *clone, *bio = ci->bio;
512875bd
JN
1193 struct dm_target *ti;
1194 sector_t len = 0, max;
028867ac 1195 struct dm_target_io *tio;
1da177e4 1196
5ae89a87
MS
1197 if (unlikely(bio->bi_rw & REQ_DISCARD))
1198 return __clone_and_map_discard(ci);
1199
512875bd
JN
1200 ti = dm_table_find_target(ci->map, ci->sector);
1201 if (!dm_target_is_valid(ti))
1202 return -EIO;
1203
56a67df7 1204 max = max_io_len(ci->sector, ti);
512875bd 1205
1da177e4
LT
1206 if (ci->sector_count <= max) {
1207 /*
1208 * Optimise for the simple case where we can do all of
1209 * the remaining io with a single clone.
1210 */
5ae89a87 1211 __clone_and_map_simple(ci, ti);
1da177e4
LT
1212
1213 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1214 /*
1215 * There are some bvecs that don't span targets.
1216 * Do as many of these as possible.
1217 */
1218 int i;
1219 sector_t remaining = max;
1220 sector_t bv_len;
1221
1222 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
1223 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
1224
1225 if (bv_len > remaining)
1226 break;
1227
1228 remaining -= bv_len;
1229 len += bv_len;
1230 }
1231
5ae89a87 1232 tio = alloc_tio(ci, ti);
9faf400f
SB
1233 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
1234 ci->md->bs);
1da177e4
LT
1235 __map_bio(ti, clone, tio);
1236
1237 ci->sector += len;
1238 ci->sector_count -= len;
1239 ci->idx = i;
1240
1241 } else {
1242 /*
d2044a94 1243 * Handle a bvec that must be split between two or more targets.
1da177e4
LT
1244 */
1245 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
d2044a94
AK
1246 sector_t remaining = to_sector(bv->bv_len);
1247 unsigned int offset = 0;
1da177e4 1248
d2044a94
AK
1249 do {
1250 if (offset) {
1251 ti = dm_table_find_target(ci->map, ci->sector);
512875bd
JN
1252 if (!dm_target_is_valid(ti))
1253 return -EIO;
1254
56a67df7 1255 max = max_io_len(ci->sector, ti);
d2044a94
AK
1256 }
1257
1258 len = min(remaining, max);
1259
5ae89a87 1260 tio = alloc_tio(ci, ti);
d2044a94 1261 clone = split_bvec(bio, ci->sector, ci->idx,
9faf400f
SB
1262 bv->bv_offset + offset, len,
1263 ci->md->bs);
d2044a94
AK
1264
1265 __map_bio(ti, clone, tio);
1266
1267 ci->sector += len;
1268 ci->sector_count -= len;
1269 offset += to_bytes(len);
1270 } while (remaining -= len);
1da177e4 1271
1da177e4
LT
1272 ci->idx++;
1273 }
512875bd
JN
1274
1275 return 0;
1da177e4
LT
1276}
1277
1278/*
8a53c28d 1279 * Split the bio into several clones and submit it to targets.
1da177e4 1280 */
f0b9a450 1281static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
1da177e4
LT
1282{
1283 struct clone_info ci;
512875bd 1284 int error = 0;
1da177e4 1285
7c666411 1286 ci.map = dm_get_live_table(md);
f0b9a450 1287 if (unlikely(!ci.map)) {
6a8736d1 1288 bio_io_error(bio);
f0b9a450
MP
1289 return;
1290 }
692d0eb9 1291
1da177e4 1292 ci.md = md;
1da177e4
LT
1293 ci.io = alloc_io(md);
1294 ci.io->error = 0;
1295 atomic_set(&ci.io->io_count, 1);
1296 ci.io->bio = bio;
1297 ci.io->md = md;
f88fb981 1298 spin_lock_init(&ci.io->endio_lock);
1da177e4 1299 ci.sector = bio->bi_sector;
1da177e4
LT
1300 ci.idx = bio->bi_idx;
1301
3eaf840e 1302 start_io_acct(ci.io);
b372d360
MS
1303 if (bio->bi_rw & REQ_FLUSH) {
1304 ci.bio = &ci.md->flush_bio;
1305 ci.sector_count = 0;
1306 error = __clone_and_map_empty_flush(&ci);
1307 /* dec_pending submits any data associated with flush */
1308 } else {
6a8736d1 1309 ci.bio = bio;
d87f4c14 1310 ci.sector_count = bio_sectors(bio);
b372d360 1311 while (ci.sector_count && !error)
d87f4c14 1312 error = __clone_and_map(&ci);
d87f4c14 1313 }
1da177e4
LT
1314
1315 /* drop the extra reference count */
512875bd 1316 dec_pending(ci.io, error);
1da177e4
LT
1317 dm_table_put(ci.map);
1318}
1319/*-----------------------------------------------------------------
1320 * CRUD END
1321 *---------------------------------------------------------------*/
1322
f6fccb12
MB
1323static int dm_merge_bvec(struct request_queue *q,
1324 struct bvec_merge_data *bvm,
1325 struct bio_vec *biovec)
1326{
1327 struct mapped_device *md = q->queuedata;
7c666411 1328 struct dm_table *map = dm_get_live_table(md);
f6fccb12
MB
1329 struct dm_target *ti;
1330 sector_t max_sectors;
5037108a 1331 int max_size = 0;
f6fccb12
MB
1332
1333 if (unlikely(!map))
5037108a 1334 goto out;
f6fccb12
MB
1335
1336 ti = dm_table_find_target(map, bvm->bi_sector);
b01cd5ac
MP
1337 if (!dm_target_is_valid(ti))
1338 goto out_table;
f6fccb12
MB
1339
1340 /*
1341 * Find maximum amount of I/O that won't need splitting
1342 */
56a67df7 1343 max_sectors = min(max_io_len(bvm->bi_sector, ti),
f6fccb12
MB
1344 (sector_t) BIO_MAX_SECTORS);
1345 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1346 if (max_size < 0)
1347 max_size = 0;
1348
1349 /*
1350 * merge_bvec_fn() returns number of bytes
1351 * it can accept at this offset
1352 * max is precomputed maximal io size
1353 */
1354 if (max_size && ti->type->merge)
1355 max_size = ti->type->merge(ti, bvm, biovec, max_size);
8cbeb67a
MP
1356 /*
1357 * If the target doesn't support merge method and some of the devices
1358 * provided their merge_bvec method (we know this by looking at
1359 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1360 * entries. So always set max_size to 0, and the code below allows
1361 * just one page.
1362 */
1363 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1364
1365 max_size = 0;
f6fccb12 1366
b01cd5ac 1367out_table:
5037108a
MP
1368 dm_table_put(map);
1369
1370out:
f6fccb12
MB
1371 /*
1372 * Always allow an entire first page
1373 */
1374 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1375 max_size = biovec->bv_len;
1376
f6fccb12
MB
1377 return max_size;
1378}
1379
1da177e4
LT
1380/*
1381 * The request function that just remaps the bio built up by
1382 * dm_merge_bvec.
1383 */
cec47e3d 1384static int _dm_request(struct request_queue *q, struct bio *bio)
1da177e4 1385{
12f03a49 1386 int rw = bio_data_dir(bio);
1da177e4 1387 struct mapped_device *md = q->queuedata;
c9959059 1388 int cpu;
1da177e4 1389
2ca3310e 1390 down_read(&md->io_lock);
1da177e4 1391
074a7aca
TH
1392 cpu = part_stat_lock();
1393 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1394 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1395 part_stat_unlock();
12f03a49 1396
6a8736d1
TH
1397 /* if we're suspended, we have to queue this io for later */
1398 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
2ca3310e 1399 up_read(&md->io_lock);
1da177e4 1400
6a8736d1
TH
1401 if (bio_rw(bio) != READA)
1402 queue_io(md, bio);
1403 else
54d9a1b4 1404 bio_io_error(bio);
92c63902 1405 return 0;
1da177e4
LT
1406 }
1407
f0b9a450 1408 __split_and_process_bio(md, bio);
2ca3310e 1409 up_read(&md->io_lock);
f0b9a450 1410 return 0;
1da177e4
LT
1411}
1412
cec47e3d
KU
1413static int dm_make_request(struct request_queue *q, struct bio *bio)
1414{
1415 struct mapped_device *md = q->queuedata;
1416
cec47e3d
KU
1417 return md->saved_make_request_fn(q, bio); /* call __make_request() */
1418}
1419
1420static int dm_request_based(struct mapped_device *md)
1421{
1422 return blk_queue_stackable(md->queue);
1423}
1424
1425static int dm_request(struct request_queue *q, struct bio *bio)
1426{
1427 struct mapped_device *md = q->queuedata;
1428
1429 if (dm_request_based(md))
1430 return dm_make_request(q, bio);
1431
1432 return _dm_request(q, bio);
1433}
1434
1435void dm_dispatch_request(struct request *rq)
1436{
1437 int r;
1438
1439 if (blk_queue_io_stat(rq->q))
1440 rq->cmd_flags |= REQ_IO_STAT;
1441
1442 rq->start_time = jiffies;
1443 r = blk_insert_cloned_request(rq->q, rq);
1444 if (r)
1445 dm_complete_request(rq, r);
1446}
1447EXPORT_SYMBOL_GPL(dm_dispatch_request);
1448
1449static void dm_rq_bio_destructor(struct bio *bio)
1450{
1451 struct dm_rq_clone_bio_info *info = bio->bi_private;
1452 struct mapped_device *md = info->tio->md;
1453
1454 free_bio_info(info);
1455 bio_free(bio, md->bs);
1456}
1457
1458static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1459 void *data)
1460{
1461 struct dm_rq_target_io *tio = data;
1462 struct mapped_device *md = tio->md;
1463 struct dm_rq_clone_bio_info *info = alloc_bio_info(md);
1464
1465 if (!info)
1466 return -ENOMEM;
1467
1468 info->orig = bio_orig;
1469 info->tio = tio;
1470 bio->bi_end_io = end_clone_bio;
1471 bio->bi_private = info;
1472 bio->bi_destructor = dm_rq_bio_destructor;
1473
1474 return 0;
1475}
1476
1477static int setup_clone(struct request *clone, struct request *rq,
1478 struct dm_rq_target_io *tio)
1479{
d0bcb878 1480 int r;
cec47e3d 1481
29e4013d
TH
1482 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1483 dm_rq_bio_constructor, tio);
1484 if (r)
1485 return r;
cec47e3d 1486
29e4013d
TH
1487 clone->cmd = rq->cmd;
1488 clone->cmd_len = rq->cmd_len;
1489 clone->sense = rq->sense;
1490 clone->buffer = rq->buffer;
cec47e3d
KU
1491 clone->end_io = end_clone_request;
1492 clone->end_io_data = tio;
1493
1494 return 0;
1495}
1496
6facdaff
KU
1497static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1498 gfp_t gfp_mask)
1499{
1500 struct request *clone;
1501 struct dm_rq_target_io *tio;
1502
1503 tio = alloc_rq_tio(md, gfp_mask);
1504 if (!tio)
1505 return NULL;
1506
1507 tio->md = md;
1508 tio->ti = NULL;
1509 tio->orig = rq;
1510 tio->error = 0;
1511 memset(&tio->info, 0, sizeof(tio->info));
1512
1513 clone = &tio->clone;
1514 if (setup_clone(clone, rq, tio)) {
1515 /* -ENOMEM */
1516 free_rq_tio(tio);
1517 return NULL;
1518 }
1519
1520 return clone;
1521}
1522
cec47e3d
KU
1523/*
1524 * Called with the queue lock held.
1525 */
1526static int dm_prep_fn(struct request_queue *q, struct request *rq)
1527{
1528 struct mapped_device *md = q->queuedata;
cec47e3d
KU
1529 struct request *clone;
1530
cec47e3d
KU
1531 if (unlikely(rq->special)) {
1532 DMWARN("Already has something in rq->special.");
1533 return BLKPREP_KILL;
1534 }
1535
6facdaff
KU
1536 clone = clone_rq(rq, md, GFP_ATOMIC);
1537 if (!clone)
cec47e3d 1538 return BLKPREP_DEFER;
cec47e3d
KU
1539
1540 rq->special = clone;
1541 rq->cmd_flags |= REQ_DONTPREP;
1542
1543 return BLKPREP_OK;
1544}
1545
9eef87da
KU
1546/*
1547 * Returns:
1548 * 0 : the request has been processed (not requeued)
1549 * !0 : the request has been requeued
1550 */
1551static int map_request(struct dm_target *ti, struct request *clone,
1552 struct mapped_device *md)
cec47e3d 1553{
9eef87da 1554 int r, requeued = 0;
cec47e3d
KU
1555 struct dm_rq_target_io *tio = clone->end_io_data;
1556
1557 /*
1558 * Hold the md reference here for the in-flight I/O.
1559 * We can't rely on the reference count by device opener,
1560 * because the device may be closed during the request completion
1561 * when all bios are completed.
1562 * See the comment in rq_completed() too.
1563 */
1564 dm_get(md);
1565
1566 tio->ti = ti;
1567 r = ti->type->map_rq(ti, clone, &tio->info);
1568 switch (r) {
1569 case DM_MAPIO_SUBMITTED:
1570 /* The target has taken the I/O to submit by itself later */
1571 break;
1572 case DM_MAPIO_REMAPPED:
1573 /* The target has remapped the I/O so dispatch it */
6db4ccd6
JN
1574 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1575 blk_rq_pos(tio->orig));
cec47e3d
KU
1576 dm_dispatch_request(clone);
1577 break;
1578 case DM_MAPIO_REQUEUE:
1579 /* The target wants to requeue the I/O */
1580 dm_requeue_unmapped_request(clone);
9eef87da 1581 requeued = 1;
cec47e3d
KU
1582 break;
1583 default:
1584 if (r > 0) {
1585 DMWARN("unimplemented target map return value: %d", r);
1586 BUG();
1587 }
1588
1589 /* The target wants to complete the I/O */
1590 dm_kill_unmapped_request(clone, r);
1591 break;
1592 }
9eef87da
KU
1593
1594 return requeued;
cec47e3d
KU
1595}
1596
1597/*
1598 * q->request_fn for request-based dm.
1599 * Called with the queue lock held.
1600 */
1601static void dm_request_fn(struct request_queue *q)
1602{
1603 struct mapped_device *md = q->queuedata;
7c666411 1604 struct dm_table *map = dm_get_live_table(md);
cec47e3d 1605 struct dm_target *ti;
b4324fee 1606 struct request *rq, *clone;
29e4013d 1607 sector_t pos;
cec47e3d
KU
1608
1609 /*
b4324fee
KU
1610 * For suspend, check blk_queue_stopped() and increment
1611 * ->pending within a single queue_lock not to increment the
1612 * number of in-flight I/Os after the queue is stopped in
1613 * dm_suspend().
cec47e3d 1614 */
7eaceacc 1615 while (!blk_queue_stopped(q)) {
cec47e3d
KU
1616 rq = blk_peek_request(q);
1617 if (!rq)
7eaceacc 1618 goto delay_and_out;
cec47e3d 1619
29e4013d
TH
1620 /* always use block 0 to find the target for flushes for now */
1621 pos = 0;
1622 if (!(rq->cmd_flags & REQ_FLUSH))
1623 pos = blk_rq_pos(rq);
1624
1625 ti = dm_table_find_target(map, pos);
1626 BUG_ON(!dm_target_is_valid(ti));
d0bcb878 1627
cec47e3d 1628 if (ti->type->busy && ti->type->busy(ti))
7eaceacc 1629 goto delay_and_out;
cec47e3d
KU
1630
1631 blk_start_request(rq);
b4324fee
KU
1632 clone = rq->special;
1633 atomic_inc(&md->pending[rq_data_dir(clone)]);
1634
cec47e3d 1635 spin_unlock(q->queue_lock);
9eef87da
KU
1636 if (map_request(ti, clone, md))
1637 goto requeued;
1638
052189a2
KU
1639 BUG_ON(!irqs_disabled());
1640 spin_lock(q->queue_lock);
cec47e3d
KU
1641 }
1642
1643 goto out;
1644
9eef87da 1645requeued:
052189a2
KU
1646 BUG_ON(!irqs_disabled());
1647 spin_lock(q->queue_lock);
9eef87da 1648
7eaceacc
JA
1649delay_and_out:
1650 blk_delay_queue(q, HZ / 10);
cec47e3d
KU
1651out:
1652 dm_table_put(map);
1653
1654 return;
1655}
1656
1657int dm_underlying_device_busy(struct request_queue *q)
1658{
1659 return blk_lld_busy(q);
1660}
1661EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1662
1663static int dm_lld_busy(struct request_queue *q)
1664{
1665 int r;
1666 struct mapped_device *md = q->queuedata;
7c666411 1667 struct dm_table *map = dm_get_live_table(md);
cec47e3d
KU
1668
1669 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1670 r = 1;
1671 else
1672 r = dm_table_any_busy_target(map);
1673
1674 dm_table_put(map);
1675
1676 return r;
1677}
1678
1da177e4
LT
1679static int dm_any_congested(void *congested_data, int bdi_bits)
1680{
8a57dfc6
CS
1681 int r = bdi_bits;
1682 struct mapped_device *md = congested_data;
1683 struct dm_table *map;
1da177e4 1684
1eb787ec 1685 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
7c666411 1686 map = dm_get_live_table(md);
8a57dfc6 1687 if (map) {
cec47e3d
KU
1688 /*
1689 * Request-based dm cares about only own queue for
1690 * the query about congestion status of request_queue
1691 */
1692 if (dm_request_based(md))
1693 r = md->queue->backing_dev_info.state &
1694 bdi_bits;
1695 else
1696 r = dm_table_any_congested(map, bdi_bits);
1697
8a57dfc6
CS
1698 dm_table_put(map);
1699 }
1700 }
1701
1da177e4
LT
1702 return r;
1703}
1704
1705/*-----------------------------------------------------------------
1706 * An IDR is used to keep track of allocated minor numbers.
1707 *---------------------------------------------------------------*/
1da177e4
LT
1708static DEFINE_IDR(_minor_idr);
1709
2b06cfff 1710static void free_minor(int minor)
1da177e4 1711{
f32c10b0 1712 spin_lock(&_minor_lock);
1da177e4 1713 idr_remove(&_minor_idr, minor);
f32c10b0 1714 spin_unlock(&_minor_lock);
1da177e4
LT
1715}
1716
1717/*
1718 * See if the device with a specific minor # is free.
1719 */
cf13ab8e 1720static int specific_minor(int minor)
1da177e4
LT
1721{
1722 int r, m;
1723
1724 if (minor >= (1 << MINORBITS))
1725 return -EINVAL;
1726
62f75c2f
JM
1727 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1728 if (!r)
1729 return -ENOMEM;
1730
f32c10b0 1731 spin_lock(&_minor_lock);
1da177e4
LT
1732
1733 if (idr_find(&_minor_idr, minor)) {
1734 r = -EBUSY;
1735 goto out;
1736 }
1737
ba61fdd1 1738 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
62f75c2f 1739 if (r)
1da177e4 1740 goto out;
1da177e4
LT
1741
1742 if (m != minor) {
1743 idr_remove(&_minor_idr, m);
1744 r = -EBUSY;
1745 goto out;
1746 }
1747
1748out:
f32c10b0 1749 spin_unlock(&_minor_lock);
1da177e4
LT
1750 return r;
1751}
1752
cf13ab8e 1753static int next_free_minor(int *minor)
1da177e4 1754{
2b06cfff 1755 int r, m;
1da177e4 1756
1da177e4 1757 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
62f75c2f
JM
1758 if (!r)
1759 return -ENOMEM;
1760
f32c10b0 1761 spin_lock(&_minor_lock);
1da177e4 1762
ba61fdd1 1763 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
cf13ab8e 1764 if (r)
1da177e4 1765 goto out;
1da177e4
LT
1766
1767 if (m >= (1 << MINORBITS)) {
1768 idr_remove(&_minor_idr, m);
1769 r = -ENOSPC;
1770 goto out;
1771 }
1772
1773 *minor = m;
1774
1775out:
f32c10b0 1776 spin_unlock(&_minor_lock);
1da177e4
LT
1777 return r;
1778}
1779
83d5cde4 1780static const struct block_device_operations dm_blk_dops;
1da177e4 1781
53d5914f
MP
1782static void dm_wq_work(struct work_struct *work);
1783
4a0b4ddf
MS
1784static void dm_init_md_queue(struct mapped_device *md)
1785{
1786 /*
1787 * Request-based dm devices cannot be stacked on top of bio-based dm
1788 * devices. The type of this dm device has not been decided yet.
1789 * The type is decided at the first table loading time.
1790 * To prevent problematic device stacking, clear the queue flag
1791 * for request stacking support until then.
1792 *
1793 * This queue is new, so no concurrency on the queue_flags.
1794 */
1795 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1796
1797 md->queue->queuedata = md;
1798 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1799 md->queue->backing_dev_info.congested_data = md;
1800 blk_queue_make_request(md->queue, dm_request);
1801 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
4a0b4ddf 1802 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
d87f4c14 1803 blk_queue_flush(md->queue, REQ_FLUSH | REQ_FUA);
4a0b4ddf
MS
1804}
1805
1da177e4
LT
1806/*
1807 * Allocate and initialise a blank device with a given minor.
1808 */
2b06cfff 1809static struct mapped_device *alloc_dev(int minor)
1da177e4
LT
1810{
1811 int r;
cf13ab8e 1812 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
ba61fdd1 1813 void *old_md;
1da177e4
LT
1814
1815 if (!md) {
1816 DMWARN("unable to allocate device, out of memory.");
1817 return NULL;
1818 }
1819
10da4f79 1820 if (!try_module_get(THIS_MODULE))
6ed7ade8 1821 goto bad_module_get;
10da4f79 1822
1da177e4 1823 /* get a minor number for the dev */
2b06cfff 1824 if (minor == DM_ANY_MINOR)
cf13ab8e 1825 r = next_free_minor(&minor);
2b06cfff 1826 else
cf13ab8e 1827 r = specific_minor(minor);
1da177e4 1828 if (r < 0)
6ed7ade8 1829 goto bad_minor;
1da177e4 1830
a5664dad 1831 md->type = DM_TYPE_NONE;
2ca3310e 1832 init_rwsem(&md->io_lock);
e61290a4 1833 mutex_init(&md->suspend_lock);
a5664dad 1834 mutex_init(&md->type_lock);
022c2611 1835 spin_lock_init(&md->deferred_lock);
1da177e4
LT
1836 rwlock_init(&md->map_lock);
1837 atomic_set(&md->holders, 1);
5c6bd75d 1838 atomic_set(&md->open_count, 0);
1da177e4 1839 atomic_set(&md->event_nr, 0);
7a8c3d3b
MA
1840 atomic_set(&md->uevent_seq, 0);
1841 INIT_LIST_HEAD(&md->uevent_list);
1842 spin_lock_init(&md->uevent_lock);
1da177e4 1843
4a0b4ddf 1844 md->queue = blk_alloc_queue(GFP_KERNEL);
1da177e4 1845 if (!md->queue)
6ed7ade8 1846 goto bad_queue;
1da177e4 1847
4a0b4ddf 1848 dm_init_md_queue(md);
9faf400f 1849
1da177e4
LT
1850 md->disk = alloc_disk(1);
1851 if (!md->disk)
6ed7ade8 1852 goto bad_disk;
1da177e4 1853
316d315b
NK
1854 atomic_set(&md->pending[0], 0);
1855 atomic_set(&md->pending[1], 0);
f0b04115 1856 init_waitqueue_head(&md->wait);
53d5914f 1857 INIT_WORK(&md->work, dm_wq_work);
f0b04115
JM
1858 init_waitqueue_head(&md->eventq);
1859
1da177e4
LT
1860 md->disk->major = _major;
1861 md->disk->first_minor = minor;
1862 md->disk->fops = &dm_blk_dops;
1863 md->disk->queue = md->queue;
1864 md->disk->private_data = md;
1865 sprintf(md->disk->disk_name, "dm-%d", minor);
1866 add_disk(md->disk);
7e51f257 1867 format_dev_t(md->name, MKDEV(_major, minor));
1da177e4 1868
9c4376de
TH
1869 md->wq = alloc_workqueue("kdmflush",
1870 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
304f3f6a
MB
1871 if (!md->wq)
1872 goto bad_thread;
1873
32a926da
MP
1874 md->bdev = bdget_disk(md->disk, 0);
1875 if (!md->bdev)
1876 goto bad_bdev;
1877
6a8736d1
TH
1878 bio_init(&md->flush_bio);
1879 md->flush_bio.bi_bdev = md->bdev;
1880 md->flush_bio.bi_rw = WRITE_FLUSH;
1881
ba61fdd1 1882 /* Populate the mapping, nobody knows we exist yet */
f32c10b0 1883 spin_lock(&_minor_lock);
ba61fdd1 1884 old_md = idr_replace(&_minor_idr, md, minor);
f32c10b0 1885 spin_unlock(&_minor_lock);
ba61fdd1
JM
1886
1887 BUG_ON(old_md != MINOR_ALLOCED);
1888
1da177e4
LT
1889 return md;
1890
32a926da
MP
1891bad_bdev:
1892 destroy_workqueue(md->wq);
304f3f6a 1893bad_thread:
03022c54 1894 del_gendisk(md->disk);
304f3f6a 1895 put_disk(md->disk);
6ed7ade8 1896bad_disk:
1312f40e 1897 blk_cleanup_queue(md->queue);
6ed7ade8 1898bad_queue:
1da177e4 1899 free_minor(minor);
6ed7ade8 1900bad_minor:
10da4f79 1901 module_put(THIS_MODULE);
6ed7ade8 1902bad_module_get:
1da177e4
LT
1903 kfree(md);
1904 return NULL;
1905}
1906
ae9da83f
JN
1907static void unlock_fs(struct mapped_device *md);
1908
1da177e4
LT
1909static void free_dev(struct mapped_device *md)
1910{
f331c029 1911 int minor = MINOR(disk_devt(md->disk));
63d94e48 1912
32a926da
MP
1913 unlock_fs(md);
1914 bdput(md->bdev);
304f3f6a 1915 destroy_workqueue(md->wq);
e6ee8c0b
KU
1916 if (md->tio_pool)
1917 mempool_destroy(md->tio_pool);
1918 if (md->io_pool)
1919 mempool_destroy(md->io_pool);
1920 if (md->bs)
1921 bioset_free(md->bs);
9c47008d 1922 blk_integrity_unregister(md->disk);
1da177e4 1923 del_gendisk(md->disk);
63d94e48 1924 free_minor(minor);
fba9f90e
JM
1925
1926 spin_lock(&_minor_lock);
1927 md->disk->private_data = NULL;
1928 spin_unlock(&_minor_lock);
1929
1da177e4 1930 put_disk(md->disk);
1312f40e 1931 blk_cleanup_queue(md->queue);
10da4f79 1932 module_put(THIS_MODULE);
1da177e4
LT
1933 kfree(md);
1934}
1935
e6ee8c0b
KU
1936static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1937{
1938 struct dm_md_mempools *p;
1939
1940 if (md->io_pool && md->tio_pool && md->bs)
1941 /* the md already has necessary mempools */
1942 goto out;
1943
1944 p = dm_table_get_md_mempools(t);
1945 BUG_ON(!p || md->io_pool || md->tio_pool || md->bs);
1946
1947 md->io_pool = p->io_pool;
1948 p->io_pool = NULL;
1949 md->tio_pool = p->tio_pool;
1950 p->tio_pool = NULL;
1951 md->bs = p->bs;
1952 p->bs = NULL;
1953
1954out:
1955 /* mempool bind completed, now no need any mempools in the table */
1956 dm_table_free_md_mempools(t);
1957}
1958
1da177e4
LT
1959/*
1960 * Bind a table to the device.
1961 */
1962static void event_callback(void *context)
1963{
7a8c3d3b
MA
1964 unsigned long flags;
1965 LIST_HEAD(uevents);
1da177e4
LT
1966 struct mapped_device *md = (struct mapped_device *) context;
1967
7a8c3d3b
MA
1968 spin_lock_irqsave(&md->uevent_lock, flags);
1969 list_splice_init(&md->uevent_list, &uevents);
1970 spin_unlock_irqrestore(&md->uevent_lock, flags);
1971
ed9e1982 1972 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
7a8c3d3b 1973
1da177e4
LT
1974 atomic_inc(&md->event_nr);
1975 wake_up(&md->eventq);
1976}
1977
c217649b
MS
1978/*
1979 * Protected by md->suspend_lock obtained by dm_swap_table().
1980 */
4e90188b 1981static void __set_size(struct mapped_device *md, sector_t size)
1da177e4 1982{
4e90188b 1983 set_capacity(md->disk, size);
1da177e4 1984
db8fef4f 1985 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1da177e4
LT
1986}
1987
042d2a9b
AK
1988/*
1989 * Returns old map, which caller must destroy.
1990 */
1991static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
1992 struct queue_limits *limits)
1da177e4 1993{
042d2a9b 1994 struct dm_table *old_map;
165125e1 1995 struct request_queue *q = md->queue;
1da177e4 1996 sector_t size;
523d9297 1997 unsigned long flags;
1da177e4
LT
1998
1999 size = dm_table_get_size(t);
3ac51e74
DW
2000
2001 /*
2002 * Wipe any geometry if the size of the table changed.
2003 */
2004 if (size != get_capacity(md->disk))
2005 memset(&md->geometry, 0, sizeof(md->geometry));
2006
32a926da 2007 __set_size(md, size);
d5816876 2008
2ca3310e
AK
2009 dm_table_event_callback(t, event_callback, md);
2010
e6ee8c0b
KU
2011 /*
2012 * The queue hasn't been stopped yet, if the old table type wasn't
2013 * for request-based during suspension. So stop it to prevent
2014 * I/O mapping before resume.
2015 * This must be done before setting the queue restrictions,
2016 * because request-based dm may be run just after the setting.
2017 */
2018 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2019 stop_queue(q);
2020
2021 __bind_mempools(md, t);
2022
523d9297 2023 write_lock_irqsave(&md->map_lock, flags);
042d2a9b 2024 old_map = md->map;
1da177e4 2025 md->map = t;
754c5fc7 2026 dm_table_set_restrictions(t, q, limits);
523d9297 2027 write_unlock_irqrestore(&md->map_lock, flags);
1da177e4 2028
042d2a9b 2029 return old_map;
1da177e4
LT
2030}
2031
a7940155
AK
2032/*
2033 * Returns unbound table for the caller to free.
2034 */
2035static struct dm_table *__unbind(struct mapped_device *md)
1da177e4
LT
2036{
2037 struct dm_table *map = md->map;
523d9297 2038 unsigned long flags;
1da177e4
LT
2039
2040 if (!map)
a7940155 2041 return NULL;
1da177e4
LT
2042
2043 dm_table_event_callback(map, NULL, NULL);
523d9297 2044 write_lock_irqsave(&md->map_lock, flags);
1da177e4 2045 md->map = NULL;
523d9297 2046 write_unlock_irqrestore(&md->map_lock, flags);
a7940155
AK
2047
2048 return map;
1da177e4
LT
2049}
2050
2051/*
2052 * Constructor for a new device.
2053 */
2b06cfff 2054int dm_create(int minor, struct mapped_device **result)
1da177e4
LT
2055{
2056 struct mapped_device *md;
2057
2b06cfff 2058 md = alloc_dev(minor);
1da177e4
LT
2059 if (!md)
2060 return -ENXIO;
2061
784aae73
MB
2062 dm_sysfs_init(md);
2063
1da177e4
LT
2064 *result = md;
2065 return 0;
2066}
2067
a5664dad
MS
2068/*
2069 * Functions to manage md->type.
2070 * All are required to hold md->type_lock.
2071 */
2072void dm_lock_md_type(struct mapped_device *md)
2073{
2074 mutex_lock(&md->type_lock);
2075}
2076
2077void dm_unlock_md_type(struct mapped_device *md)
2078{
2079 mutex_unlock(&md->type_lock);
2080}
2081
2082void dm_set_md_type(struct mapped_device *md, unsigned type)
2083{
2084 md->type = type;
2085}
2086
2087unsigned dm_get_md_type(struct mapped_device *md)
2088{
2089 return md->type;
2090}
2091
4a0b4ddf
MS
2092/*
2093 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2094 */
2095static int dm_init_request_based_queue(struct mapped_device *md)
2096{
2097 struct request_queue *q = NULL;
2098
2099 if (md->queue->elevator)
2100 return 1;
2101
2102 /* Fully initialize the queue */
2103 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2104 if (!q)
2105 return 0;
2106
2107 md->queue = q;
2108 md->saved_make_request_fn = md->queue->make_request_fn;
2109 dm_init_md_queue(md);
2110 blk_queue_softirq_done(md->queue, dm_softirq_done);
2111 blk_queue_prep_rq(md->queue, dm_prep_fn);
2112 blk_queue_lld_busy(md->queue, dm_lld_busy);
4a0b4ddf
MS
2113
2114 elv_register_queue(md->queue);
2115
2116 return 1;
2117}
2118
2119/*
2120 * Setup the DM device's queue based on md's type
2121 */
2122int dm_setup_md_queue(struct mapped_device *md)
2123{
2124 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2125 !dm_init_request_based_queue(md)) {
2126 DMWARN("Cannot initialize queue for request-based mapped device");
2127 return -EINVAL;
2128 }
2129
2130 return 0;
2131}
2132
637842cf 2133static struct mapped_device *dm_find_md(dev_t dev)
1da177e4
LT
2134{
2135 struct mapped_device *md;
1da177e4
LT
2136 unsigned minor = MINOR(dev);
2137
2138 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2139 return NULL;
2140
f32c10b0 2141 spin_lock(&_minor_lock);
1da177e4
LT
2142
2143 md = idr_find(&_minor_idr, minor);
fba9f90e 2144 if (md && (md == MINOR_ALLOCED ||
f331c029 2145 (MINOR(disk_devt(dm_disk(md))) != minor) ||
abdc568b 2146 dm_deleting_md(md) ||
17b2f66f 2147 test_bit(DMF_FREEING, &md->flags))) {
637842cf 2148 md = NULL;
fba9f90e
JM
2149 goto out;
2150 }
1da177e4 2151
fba9f90e 2152out:
f32c10b0 2153 spin_unlock(&_minor_lock);
1da177e4 2154
637842cf
DT
2155 return md;
2156}
2157
d229a958
DT
2158struct mapped_device *dm_get_md(dev_t dev)
2159{
2160 struct mapped_device *md = dm_find_md(dev);
2161
2162 if (md)
2163 dm_get(md);
2164
2165 return md;
2166}
2167
9ade92a9 2168void *dm_get_mdptr(struct mapped_device *md)
637842cf 2169{
9ade92a9 2170 return md->interface_ptr;
1da177e4
LT
2171}
2172
2173void dm_set_mdptr(struct mapped_device *md, void *ptr)
2174{
2175 md->interface_ptr = ptr;
2176}
2177
2178void dm_get(struct mapped_device *md)
2179{
2180 atomic_inc(&md->holders);
3f77316d 2181 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1da177e4
LT
2182}
2183
72d94861
AK
2184const char *dm_device_name(struct mapped_device *md)
2185{
2186 return md->name;
2187}
2188EXPORT_SYMBOL_GPL(dm_device_name);
2189
3f77316d 2190static void __dm_destroy(struct mapped_device *md, bool wait)
1da177e4 2191{
1134e5ae 2192 struct dm_table *map;
1da177e4 2193
3f77316d 2194 might_sleep();
fba9f90e 2195
3f77316d
KU
2196 spin_lock(&_minor_lock);
2197 map = dm_get_live_table(md);
2198 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2199 set_bit(DMF_FREEING, &md->flags);
2200 spin_unlock(&_minor_lock);
2201
2202 if (!dm_suspended_md(md)) {
2203 dm_table_presuspend_targets(map);
2204 dm_table_postsuspend_targets(map);
1da177e4 2205 }
3f77316d
KU
2206
2207 /*
2208 * Rare, but there may be I/O requests still going to complete,
2209 * for example. Wait for all references to disappear.
2210 * No one should increment the reference count of the mapped_device,
2211 * after the mapped_device state becomes DMF_FREEING.
2212 */
2213 if (wait)
2214 while (atomic_read(&md->holders))
2215 msleep(1);
2216 else if (atomic_read(&md->holders))
2217 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2218 dm_device_name(md), atomic_read(&md->holders));
2219
2220 dm_sysfs_exit(md);
2221 dm_table_put(map);
2222 dm_table_destroy(__unbind(md));
2223 free_dev(md);
2224}
2225
2226void dm_destroy(struct mapped_device *md)
2227{
2228 __dm_destroy(md, true);
2229}
2230
2231void dm_destroy_immediate(struct mapped_device *md)
2232{
2233 __dm_destroy(md, false);
2234}
2235
2236void dm_put(struct mapped_device *md)
2237{
2238 atomic_dec(&md->holders);
1da177e4 2239}
79eb885c 2240EXPORT_SYMBOL_GPL(dm_put);
1da177e4 2241
401600df 2242static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
46125c1c
MB
2243{
2244 int r = 0;
b44ebeb0
MP
2245 DECLARE_WAITQUEUE(wait, current);
2246
b44ebeb0 2247 add_wait_queue(&md->wait, &wait);
46125c1c
MB
2248
2249 while (1) {
401600df 2250 set_current_state(interruptible);
46125c1c
MB
2251
2252 smp_mb();
b4324fee 2253 if (!md_in_flight(md))
46125c1c
MB
2254 break;
2255
401600df
MP
2256 if (interruptible == TASK_INTERRUPTIBLE &&
2257 signal_pending(current)) {
46125c1c
MB
2258 r = -EINTR;
2259 break;
2260 }
2261
2262 io_schedule();
2263 }
2264 set_current_state(TASK_RUNNING);
2265
b44ebeb0
MP
2266 remove_wait_queue(&md->wait, &wait);
2267
46125c1c
MB
2268 return r;
2269}
2270
1da177e4
LT
2271/*
2272 * Process the deferred bios
2273 */
ef208587 2274static void dm_wq_work(struct work_struct *work)
1da177e4 2275{
ef208587
MP
2276 struct mapped_device *md = container_of(work, struct mapped_device,
2277 work);
6d6f10df 2278 struct bio *c;
1da177e4 2279
6a8736d1 2280 down_read(&md->io_lock);
ef208587 2281
3b00b203 2282 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
df12ee99
AK
2283 spin_lock_irq(&md->deferred_lock);
2284 c = bio_list_pop(&md->deferred);
2285 spin_unlock_irq(&md->deferred_lock);
2286
6a8736d1 2287 if (!c)
df12ee99 2288 break;
022c2611 2289
6a8736d1 2290 up_read(&md->io_lock);
3b00b203 2291
e6ee8c0b
KU
2292 if (dm_request_based(md))
2293 generic_make_request(c);
6a8736d1
TH
2294 else
2295 __split_and_process_bio(md, c);
3b00b203 2296
6a8736d1 2297 down_read(&md->io_lock);
022c2611 2298 }
73d410c0 2299
6a8736d1 2300 up_read(&md->io_lock);
1da177e4
LT
2301}
2302
9a1fb464 2303static void dm_queue_flush(struct mapped_device *md)
304f3f6a 2304{
3b00b203
MP
2305 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2306 smp_mb__after_clear_bit();
53d5914f 2307 queue_work(md->wq, &md->work);
304f3f6a
MB
2308}
2309
1da177e4 2310/*
042d2a9b 2311 * Swap in a new table, returning the old one for the caller to destroy.
1da177e4 2312 */
042d2a9b 2313struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
1da177e4 2314{
042d2a9b 2315 struct dm_table *map = ERR_PTR(-EINVAL);
754c5fc7 2316 struct queue_limits limits;
042d2a9b 2317 int r;
1da177e4 2318
e61290a4 2319 mutex_lock(&md->suspend_lock);
1da177e4
LT
2320
2321 /* device must be suspended */
4f186f8b 2322 if (!dm_suspended_md(md))
93c534ae 2323 goto out;
1da177e4 2324
754c5fc7 2325 r = dm_calculate_queue_limits(table, &limits);
042d2a9b
AK
2326 if (r) {
2327 map = ERR_PTR(r);
754c5fc7 2328 goto out;
042d2a9b 2329 }
754c5fc7 2330
042d2a9b 2331 map = __bind(md, table, &limits);
1da177e4 2332
93c534ae 2333out:
e61290a4 2334 mutex_unlock(&md->suspend_lock);
042d2a9b 2335 return map;
1da177e4
LT
2336}
2337
2338/*
2339 * Functions to lock and unlock any filesystem running on the
2340 * device.
2341 */
2ca3310e 2342static int lock_fs(struct mapped_device *md)
1da177e4 2343{
e39e2e95 2344 int r;
1da177e4
LT
2345
2346 WARN_ON(md->frozen_sb);
dfbe03f6 2347
db8fef4f 2348 md->frozen_sb = freeze_bdev(md->bdev);
dfbe03f6 2349 if (IS_ERR(md->frozen_sb)) {
cf222b37 2350 r = PTR_ERR(md->frozen_sb);
e39e2e95
AK
2351 md->frozen_sb = NULL;
2352 return r;
dfbe03f6
AK
2353 }
2354
aa8d7c2f
AK
2355 set_bit(DMF_FROZEN, &md->flags);
2356
1da177e4
LT
2357 return 0;
2358}
2359
2ca3310e 2360static void unlock_fs(struct mapped_device *md)
1da177e4 2361{
aa8d7c2f
AK
2362 if (!test_bit(DMF_FROZEN, &md->flags))
2363 return;
2364
db8fef4f 2365 thaw_bdev(md->bdev, md->frozen_sb);
1da177e4 2366 md->frozen_sb = NULL;
aa8d7c2f 2367 clear_bit(DMF_FROZEN, &md->flags);
1da177e4
LT
2368}
2369
2370/*
2371 * We need to be able to change a mapping table under a mounted
2372 * filesystem. For example we might want to move some data in
2373 * the background. Before the table can be swapped with
2374 * dm_bind_table, dm_suspend must be called to flush any in
2375 * flight bios and ensure that any further io gets deferred.
2376 */
cec47e3d
KU
2377/*
2378 * Suspend mechanism in request-based dm.
2379 *
9f518b27
KU
2380 * 1. Flush all I/Os by lock_fs() if needed.
2381 * 2. Stop dispatching any I/O by stopping the request_queue.
2382 * 3. Wait for all in-flight I/Os to be completed or requeued.
cec47e3d 2383 *
9f518b27 2384 * To abort suspend, start the request_queue.
cec47e3d 2385 */
a3d77d35 2386int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
1da177e4 2387{
2ca3310e 2388 struct dm_table *map = NULL;
46125c1c 2389 int r = 0;
a3d77d35 2390 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
2e93ccc1 2391 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
1da177e4 2392
e61290a4 2393 mutex_lock(&md->suspend_lock);
2ca3310e 2394
4f186f8b 2395 if (dm_suspended_md(md)) {
73d410c0 2396 r = -EINVAL;
d287483d 2397 goto out_unlock;
73d410c0 2398 }
1da177e4 2399
7c666411 2400 map = dm_get_live_table(md);
1da177e4 2401
2e93ccc1
KU
2402 /*
2403 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2404 * This flag is cleared before dm_suspend returns.
2405 */
2406 if (noflush)
2407 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2408
cf222b37
AK
2409 /* This does not get reverted if there's an error later. */
2410 dm_table_presuspend_targets(map);
2411
32a926da 2412 /*
9f518b27
KU
2413 * Flush I/O to the device.
2414 * Any I/O submitted after lock_fs() may not be flushed.
2415 * noflush takes precedence over do_lockfs.
2416 * (lock_fs() flushes I/Os and waits for them to complete.)
32a926da
MP
2417 */
2418 if (!noflush && do_lockfs) {
2419 r = lock_fs(md);
2420 if (r)
f431d966 2421 goto out;
aa8d7c2f 2422 }
1da177e4
LT
2423
2424 /*
3b00b203
MP
2425 * Here we must make sure that no processes are submitting requests
2426 * to target drivers i.e. no one may be executing
2427 * __split_and_process_bio. This is called from dm_request and
2428 * dm_wq_work.
2429 *
2430 * To get all processes out of __split_and_process_bio in dm_request,
2431 * we take the write lock. To prevent any process from reentering
6a8736d1
TH
2432 * __split_and_process_bio from dm_request and quiesce the thread
2433 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2434 * flush_workqueue(md->wq).
1da177e4 2435 */
2ca3310e 2436 down_write(&md->io_lock);
1eb787ec 2437 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2ca3310e 2438 up_write(&md->io_lock);
1da177e4 2439
d0bcb878 2440 /*
29e4013d
TH
2441 * Stop md->queue before flushing md->wq in case request-based
2442 * dm defers requests to md->wq from md->queue.
d0bcb878 2443 */
cec47e3d 2444 if (dm_request_based(md))
9f518b27 2445 stop_queue(md->queue);
cec47e3d 2446
d0bcb878
KU
2447 flush_workqueue(md->wq);
2448
1da177e4 2449 /*
3b00b203
MP
2450 * At this point no more requests are entering target request routines.
2451 * We call dm_wait_for_completion to wait for all existing requests
2452 * to finish.
1da177e4 2453 */
401600df 2454 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
1da177e4 2455
2ca3310e 2456 down_write(&md->io_lock);
6d6f10df 2457 if (noflush)
022c2611 2458 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
94d6351e 2459 up_write(&md->io_lock);
2e93ccc1 2460
1da177e4 2461 /* were we interrupted ? */
46125c1c 2462 if (r < 0) {
9a1fb464 2463 dm_queue_flush(md);
73d410c0 2464
cec47e3d 2465 if (dm_request_based(md))
9f518b27 2466 start_queue(md->queue);
cec47e3d 2467
2ca3310e 2468 unlock_fs(md);
2e93ccc1 2469 goto out; /* pushback list is already flushed, so skip flush */
2ca3310e 2470 }
1da177e4 2471
3b00b203
MP
2472 /*
2473 * If dm_wait_for_completion returned 0, the device is completely
2474 * quiescent now. There is no request-processing activity. All new
2475 * requests are being added to md->deferred list.
2476 */
2477
2ca3310e 2478 set_bit(DMF_SUSPENDED, &md->flags);
b84b0287 2479
4d4471cb
KU
2480 dm_table_postsuspend_targets(map);
2481
2ca3310e
AK
2482out:
2483 dm_table_put(map);
d287483d
AK
2484
2485out_unlock:
e61290a4 2486 mutex_unlock(&md->suspend_lock);
cf222b37 2487 return r;
1da177e4
LT
2488}
2489
2490int dm_resume(struct mapped_device *md)
2491{
cf222b37 2492 int r = -EINVAL;
cf222b37 2493 struct dm_table *map = NULL;
1da177e4 2494
e61290a4 2495 mutex_lock(&md->suspend_lock);
4f186f8b 2496 if (!dm_suspended_md(md))
cf222b37 2497 goto out;
cf222b37 2498
7c666411 2499 map = dm_get_live_table(md);
2ca3310e 2500 if (!map || !dm_table_get_size(map))
cf222b37 2501 goto out;
1da177e4 2502
8757b776
MB
2503 r = dm_table_resume_targets(map);
2504 if (r)
2505 goto out;
2ca3310e 2506
9a1fb464 2507 dm_queue_flush(md);
2ca3310e 2508
cec47e3d
KU
2509 /*
2510 * Flushing deferred I/Os must be done after targets are resumed
2511 * so that mapping of targets can work correctly.
2512 * Request-based dm is queueing the deferred I/Os in its request_queue.
2513 */
2514 if (dm_request_based(md))
2515 start_queue(md->queue);
2516
2ca3310e
AK
2517 unlock_fs(md);
2518
2519 clear_bit(DMF_SUSPENDED, &md->flags);
2520
cf222b37
AK
2521 r = 0;
2522out:
2523 dm_table_put(map);
e61290a4 2524 mutex_unlock(&md->suspend_lock);
2ca3310e 2525
cf222b37 2526 return r;
1da177e4
LT
2527}
2528
2529/*-----------------------------------------------------------------
2530 * Event notification.
2531 *---------------------------------------------------------------*/
3abf85b5 2532int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
60935eb2 2533 unsigned cookie)
69267a30 2534{
60935eb2
MB
2535 char udev_cookie[DM_COOKIE_LENGTH];
2536 char *envp[] = { udev_cookie, NULL };
2537
2538 if (!cookie)
3abf85b5 2539 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
60935eb2
MB
2540 else {
2541 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2542 DM_COOKIE_ENV_VAR_NAME, cookie);
3abf85b5
PR
2543 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2544 action, envp);
60935eb2 2545 }
69267a30
AK
2546}
2547
7a8c3d3b
MA
2548uint32_t dm_next_uevent_seq(struct mapped_device *md)
2549{
2550 return atomic_add_return(1, &md->uevent_seq);
2551}
2552
1da177e4
LT
2553uint32_t dm_get_event_nr(struct mapped_device *md)
2554{
2555 return atomic_read(&md->event_nr);
2556}
2557
2558int dm_wait_event(struct mapped_device *md, int event_nr)
2559{
2560 return wait_event_interruptible(md->eventq,
2561 (event_nr != atomic_read(&md->event_nr)));
2562}
2563
7a8c3d3b
MA
2564void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2565{
2566 unsigned long flags;
2567
2568 spin_lock_irqsave(&md->uevent_lock, flags);
2569 list_add(elist, &md->uevent_list);
2570 spin_unlock_irqrestore(&md->uevent_lock, flags);
2571}
2572
1da177e4
LT
2573/*
2574 * The gendisk is only valid as long as you have a reference
2575 * count on 'md'.
2576 */
2577struct gendisk *dm_disk(struct mapped_device *md)
2578{
2579 return md->disk;
2580}
2581
784aae73
MB
2582struct kobject *dm_kobject(struct mapped_device *md)
2583{
2584 return &md->kobj;
2585}
2586
2587/*
2588 * struct mapped_device should not be exported outside of dm.c
2589 * so use this check to verify that kobj is part of md structure
2590 */
2591struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2592{
2593 struct mapped_device *md;
2594
2595 md = container_of(kobj, struct mapped_device, kobj);
2596 if (&md->kobj != kobj)
2597 return NULL;
2598
4d89b7b4 2599 if (test_bit(DMF_FREEING, &md->flags) ||
432a212c 2600 dm_deleting_md(md))
4d89b7b4
MB
2601 return NULL;
2602
784aae73
MB
2603 dm_get(md);
2604 return md;
2605}
2606
4f186f8b 2607int dm_suspended_md(struct mapped_device *md)
1da177e4
LT
2608{
2609 return test_bit(DMF_SUSPENDED, &md->flags);
2610}
2611
64dbce58
KU
2612int dm_suspended(struct dm_target *ti)
2613{
ecdb2e25 2614 return dm_suspended_md(dm_table_get_md(ti->table));
64dbce58
KU
2615}
2616EXPORT_SYMBOL_GPL(dm_suspended);
2617
2e93ccc1
KU
2618int dm_noflush_suspending(struct dm_target *ti)
2619{
ecdb2e25 2620 return __noflush_suspending(dm_table_get_md(ti->table));
2e93ccc1
KU
2621}
2622EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2623
a91a2785 2624struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity)
e6ee8c0b
KU
2625{
2626 struct dm_md_mempools *pools = kmalloc(sizeof(*pools), GFP_KERNEL);
a91a2785 2627 unsigned int pool_size = (type == DM_TYPE_BIO_BASED) ? 16 : MIN_IOS;
e6ee8c0b
KU
2628
2629 if (!pools)
2630 return NULL;
2631
2632 pools->io_pool = (type == DM_TYPE_BIO_BASED) ?
2633 mempool_create_slab_pool(MIN_IOS, _io_cache) :
2634 mempool_create_slab_pool(MIN_IOS, _rq_bio_info_cache);
2635 if (!pools->io_pool)
2636 goto free_pools_and_out;
2637
2638 pools->tio_pool = (type == DM_TYPE_BIO_BASED) ?
2639 mempool_create_slab_pool(MIN_IOS, _tio_cache) :
2640 mempool_create_slab_pool(MIN_IOS, _rq_tio_cache);
2641 if (!pools->tio_pool)
2642 goto free_io_pool_and_out;
2643
a91a2785 2644 pools->bs = bioset_create(pool_size, 0);
e6ee8c0b
KU
2645 if (!pools->bs)
2646 goto free_tio_pool_and_out;
2647
a91a2785
MP
2648 if (integrity && bioset_integrity_create(pools->bs, pool_size))
2649 goto free_bioset_and_out;
2650
e6ee8c0b
KU
2651 return pools;
2652
a91a2785
MP
2653free_bioset_and_out:
2654 bioset_free(pools->bs);
2655
e6ee8c0b
KU
2656free_tio_pool_and_out:
2657 mempool_destroy(pools->tio_pool);
2658
2659free_io_pool_and_out:
2660 mempool_destroy(pools->io_pool);
2661
2662free_pools_and_out:
2663 kfree(pools);
2664
2665 return NULL;
2666}
2667
2668void dm_free_md_mempools(struct dm_md_mempools *pools)
2669{
2670 if (!pools)
2671 return;
2672
2673 if (pools->io_pool)
2674 mempool_destroy(pools->io_pool);
2675
2676 if (pools->tio_pool)
2677 mempool_destroy(pools->tio_pool);
2678
2679 if (pools->bs)
2680 bioset_free(pools->bs);
2681
2682 kfree(pools);
2683}
2684
83d5cde4 2685static const struct block_device_operations dm_blk_dops = {
1da177e4
LT
2686 .open = dm_blk_open,
2687 .release = dm_blk_close,
aa129a22 2688 .ioctl = dm_blk_ioctl,
3ac51e74 2689 .getgeo = dm_blk_getgeo,
1da177e4
LT
2690 .owner = THIS_MODULE
2691};
2692
2693EXPORT_SYMBOL(dm_get_mapinfo);
2694
2695/*
2696 * module hooks
2697 */
2698module_init(dm_init);
2699module_exit(dm_exit);
2700
2701module_param(major, uint, 0);
2702MODULE_PARM_DESC(major, "The major number of the device mapper");
2703MODULE_DESCRIPTION(DM_NAME " driver");
2704MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2705MODULE_LICENSE("GPL");