dm: remove exports for request-based interfaces without external callers
[linux-2.6-block.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>
1da177e4
LT
17#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/idr.h>
3ac51e74 20#include <linux/hdreg.h>
3f77316d 21#include <linux/delay.h>
ffcc3936 22#include <linux/wait.h>
55782138
LZ
23
24#include <trace/events/block.h>
1da177e4 25
72d94861
AK
26#define DM_MSG_PREFIX "core"
27
71a16736
NK
28#ifdef CONFIG_PRINTK
29/*
30 * ratelimit state to be used in DMXXX_LIMIT().
31 */
32DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
33 DEFAULT_RATELIMIT_INTERVAL,
34 DEFAULT_RATELIMIT_BURST);
35EXPORT_SYMBOL(dm_ratelimit_state);
36#endif
37
60935eb2
MB
38/*
39 * Cookies are numeric values sent with CHANGE and REMOVE
40 * uevents while resuming, removing or renaming the device.
41 */
42#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
43#define DM_COOKIE_LENGTH 24
44
1da177e4
LT
45static const char *_name = DM_NAME;
46
47static unsigned int major = 0;
48static unsigned int _major = 0;
49
d15b774c
AK
50static DEFINE_IDR(_minor_idr);
51
f32c10b0 52static DEFINE_SPINLOCK(_minor_lock);
2c140a24
MP
53
54static void do_deferred_remove(struct work_struct *w);
55
56static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
57
acfe0ad7
MP
58static struct workqueue_struct *deferred_remove_workqueue;
59
1da177e4 60/*
8fbf26ad 61 * For bio-based dm.
1da177e4
LT
62 * One of these is allocated per bio.
63 */
64struct dm_io {
65 struct mapped_device *md;
66 int error;
1da177e4 67 atomic_t io_count;
6ae2fa67 68 struct bio *bio;
3eaf840e 69 unsigned long start_time;
f88fb981 70 spinlock_t endio_lock;
fd2ed4d2 71 struct dm_stats_aux stats_aux;
1da177e4
LT
72};
73
8fbf26ad
KU
74/*
75 * For request-based dm.
76 * One of these is allocated per request.
77 */
78struct dm_rq_target_io {
79 struct mapped_device *md;
80 struct dm_target *ti;
81 struct request *orig, clone;
82 int error;
83 union map_info info;
84};
85
86/*
94818742
KO
87 * For request-based dm - the bio clones we allocate are embedded in these
88 * structs.
89 *
90 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
91 * the bioset is created - this means the bio has to come at the end of the
92 * struct.
8fbf26ad
KU
93 */
94struct dm_rq_clone_bio_info {
95 struct bio *orig;
cec47e3d 96 struct dm_rq_target_io *tio;
94818742 97 struct bio clone;
8fbf26ad
KU
98};
99
cec47e3d
KU
100union map_info *dm_get_rq_mapinfo(struct request *rq)
101{
102 if (rq && rq->end_io_data)
103 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
104 return NULL;
105}
106EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
107
ba61fdd1
JM
108#define MINOR_ALLOCED ((void *)-1)
109
1da177e4
LT
110/*
111 * Bits for the md->flags field.
112 */
1eb787ec 113#define DMF_BLOCK_IO_FOR_SUSPEND 0
1da177e4 114#define DMF_SUSPENDED 1
aa8d7c2f 115#define DMF_FROZEN 2
fba9f90e 116#define DMF_FREEING 3
5c6bd75d 117#define DMF_DELETING 4
2e93ccc1 118#define DMF_NOFLUSH_SUSPENDING 5
d5b9dd04 119#define DMF_MERGE_IS_OPTIONAL 6
2c140a24 120#define DMF_DEFERRED_REMOVE 7
ffcc3936 121#define DMF_SUSPENDED_INTERNALLY 8
1da177e4 122
83d5e5b0
MP
123/*
124 * A dummy definition to make RCU happy.
125 * struct dm_table should never be dereferenced in this file.
126 */
127struct dm_table {
128 int undefined__;
129};
130
304f3f6a
MB
131/*
132 * Work processed by per-device workqueue.
133 */
1da177e4 134struct mapped_device {
83d5e5b0 135 struct srcu_struct io_barrier;
e61290a4 136 struct mutex suspend_lock;
1da177e4 137 atomic_t holders;
5c6bd75d 138 atomic_t open_count;
1da177e4 139
2a7faeb1
MP
140 /*
141 * The current mapping.
142 * Use dm_get_live_table{_fast} or take suspend_lock for
143 * dereference.
144 */
6fa99520 145 struct dm_table __rcu *map;
2a7faeb1 146
86f1152b
BM
147 struct list_head table_devices;
148 struct mutex table_devices_lock;
149
1da177e4
LT
150 unsigned long flags;
151
165125e1 152 struct request_queue *queue;
a5664dad 153 unsigned type;
4a0b4ddf 154 /* Protect queue and type against concurrent access. */
a5664dad
MS
155 struct mutex type_lock;
156
36a0456f
AK
157 struct target_type *immutable_target_type;
158
1da177e4 159 struct gendisk *disk;
7e51f257 160 char name[16];
1da177e4
LT
161
162 void *interface_ptr;
163
164 /*
165 * A list of ios that arrived while we were suspended.
166 */
316d315b 167 atomic_t pending[2];
1da177e4 168 wait_queue_head_t wait;
53d5914f 169 struct work_struct work;
74859364 170 struct bio_list deferred;
022c2611 171 spinlock_t deferred_lock;
1da177e4 172
af7e466a 173 /*
29e4013d 174 * Processing queue (flush)
304f3f6a
MB
175 */
176 struct workqueue_struct *wq;
177
1da177e4
LT
178 /*
179 * io objects are allocated from here.
180 */
181 mempool_t *io_pool;
1da177e4 182
9faf400f
SB
183 struct bio_set *bs;
184
1da177e4
LT
185 /*
186 * Event handling.
187 */
188 atomic_t event_nr;
189 wait_queue_head_t eventq;
7a8c3d3b
MA
190 atomic_t uevent_seq;
191 struct list_head uevent_list;
192 spinlock_t uevent_lock; /* Protect access to uevent_list */
1da177e4
LT
193
194 /*
195 * freeze/thaw support require holding onto a super block
196 */
197 struct super_block *frozen_sb;
db8fef4f 198 struct block_device *bdev;
3ac51e74
DW
199
200 /* forced geometry settings */
201 struct hd_geometry geometry;
784aae73 202
2995fa78
MP
203 /* kobject and completion */
204 struct dm_kobject_holder kobj_holder;
be35f486 205
d87f4c14
TH
206 /* zero-length flush that will be cloned and submitted to targets */
207 struct bio flush_bio;
fd2ed4d2
MP
208
209 struct dm_stats stats;
1da177e4
LT
210};
211
e6ee8c0b
KU
212/*
213 * For mempools pre-allocation at the table loading time.
214 */
215struct dm_md_mempools {
216 mempool_t *io_pool;
e6ee8c0b
KU
217 struct bio_set *bs;
218};
219
86f1152b
BM
220struct table_device {
221 struct list_head list;
222 atomic_t count;
223 struct dm_dev dm_dev;
224};
225
6cfa5857
MS
226#define RESERVED_BIO_BASED_IOS 16
227#define RESERVED_REQUEST_BASED_IOS 256
f4790826 228#define RESERVED_MAX_IOS 1024
e18b890b 229static struct kmem_cache *_io_cache;
8fbf26ad 230static struct kmem_cache *_rq_tio_cache;
94818742 231
e8603136
MS
232/*
233 * Bio-based DM's mempools' reserved IOs set by the user.
234 */
235static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
236
f4790826
MS
237/*
238 * Request-based DM's mempools' reserved IOs set by the user.
239 */
240static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
241
242static unsigned __dm_get_reserved_ios(unsigned *reserved_ios,
243 unsigned def, unsigned max)
244{
245 unsigned ios = ACCESS_ONCE(*reserved_ios);
246 unsigned modified_ios = 0;
247
248 if (!ios)
249 modified_ios = def;
250 else if (ios > max)
251 modified_ios = max;
252
253 if (modified_ios) {
254 (void)cmpxchg(reserved_ios, ios, modified_ios);
255 ios = modified_ios;
256 }
257
258 return ios;
259}
260
e8603136
MS
261unsigned dm_get_reserved_bio_based_ios(void)
262{
263 return __dm_get_reserved_ios(&reserved_bio_based_ios,
264 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
265}
266EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
267
f4790826
MS
268unsigned dm_get_reserved_rq_based_ios(void)
269{
270 return __dm_get_reserved_ios(&reserved_rq_based_ios,
271 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
272}
273EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
274
1da177e4
LT
275static int __init local_init(void)
276{
51157b4a 277 int r = -ENOMEM;
1da177e4 278
1da177e4 279 /* allocate a slab for the dm_ios */
028867ac 280 _io_cache = KMEM_CACHE(dm_io, 0);
1da177e4 281 if (!_io_cache)
51157b4a 282 return r;
1da177e4 283
8fbf26ad
KU
284 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
285 if (!_rq_tio_cache)
dba14160 286 goto out_free_io_cache;
8fbf26ad 287
51e5b2bd 288 r = dm_uevent_init();
51157b4a 289 if (r)
23e5083b 290 goto out_free_rq_tio_cache;
51e5b2bd 291
acfe0ad7
MP
292 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
293 if (!deferred_remove_workqueue) {
294 r = -ENOMEM;
295 goto out_uevent_exit;
296 }
297
1da177e4
LT
298 _major = major;
299 r = register_blkdev(_major, _name);
51157b4a 300 if (r < 0)
acfe0ad7 301 goto out_free_workqueue;
1da177e4
LT
302
303 if (!_major)
304 _major = r;
305
306 return 0;
51157b4a 307
acfe0ad7
MP
308out_free_workqueue:
309 destroy_workqueue(deferred_remove_workqueue);
51157b4a
KU
310out_uevent_exit:
311 dm_uevent_exit();
8fbf26ad
KU
312out_free_rq_tio_cache:
313 kmem_cache_destroy(_rq_tio_cache);
51157b4a
KU
314out_free_io_cache:
315 kmem_cache_destroy(_io_cache);
316
317 return r;
1da177e4
LT
318}
319
320static void local_exit(void)
321{
2c140a24 322 flush_scheduled_work();
acfe0ad7 323 destroy_workqueue(deferred_remove_workqueue);
2c140a24 324
8fbf26ad 325 kmem_cache_destroy(_rq_tio_cache);
1da177e4 326 kmem_cache_destroy(_io_cache);
00d59405 327 unregister_blkdev(_major, _name);
51e5b2bd 328 dm_uevent_exit();
1da177e4
LT
329
330 _major = 0;
331
332 DMINFO("cleaned up");
333}
334
b9249e55 335static int (*_inits[])(void) __initdata = {
1da177e4
LT
336 local_init,
337 dm_target_init,
338 dm_linear_init,
339 dm_stripe_init,
952b3557 340 dm_io_init,
945fa4d2 341 dm_kcopyd_init,
1da177e4 342 dm_interface_init,
fd2ed4d2 343 dm_statistics_init,
1da177e4
LT
344};
345
b9249e55 346static void (*_exits[])(void) = {
1da177e4
LT
347 local_exit,
348 dm_target_exit,
349 dm_linear_exit,
350 dm_stripe_exit,
952b3557 351 dm_io_exit,
945fa4d2 352 dm_kcopyd_exit,
1da177e4 353 dm_interface_exit,
fd2ed4d2 354 dm_statistics_exit,
1da177e4
LT
355};
356
357static int __init dm_init(void)
358{
359 const int count = ARRAY_SIZE(_inits);
360
361 int r, i;
362
363 for (i = 0; i < count; i++) {
364 r = _inits[i]();
365 if (r)
366 goto bad;
367 }
368
369 return 0;
370
371 bad:
372 while (i--)
373 _exits[i]();
374
375 return r;
376}
377
378static void __exit dm_exit(void)
379{
380 int i = ARRAY_SIZE(_exits);
381
382 while (i--)
383 _exits[i]();
d15b774c
AK
384
385 /*
386 * Should be empty by this point.
387 */
d15b774c 388 idr_destroy(&_minor_idr);
1da177e4
LT
389}
390
391/*
392 * Block device functions
393 */
432a212c
MA
394int dm_deleting_md(struct mapped_device *md)
395{
396 return test_bit(DMF_DELETING, &md->flags);
397}
398
fe5f9f2c 399static int dm_blk_open(struct block_device *bdev, fmode_t mode)
1da177e4
LT
400{
401 struct mapped_device *md;
402
fba9f90e
JM
403 spin_lock(&_minor_lock);
404
fe5f9f2c 405 md = bdev->bd_disk->private_data;
fba9f90e
JM
406 if (!md)
407 goto out;
408
5c6bd75d 409 if (test_bit(DMF_FREEING, &md->flags) ||
432a212c 410 dm_deleting_md(md)) {
fba9f90e
JM
411 md = NULL;
412 goto out;
413 }
414
1da177e4 415 dm_get(md);
5c6bd75d 416 atomic_inc(&md->open_count);
fba9f90e
JM
417
418out:
419 spin_unlock(&_minor_lock);
420
421 return md ? 0 : -ENXIO;
1da177e4
LT
422}
423
db2a144b 424static void dm_blk_close(struct gendisk *disk, fmode_t mode)
1da177e4 425{
fe5f9f2c 426 struct mapped_device *md = disk->private_data;
6e9624b8 427
4a1aeb98
MB
428 spin_lock(&_minor_lock);
429
2c140a24
MP
430 if (atomic_dec_and_test(&md->open_count) &&
431 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
acfe0ad7 432 queue_work(deferred_remove_workqueue, &deferred_remove_work);
2c140a24 433
1da177e4 434 dm_put(md);
4a1aeb98
MB
435
436 spin_unlock(&_minor_lock);
1da177e4
LT
437}
438
5c6bd75d
AK
439int dm_open_count(struct mapped_device *md)
440{
441 return atomic_read(&md->open_count);
442}
443
444/*
445 * Guarantees nothing is using the device before it's deleted.
446 */
2c140a24 447int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
5c6bd75d
AK
448{
449 int r = 0;
450
451 spin_lock(&_minor_lock);
452
2c140a24 453 if (dm_open_count(md)) {
5c6bd75d 454 r = -EBUSY;
2c140a24
MP
455 if (mark_deferred)
456 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
457 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
458 r = -EEXIST;
5c6bd75d
AK
459 else
460 set_bit(DMF_DELETING, &md->flags);
461
462 spin_unlock(&_minor_lock);
463
464 return r;
465}
466
2c140a24
MP
467int dm_cancel_deferred_remove(struct mapped_device *md)
468{
469 int r = 0;
470
471 spin_lock(&_minor_lock);
472
473 if (test_bit(DMF_DELETING, &md->flags))
474 r = -EBUSY;
475 else
476 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
477
478 spin_unlock(&_minor_lock);
479
480 return r;
481}
482
483static void do_deferred_remove(struct work_struct *w)
484{
485 dm_deferred_remove();
486}
487
fd2ed4d2
MP
488sector_t dm_get_size(struct mapped_device *md)
489{
490 return get_capacity(md->disk);
491}
492
9974fa2c
MS
493struct request_queue *dm_get_md_queue(struct mapped_device *md)
494{
495 return md->queue;
496}
497
fd2ed4d2
MP
498struct dm_stats *dm_get_stats(struct mapped_device *md)
499{
500 return &md->stats;
501}
502
3ac51e74
DW
503static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
504{
505 struct mapped_device *md = bdev->bd_disk->private_data;
506
507 return dm_get_geometry(md, geo);
508}
509
fe5f9f2c 510static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
aa129a22
MB
511 unsigned int cmd, unsigned long arg)
512{
fe5f9f2c 513 struct mapped_device *md = bdev->bd_disk->private_data;
83d5e5b0 514 int srcu_idx;
6c182cd8 515 struct dm_table *map;
aa129a22
MB
516 struct dm_target *tgt;
517 int r = -ENOTTY;
518
6c182cd8 519retry:
83d5e5b0
MP
520 map = dm_get_live_table(md, &srcu_idx);
521
aa129a22
MB
522 if (!map || !dm_table_get_size(map))
523 goto out;
524
525 /* We only support devices that have a single target */
526 if (dm_table_get_num_targets(map) != 1)
527 goto out;
528
529 tgt = dm_table_get_target(map, 0);
4d341d82
MS
530 if (!tgt->type->ioctl)
531 goto out;
aa129a22 532
4f186f8b 533 if (dm_suspended_md(md)) {
aa129a22
MB
534 r = -EAGAIN;
535 goto out;
536 }
537
4d341d82 538 r = tgt->type->ioctl(tgt, cmd, arg);
aa129a22
MB
539
540out:
83d5e5b0 541 dm_put_live_table(md, srcu_idx);
aa129a22 542
6c182cd8
HR
543 if (r == -ENOTCONN) {
544 msleep(10);
545 goto retry;
546 }
547
aa129a22
MB
548 return r;
549}
550
028867ac 551static struct dm_io *alloc_io(struct mapped_device *md)
1da177e4
LT
552{
553 return mempool_alloc(md->io_pool, GFP_NOIO);
554}
555
028867ac 556static void free_io(struct mapped_device *md, struct dm_io *io)
1da177e4
LT
557{
558 mempool_free(io, md->io_pool);
559}
560
028867ac 561static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
1da177e4 562{
dba14160 563 bio_put(&tio->clone);
1da177e4
LT
564}
565
08885643
KU
566static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
567 gfp_t gfp_mask)
cec47e3d 568{
5f015204 569 return mempool_alloc(md->io_pool, gfp_mask);
cec47e3d
KU
570}
571
572static void free_rq_tio(struct dm_rq_target_io *tio)
573{
5f015204 574 mempool_free(tio, tio->md->io_pool);
cec47e3d
KU
575}
576
90abb8c4
KU
577static int md_in_flight(struct mapped_device *md)
578{
579 return atomic_read(&md->pending[READ]) +
580 atomic_read(&md->pending[WRITE]);
581}
582
3eaf840e
JNN
583static void start_io_acct(struct dm_io *io)
584{
585 struct mapped_device *md = io->md;
fd2ed4d2 586 struct bio *bio = io->bio;
c9959059 587 int cpu;
fd2ed4d2 588 int rw = bio_data_dir(bio);
3eaf840e
JNN
589
590 io->start_time = jiffies;
591
074a7aca
TH
592 cpu = part_stat_lock();
593 part_round_stats(cpu, &dm_disk(md)->part0);
594 part_stat_unlock();
1e9bb880
SL
595 atomic_set(&dm_disk(md)->part0.in_flight[rw],
596 atomic_inc_return(&md->pending[rw]));
fd2ed4d2
MP
597
598 if (unlikely(dm_stats_used(&md->stats)))
4f024f37 599 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
fd2ed4d2 600 bio_sectors(bio), false, 0, &io->stats_aux);
3eaf840e
JNN
601}
602
d221d2e7 603static void end_io_acct(struct dm_io *io)
3eaf840e
JNN
604{
605 struct mapped_device *md = io->md;
606 struct bio *bio = io->bio;
607 unsigned long duration = jiffies - io->start_time;
18c0b223 608 int pending;
3eaf840e
JNN
609 int rw = bio_data_dir(bio);
610
18c0b223 611 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
3eaf840e 612
fd2ed4d2 613 if (unlikely(dm_stats_used(&md->stats)))
4f024f37 614 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
fd2ed4d2
MP
615 bio_sectors(bio), true, duration, &io->stats_aux);
616
af7e466a
MP
617 /*
618 * After this is decremented the bio must not be touched if it is
d87f4c14 619 * a flush.
af7e466a 620 */
1e9bb880
SL
621 pending = atomic_dec_return(&md->pending[rw]);
622 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
316d315b 623 pending += atomic_read(&md->pending[rw^0x1]);
3eaf840e 624
d221d2e7
MP
625 /* nudge anyone waiting on suspend queue */
626 if (!pending)
627 wake_up(&md->wait);
3eaf840e
JNN
628}
629
1da177e4
LT
630/*
631 * Add the bio to the list of deferred io.
632 */
92c63902 633static void queue_io(struct mapped_device *md, struct bio *bio)
1da177e4 634{
05447420 635 unsigned long flags;
1da177e4 636
05447420 637 spin_lock_irqsave(&md->deferred_lock, flags);
1da177e4 638 bio_list_add(&md->deferred, bio);
05447420 639 spin_unlock_irqrestore(&md->deferred_lock, flags);
6a8736d1 640 queue_work(md->wq, &md->work);
1da177e4
LT
641}
642
643/*
644 * Everyone (including functions in this file), should use this
645 * function to access the md->map field, and make sure they call
83d5e5b0 646 * dm_put_live_table() when finished.
1da177e4 647 */
83d5e5b0 648struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
1da177e4 649{
83d5e5b0
MP
650 *srcu_idx = srcu_read_lock(&md->io_barrier);
651
652 return srcu_dereference(md->map, &md->io_barrier);
653}
1da177e4 654
83d5e5b0
MP
655void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
656{
657 srcu_read_unlock(&md->io_barrier, srcu_idx);
658}
659
660void dm_sync_table(struct mapped_device *md)
661{
662 synchronize_srcu(&md->io_barrier);
663 synchronize_rcu_expedited();
664}
665
666/*
667 * A fast alternative to dm_get_live_table/dm_put_live_table.
668 * The caller must not block between these two functions.
669 */
670static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
671{
672 rcu_read_lock();
673 return rcu_dereference(md->map);
674}
1da177e4 675
83d5e5b0
MP
676static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
677{
678 rcu_read_unlock();
1da177e4
LT
679}
680
86f1152b
BM
681/*
682 * Open a table device so we can use it as a map destination.
683 */
684static int open_table_device(struct table_device *td, dev_t dev,
685 struct mapped_device *md)
686{
687 static char *_claim_ptr = "I belong to device-mapper";
688 struct block_device *bdev;
689
690 int r;
691
692 BUG_ON(td->dm_dev.bdev);
693
694 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
695 if (IS_ERR(bdev))
696 return PTR_ERR(bdev);
697
698 r = bd_link_disk_holder(bdev, dm_disk(md));
699 if (r) {
700 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
701 return r;
702 }
703
704 td->dm_dev.bdev = bdev;
705 return 0;
706}
707
708/*
709 * Close a table device that we've been using.
710 */
711static void close_table_device(struct table_device *td, struct mapped_device *md)
712{
713 if (!td->dm_dev.bdev)
714 return;
715
716 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
717 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
718 td->dm_dev.bdev = NULL;
719}
720
721static struct table_device *find_table_device(struct list_head *l, dev_t dev,
722 fmode_t mode) {
723 struct table_device *td;
724
725 list_for_each_entry(td, l, list)
726 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
727 return td;
728
729 return NULL;
730}
731
732int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
733 struct dm_dev **result) {
734 int r;
735 struct table_device *td;
736
737 mutex_lock(&md->table_devices_lock);
738 td = find_table_device(&md->table_devices, dev, mode);
739 if (!td) {
740 td = kmalloc(sizeof(*td), GFP_KERNEL);
741 if (!td) {
742 mutex_unlock(&md->table_devices_lock);
743 return -ENOMEM;
744 }
745
746 td->dm_dev.mode = mode;
747 td->dm_dev.bdev = NULL;
748
749 if ((r = open_table_device(td, dev, md))) {
750 mutex_unlock(&md->table_devices_lock);
751 kfree(td);
752 return r;
753 }
754
755 format_dev_t(td->dm_dev.name, dev);
756
757 atomic_set(&td->count, 0);
758 list_add(&td->list, &md->table_devices);
759 }
760 atomic_inc(&td->count);
761 mutex_unlock(&md->table_devices_lock);
762
763 *result = &td->dm_dev;
764 return 0;
765}
766EXPORT_SYMBOL_GPL(dm_get_table_device);
767
768void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
769{
770 struct table_device *td = container_of(d, struct table_device, dm_dev);
771
772 mutex_lock(&md->table_devices_lock);
773 if (atomic_dec_and_test(&td->count)) {
774 close_table_device(td, md);
775 list_del(&td->list);
776 kfree(td);
777 }
778 mutex_unlock(&md->table_devices_lock);
779}
780EXPORT_SYMBOL(dm_put_table_device);
781
782static void free_table_devices(struct list_head *devices)
783{
784 struct list_head *tmp, *next;
785
786 list_for_each_safe(tmp, next, devices) {
787 struct table_device *td = list_entry(tmp, struct table_device, list);
788
789 DMWARN("dm_destroy: %s still exists with %d references",
790 td->dm_dev.name, atomic_read(&td->count));
791 kfree(td);
792 }
793}
794
3ac51e74
DW
795/*
796 * Get the geometry associated with a dm device
797 */
798int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
799{
800 *geo = md->geometry;
801
802 return 0;
803}
804
805/*
806 * Set the geometry of a device.
807 */
808int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
809{
810 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
811
812 if (geo->start > sz) {
813 DMWARN("Start sector is beyond the geometry limits.");
814 return -EINVAL;
815 }
816
817 md->geometry = *geo;
818
819 return 0;
820}
821
1da177e4
LT
822/*-----------------------------------------------------------------
823 * CRUD START:
824 * A more elegant soln is in the works that uses the queue
825 * merge fn, unfortunately there are a couple of changes to
826 * the block layer that I want to make for this. So in the
827 * interests of getting something for people to use I give
828 * you this clearly demarcated crap.
829 *---------------------------------------------------------------*/
830
2e93ccc1
KU
831static int __noflush_suspending(struct mapped_device *md)
832{
833 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
834}
835
1da177e4
LT
836/*
837 * Decrements the number of outstanding ios that a bio has been
838 * cloned into, completing the original io if necc.
839 */
858119e1 840static void dec_pending(struct dm_io *io, int error)
1da177e4 841{
2e93ccc1 842 unsigned long flags;
b35f8caa
MB
843 int io_error;
844 struct bio *bio;
845 struct mapped_device *md = io->md;
2e93ccc1
KU
846
847 /* Push-back supersedes any I/O errors */
f88fb981
KU
848 if (unlikely(error)) {
849 spin_lock_irqsave(&io->endio_lock, flags);
850 if (!(io->error > 0 && __noflush_suspending(md)))
851 io->error = error;
852 spin_unlock_irqrestore(&io->endio_lock, flags);
853 }
1da177e4
LT
854
855 if (atomic_dec_and_test(&io->io_count)) {
2e93ccc1
KU
856 if (io->error == DM_ENDIO_REQUEUE) {
857 /*
858 * Target requested pushing back the I/O.
2e93ccc1 859 */
022c2611 860 spin_lock_irqsave(&md->deferred_lock, flags);
6a8736d1
TH
861 if (__noflush_suspending(md))
862 bio_list_add_head(&md->deferred, io->bio);
863 else
2e93ccc1
KU
864 /* noflush suspend was interrupted. */
865 io->error = -EIO;
022c2611 866 spin_unlock_irqrestore(&md->deferred_lock, flags);
2e93ccc1
KU
867 }
868
b35f8caa
MB
869 io_error = io->error;
870 bio = io->bio;
6a8736d1
TH
871 end_io_acct(io);
872 free_io(md, io);
873
874 if (io_error == DM_ENDIO_REQUEUE)
875 return;
2e93ccc1 876
4f024f37 877 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
af7e466a 878 /*
6a8736d1
TH
879 * Preflush done for flush with data, reissue
880 * without REQ_FLUSH.
af7e466a 881 */
6a8736d1
TH
882 bio->bi_rw &= ~REQ_FLUSH;
883 queue_io(md, bio);
af7e466a 884 } else {
b372d360 885 /* done with normal IO or empty flush */
0a82a8d1 886 trace_block_bio_complete(md->queue, bio, io_error);
b372d360 887 bio_endio(bio, io_error);
b35f8caa 888 }
1da177e4
LT
889 }
890}
891
7eee4ae2
MS
892static void disable_write_same(struct mapped_device *md)
893{
894 struct queue_limits *limits = dm_get_queue_limits(md);
895
896 /* device doesn't really support WRITE SAME, disable it */
897 limits->max_write_same_sectors = 0;
898}
899
6712ecf8 900static void clone_endio(struct bio *bio, int error)
1da177e4 901{
5164bece 902 int r = error;
bfc6d41c 903 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
b35f8caa 904 struct dm_io *io = tio->io;
9faf400f 905 struct mapped_device *md = tio->io->md;
1da177e4
LT
906 dm_endio_fn endio = tio->ti->type->end_io;
907
1da177e4
LT
908 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
909 error = -EIO;
910
911 if (endio) {
7de3ee57 912 r = endio(tio->ti, bio, error);
2e93ccc1
KU
913 if (r < 0 || r == DM_ENDIO_REQUEUE)
914 /*
915 * error and requeue request are handled
916 * in dec_pending().
917 */
1da177e4 918 error = r;
45cbcd79
KU
919 else if (r == DM_ENDIO_INCOMPLETE)
920 /* The target will handle the io */
6712ecf8 921 return;
45cbcd79
KU
922 else if (r) {
923 DMWARN("unimplemented target endio return value: %d", r);
924 BUG();
925 }
1da177e4
LT
926 }
927
7eee4ae2
MS
928 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
929 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
930 disable_write_same(md);
931
9faf400f 932 free_tio(md, tio);
b35f8caa 933 dec_pending(io, error);
1da177e4
LT
934}
935
cec47e3d
KU
936/*
937 * Partial completion handling for request-based dm
938 */
939static void end_clone_bio(struct bio *clone, int error)
940{
bfc6d41c
MP
941 struct dm_rq_clone_bio_info *info =
942 container_of(clone, struct dm_rq_clone_bio_info, clone);
cec47e3d
KU
943 struct dm_rq_target_io *tio = info->tio;
944 struct bio *bio = info->orig;
4f024f37 945 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
cec47e3d
KU
946
947 bio_put(clone);
948
949 if (tio->error)
950 /*
951 * An error has already been detected on the request.
952 * Once error occurred, just let clone->end_io() handle
953 * the remainder.
954 */
955 return;
956 else if (error) {
957 /*
958 * Don't notice the error to the upper layer yet.
959 * The error handling decision is made by the target driver,
960 * when the request is completed.
961 */
962 tio->error = error;
963 return;
964 }
965
966 /*
967 * I/O for the bio successfully completed.
968 * Notice the data completion to the upper layer.
969 */
970
971 /*
972 * bios are processed from the head of the list.
973 * So the completing bio should always be rq->bio.
974 * If it's not, something wrong is happening.
975 */
976 if (tio->orig->bio != bio)
977 DMERR("bio completion is going in the middle of the request");
978
979 /*
980 * Update the original request.
981 * Do not use blk_end_request() here, because it may complete
982 * the original request before the clone, and break the ordering.
983 */
984 blk_update_request(tio->orig, 0, nr_bytes);
985}
986
987/*
988 * Don't touch any member of the md after calling this function because
989 * the md may be freed in dm_put() at the end of this function.
990 * Or do dm_get() before calling this function and dm_put() later.
991 */
b4324fee 992static void rq_completed(struct mapped_device *md, int rw, int run_queue)
cec47e3d 993{
b4324fee 994 atomic_dec(&md->pending[rw]);
cec47e3d
KU
995
996 /* nudge anyone waiting on suspend queue */
b4324fee 997 if (!md_in_flight(md))
cec47e3d
KU
998 wake_up(&md->wait);
999
a8c32a5c
JA
1000 /*
1001 * Run this off this callpath, as drivers could invoke end_io while
1002 * inside their request_fn (and holding the queue lock). Calling
1003 * back into ->request_fn() could deadlock attempting to grab the
1004 * queue lock again.
1005 */
cec47e3d 1006 if (run_queue)
a8c32a5c 1007 blk_run_queue_async(md->queue);
cec47e3d
KU
1008
1009 /*
1010 * dm_put() must be at the end of this function. See the comment above
1011 */
1012 dm_put(md);
1013}
1014
a77e28c7
KU
1015static void free_rq_clone(struct request *clone)
1016{
1017 struct dm_rq_target_io *tio = clone->end_io_data;
1018
1019 blk_rq_unprep_clone(clone);
1020 free_rq_tio(tio);
1021}
1022
980691e5
KU
1023/*
1024 * Complete the clone and the original request.
1025 * Must be called without queue lock.
1026 */
1027static void dm_end_request(struct request *clone, int error)
1028{
1029 int rw = rq_data_dir(clone);
1030 struct dm_rq_target_io *tio = clone->end_io_data;
1031 struct mapped_device *md = tio->md;
1032 struct request *rq = tio->orig;
1033
29e4013d 1034 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
980691e5
KU
1035 rq->errors = clone->errors;
1036 rq->resid_len = clone->resid_len;
1037
1038 if (rq->sense)
1039 /*
1040 * We are using the sense buffer of the original
1041 * request.
1042 * So setting the length of the sense data is enough.
1043 */
1044 rq->sense_len = clone->sense_len;
1045 }
1046
1047 free_rq_clone(clone);
29e4013d
TH
1048 blk_end_request_all(rq, error);
1049 rq_completed(md, rw, true);
980691e5
KU
1050}
1051
cec47e3d
KU
1052static void dm_unprep_request(struct request *rq)
1053{
1054 struct request *clone = rq->special;
cec47e3d
KU
1055
1056 rq->special = NULL;
1057 rq->cmd_flags &= ~REQ_DONTPREP;
1058
a77e28c7 1059 free_rq_clone(clone);
cec47e3d
KU
1060}
1061
1062/*
1063 * Requeue the original request of a clone.
1064 */
dbf9782c 1065static void dm_requeue_unmapped_request(struct request *clone)
cec47e3d 1066{
b4324fee 1067 int rw = rq_data_dir(clone);
cec47e3d
KU
1068 struct dm_rq_target_io *tio = clone->end_io_data;
1069 struct mapped_device *md = tio->md;
1070 struct request *rq = tio->orig;
1071 struct request_queue *q = rq->q;
1072 unsigned long flags;
1073
1074 dm_unprep_request(rq);
1075
1076 spin_lock_irqsave(q->queue_lock, flags);
cec47e3d
KU
1077 blk_requeue_request(q, rq);
1078 spin_unlock_irqrestore(q->queue_lock, flags);
1079
b4324fee 1080 rq_completed(md, rw, 0);
cec47e3d 1081}
cec47e3d
KU
1082
1083static void __stop_queue(struct request_queue *q)
1084{
1085 blk_stop_queue(q);
1086}
1087
1088static void stop_queue(struct request_queue *q)
1089{
1090 unsigned long flags;
1091
1092 spin_lock_irqsave(q->queue_lock, flags);
1093 __stop_queue(q);
1094 spin_unlock_irqrestore(q->queue_lock, flags);
1095}
1096
1097static void __start_queue(struct request_queue *q)
1098{
1099 if (blk_queue_stopped(q))
1100 blk_start_queue(q);
1101}
1102
1103static void start_queue(struct request_queue *q)
1104{
1105 unsigned long flags;
1106
1107 spin_lock_irqsave(q->queue_lock, flags);
1108 __start_queue(q);
1109 spin_unlock_irqrestore(q->queue_lock, flags);
1110}
1111
11a68244 1112static void dm_done(struct request *clone, int error, bool mapped)
cec47e3d 1113{
11a68244 1114 int r = error;
cec47e3d 1115 struct dm_rq_target_io *tio = clone->end_io_data;
ba1cbad9 1116 dm_request_endio_fn rq_end_io = NULL;
cec47e3d 1117
ba1cbad9
MS
1118 if (tio->ti) {
1119 rq_end_io = tio->ti->type->rq_end_io;
1120
1121 if (mapped && rq_end_io)
1122 r = rq_end_io(tio->ti, clone, error, &tio->info);
1123 }
cec47e3d 1124
7eee4ae2
MS
1125 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1126 !clone->q->limits.max_write_same_sectors))
1127 disable_write_same(tio->md);
1128
11a68244 1129 if (r <= 0)
cec47e3d 1130 /* The target wants to complete the I/O */
11a68244
KU
1131 dm_end_request(clone, r);
1132 else if (r == DM_ENDIO_INCOMPLETE)
cec47e3d
KU
1133 /* The target will handle the I/O */
1134 return;
11a68244 1135 else if (r == DM_ENDIO_REQUEUE)
cec47e3d
KU
1136 /* The target wants to requeue the I/O */
1137 dm_requeue_unmapped_request(clone);
1138 else {
11a68244 1139 DMWARN("unimplemented target endio return value: %d", r);
cec47e3d
KU
1140 BUG();
1141 }
1142}
1143
11a68244
KU
1144/*
1145 * Request completion handler for request-based dm
1146 */
1147static void dm_softirq_done(struct request *rq)
1148{
1149 bool mapped = true;
1150 struct request *clone = rq->completion_data;
1151 struct dm_rq_target_io *tio = clone->end_io_data;
1152
1153 if (rq->cmd_flags & REQ_FAILED)
1154 mapped = false;
1155
1156 dm_done(clone, tio->error, mapped);
1157}
1158
cec47e3d
KU
1159/*
1160 * Complete the clone and the original request with the error status
1161 * through softirq context.
1162 */
1163static void dm_complete_request(struct request *clone, int error)
1164{
1165 struct dm_rq_target_io *tio = clone->end_io_data;
1166 struct request *rq = tio->orig;
1167
1168 tio->error = error;
1169 rq->completion_data = clone;
1170 blk_complete_request(rq);
1171}
1172
1173/*
1174 * Complete the not-mapped clone and the original request with the error status
1175 * through softirq context.
1176 * Target's rq_end_io() function isn't called.
1177 * This may be used when the target's map_rq() function fails.
1178 */
dbf9782c 1179static void dm_kill_unmapped_request(struct request *clone, int error)
cec47e3d
KU
1180{
1181 struct dm_rq_target_io *tio = clone->end_io_data;
1182 struct request *rq = tio->orig;
1183
1184 rq->cmd_flags |= REQ_FAILED;
1185 dm_complete_request(clone, error);
1186}
cec47e3d
KU
1187
1188/*
1189 * Called with the queue lock held
1190 */
1191static void end_clone_request(struct request *clone, int error)
1192{
1193 /*
1194 * For just cleaning up the information of the queue in which
1195 * the clone was dispatched.
1196 * The clone is *NOT* freed actually here because it is alloced from
1197 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
1198 */
1199 __blk_put_request(clone->q, clone);
1200
1201 /*
1202 * Actual request completion is done in a softirq context which doesn't
1203 * hold the queue lock. Otherwise, deadlock could occur because:
1204 * - another request may be submitted by the upper level driver
1205 * of the stacking during the completion
1206 * - the submission which requires queue lock may be done
1207 * against this queue
1208 */
1209 dm_complete_request(clone, error);
1210}
1211
56a67df7
MS
1212/*
1213 * Return maximum size of I/O possible at the supplied sector up to the current
1214 * target boundary.
1215 */
1216static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
1217{
1218 sector_t target_offset = dm_target_offset(ti, sector);
1219
1220 return ti->len - target_offset;
1221}
1222
1223static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1da177e4 1224{
56a67df7 1225 sector_t len = max_io_len_target_boundary(sector, ti);
542f9038 1226 sector_t offset, max_len;
1da177e4
LT
1227
1228 /*
542f9038 1229 * Does the target need to split even further?
1da177e4 1230 */
542f9038
MS
1231 if (ti->max_io_len) {
1232 offset = dm_target_offset(ti, sector);
1233 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1234 max_len = sector_div(offset, ti->max_io_len);
1235 else
1236 max_len = offset & (ti->max_io_len - 1);
1237 max_len = ti->max_io_len - max_len;
1238
1239 if (len > max_len)
1240 len = max_len;
1da177e4
LT
1241 }
1242
1243 return len;
1244}
1245
542f9038
MS
1246int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1247{
1248 if (len > UINT_MAX) {
1249 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1250 (unsigned long long)len, UINT_MAX);
1251 ti->error = "Maximum size of target IO is too large";
1252 return -EINVAL;
1253 }
1254
1255 ti->max_io_len = (uint32_t) len;
1256
1257 return 0;
1258}
1259EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1260
1dd40c3e
MP
1261/*
1262 * A target may call dm_accept_partial_bio only from the map routine. It is
1263 * allowed for all bio types except REQ_FLUSH.
1264 *
1265 * dm_accept_partial_bio informs the dm that the target only wants to process
1266 * additional n_sectors sectors of the bio and the rest of the data should be
1267 * sent in a next bio.
1268 *
1269 * A diagram that explains the arithmetics:
1270 * +--------------------+---------------+-------+
1271 * | 1 | 2 | 3 |
1272 * +--------------------+---------------+-------+
1273 *
1274 * <-------------- *tio->len_ptr --------------->
1275 * <------- bi_size ------->
1276 * <-- n_sectors -->
1277 *
1278 * Region 1 was already iterated over with bio_advance or similar function.
1279 * (it may be empty if the target doesn't use bio_advance)
1280 * Region 2 is the remaining bio size that the target wants to process.
1281 * (it may be empty if region 1 is non-empty, although there is no reason
1282 * to make it empty)
1283 * The target requires that region 3 is to be sent in the next bio.
1284 *
1285 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1286 * the partially processed part (the sum of regions 1+2) must be the same for all
1287 * copies of the bio.
1288 */
1289void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1290{
1291 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1292 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1293 BUG_ON(bio->bi_rw & REQ_FLUSH);
1294 BUG_ON(bi_size > *tio->len_ptr);
1295 BUG_ON(n_sectors > bi_size);
1296 *tio->len_ptr -= bi_size - n_sectors;
1297 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1298}
1299EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1300
bd2a49b8 1301static void __map_bio(struct dm_target_io *tio)
1da177e4
LT
1302{
1303 int r;
2056a782 1304 sector_t sector;
9faf400f 1305 struct mapped_device *md;
dba14160 1306 struct bio *clone = &tio->clone;
bd2a49b8 1307 struct dm_target *ti = tio->ti;
1da177e4 1308
1da177e4 1309 clone->bi_end_io = clone_endio;
1da177e4
LT
1310
1311 /*
1312 * Map the clone. If r == 0 we don't need to do
1313 * anything, the target has assumed ownership of
1314 * this io.
1315 */
1316 atomic_inc(&tio->io->io_count);
4f024f37 1317 sector = clone->bi_iter.bi_sector;
7de3ee57 1318 r = ti->type->map(ti, clone);
45cbcd79 1319 if (r == DM_MAPIO_REMAPPED) {
1da177e4 1320 /* the bio has been remapped so dispatch it */
2056a782 1321
d07335e5
MS
1322 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1323 tio->io->bio->bi_bdev->bd_dev, sector);
2056a782 1324
1da177e4 1325 generic_make_request(clone);
2e93ccc1
KU
1326 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1327 /* error the io and bail out, or requeue it if needed */
9faf400f
SB
1328 md = tio->io->md;
1329 dec_pending(tio->io, r);
9faf400f 1330 free_tio(md, tio);
45cbcd79
KU
1331 } else if (r) {
1332 DMWARN("unimplemented target map return value: %d", r);
1333 BUG();
1da177e4
LT
1334 }
1335}
1336
1337struct clone_info {
1338 struct mapped_device *md;
1339 struct dm_table *map;
1340 struct bio *bio;
1341 struct dm_io *io;
1342 sector_t sector;
e0d6609a 1343 unsigned sector_count;
1da177e4
LT
1344};
1345
e0d6609a 1346static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
bd2a49b8 1347{
4f024f37
KO
1348 bio->bi_iter.bi_sector = sector;
1349 bio->bi_iter.bi_size = to_bytes(len);
1da177e4
LT
1350}
1351
1352/*
1353 * Creates a bio that consists of range of complete bvecs.
1354 */
dba14160 1355static void clone_bio(struct dm_target_io *tio, struct bio *bio,
1c3b13e6 1356 sector_t sector, unsigned len)
1da177e4 1357{
dba14160 1358 struct bio *clone = &tio->clone;
1da177e4 1359
1c3b13e6
KO
1360 __bio_clone_fast(clone, bio);
1361
1362 if (bio_integrity(bio))
1363 bio_integrity_clone(clone, bio, GFP_NOIO);
bd2a49b8 1364
1c3b13e6
KO
1365 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1366 clone->bi_iter.bi_size = to_bytes(len);
1367
1368 if (bio_integrity(bio))
1369 bio_integrity_trim(clone, 0, len);
1da177e4
LT
1370}
1371
9015df24 1372static struct dm_target_io *alloc_tio(struct clone_info *ci,
99778273 1373 struct dm_target *ti,
55a62eef 1374 unsigned target_bio_nr)
f9ab94ce 1375{
dba14160
MP
1376 struct dm_target_io *tio;
1377 struct bio *clone;
1378
99778273 1379 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
dba14160 1380 tio = container_of(clone, struct dm_target_io, clone);
f9ab94ce
MP
1381
1382 tio->io = ci->io;
1383 tio->ti = ti;
55a62eef 1384 tio->target_bio_nr = target_bio_nr;
9015df24
AK
1385
1386 return tio;
1387}
1388
14fe594d
AK
1389static void __clone_and_map_simple_bio(struct clone_info *ci,
1390 struct dm_target *ti,
1dd40c3e 1391 unsigned target_bio_nr, unsigned *len)
9015df24 1392{
99778273 1393 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
dba14160 1394 struct bio *clone = &tio->clone;
9015df24 1395
1dd40c3e
MP
1396 tio->len_ptr = len;
1397
99778273 1398 __bio_clone_fast(clone, ci->bio);
bd2a49b8 1399 if (len)
1dd40c3e 1400 bio_setup_sector(clone, ci->sector, *len);
f9ab94ce 1401
bd2a49b8 1402 __map_bio(tio);
f9ab94ce
MP
1403}
1404
14fe594d 1405static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
1dd40c3e 1406 unsigned num_bios, unsigned *len)
06a426ce 1407{
55a62eef 1408 unsigned target_bio_nr;
06a426ce 1409
55a62eef 1410 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
14fe594d 1411 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
06a426ce
MS
1412}
1413
14fe594d 1414static int __send_empty_flush(struct clone_info *ci)
f9ab94ce 1415{
06a426ce 1416 unsigned target_nr = 0;
f9ab94ce
MP
1417 struct dm_target *ti;
1418
b372d360 1419 BUG_ON(bio_has_data(ci->bio));
f9ab94ce 1420 while ((ti = dm_table_get_target(ci->map, target_nr++)))
1dd40c3e 1421 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
f9ab94ce 1422
f9ab94ce
MP
1423 return 0;
1424}
1425
e4c93811 1426static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
1dd40c3e 1427 sector_t sector, unsigned *len)
5ae89a87 1428{
dba14160 1429 struct bio *bio = ci->bio;
5ae89a87 1430 struct dm_target_io *tio;
b0d8ed4d
AK
1431 unsigned target_bio_nr;
1432 unsigned num_target_bios = 1;
5ae89a87 1433
b0d8ed4d
AK
1434 /*
1435 * Does the target want to receive duplicate copies of the bio?
1436 */
1437 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1438 num_target_bios = ti->num_write_bios(ti, bio);
e4c93811 1439
b0d8ed4d 1440 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
99778273 1441 tio = alloc_tio(ci, ti, target_bio_nr);
1dd40c3e
MP
1442 tio->len_ptr = len;
1443 clone_bio(tio, bio, sector, *len);
b0d8ed4d
AK
1444 __map_bio(tio);
1445 }
5ae89a87
MS
1446}
1447
55a62eef 1448typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
23508a96 1449
55a62eef 1450static unsigned get_num_discard_bios(struct dm_target *ti)
23508a96 1451{
55a62eef 1452 return ti->num_discard_bios;
23508a96
MS
1453}
1454
55a62eef 1455static unsigned get_num_write_same_bios(struct dm_target *ti)
23508a96 1456{
55a62eef 1457 return ti->num_write_same_bios;
23508a96
MS
1458}
1459
1460typedef bool (*is_split_required_fn)(struct dm_target *ti);
1461
1462static bool is_split_required_for_discard(struct dm_target *ti)
1463{
55a62eef 1464 return ti->split_discard_bios;
23508a96
MS
1465}
1466
14fe594d
AK
1467static int __send_changing_extent_only(struct clone_info *ci,
1468 get_num_bios_fn get_num_bios,
1469 is_split_required_fn is_split_required)
5ae89a87
MS
1470{
1471 struct dm_target *ti;
e0d6609a 1472 unsigned len;
55a62eef 1473 unsigned num_bios;
5ae89a87 1474
a79245b3
MS
1475 do {
1476 ti = dm_table_find_target(ci->map, ci->sector);
1477 if (!dm_target_is_valid(ti))
1478 return -EIO;
5ae89a87 1479
5ae89a87 1480 /*
23508a96
MS
1481 * Even though the device advertised support for this type of
1482 * request, that does not mean every target supports it, and
936688d7 1483 * reconfiguration might also have changed that since the
a79245b3 1484 * check was performed.
5ae89a87 1485 */
55a62eef
AK
1486 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1487 if (!num_bios)
a79245b3 1488 return -EOPNOTSUPP;
5ae89a87 1489
23508a96 1490 if (is_split_required && !is_split_required(ti))
e0d6609a 1491 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
7acf0277 1492 else
e0d6609a 1493 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
06a426ce 1494
1dd40c3e 1495 __send_duplicate_bios(ci, ti, num_bios, &len);
a79245b3
MS
1496
1497 ci->sector += len;
1498 } while (ci->sector_count -= len);
5ae89a87
MS
1499
1500 return 0;
1501}
1502
14fe594d 1503static int __send_discard(struct clone_info *ci)
23508a96 1504{
14fe594d
AK
1505 return __send_changing_extent_only(ci, get_num_discard_bios,
1506 is_split_required_for_discard);
23508a96
MS
1507}
1508
14fe594d 1509static int __send_write_same(struct clone_info *ci)
23508a96 1510{
14fe594d 1511 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
23508a96
MS
1512}
1513
e4c93811
AK
1514/*
1515 * Select the correct strategy for processing a non-flush bio.
1516 */
14fe594d 1517static int __split_and_process_non_flush(struct clone_info *ci)
1da177e4 1518{
dba14160 1519 struct bio *bio = ci->bio;
512875bd 1520 struct dm_target *ti;
1c3b13e6 1521 unsigned len;
1da177e4 1522
5ae89a87 1523 if (unlikely(bio->bi_rw & REQ_DISCARD))
14fe594d 1524 return __send_discard(ci);
23508a96 1525 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
14fe594d 1526 return __send_write_same(ci);
5ae89a87 1527
512875bd
JN
1528 ti = dm_table_find_target(ci->map, ci->sector);
1529 if (!dm_target_is_valid(ti))
1530 return -EIO;
1531
1c3b13e6 1532 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
1da177e4 1533
1dd40c3e 1534 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1da177e4 1535
1c3b13e6
KO
1536 ci->sector += len;
1537 ci->sector_count -= len;
1da177e4 1538
1c3b13e6 1539 return 0;
1da177e4
LT
1540}
1541
1542/*
14fe594d 1543 * Entry point to split a bio into clones and submit them to the targets.
1da177e4 1544 */
83d5e5b0
MP
1545static void __split_and_process_bio(struct mapped_device *md,
1546 struct dm_table *map, struct bio *bio)
1da177e4
LT
1547{
1548 struct clone_info ci;
512875bd 1549 int error = 0;
1da177e4 1550
83d5e5b0 1551 if (unlikely(!map)) {
6a8736d1 1552 bio_io_error(bio);
f0b9a450
MP
1553 return;
1554 }
692d0eb9 1555
83d5e5b0 1556 ci.map = map;
1da177e4 1557 ci.md = md;
1da177e4
LT
1558 ci.io = alloc_io(md);
1559 ci.io->error = 0;
1560 atomic_set(&ci.io->io_count, 1);
1561 ci.io->bio = bio;
1562 ci.io->md = md;
f88fb981 1563 spin_lock_init(&ci.io->endio_lock);
4f024f37 1564 ci.sector = bio->bi_iter.bi_sector;
1da177e4 1565
3eaf840e 1566 start_io_acct(ci.io);
bd2a49b8 1567
b372d360
MS
1568 if (bio->bi_rw & REQ_FLUSH) {
1569 ci.bio = &ci.md->flush_bio;
1570 ci.sector_count = 0;
14fe594d 1571 error = __send_empty_flush(&ci);
b372d360
MS
1572 /* dec_pending submits any data associated with flush */
1573 } else {
6a8736d1 1574 ci.bio = bio;
d87f4c14 1575 ci.sector_count = bio_sectors(bio);
b372d360 1576 while (ci.sector_count && !error)
14fe594d 1577 error = __split_and_process_non_flush(&ci);
d87f4c14 1578 }
1da177e4
LT
1579
1580 /* drop the extra reference count */
512875bd 1581 dec_pending(ci.io, error);
1da177e4
LT
1582}
1583/*-----------------------------------------------------------------
1584 * CRUD END
1585 *---------------------------------------------------------------*/
1586
f6fccb12
MB
1587static int dm_merge_bvec(struct request_queue *q,
1588 struct bvec_merge_data *bvm,
1589 struct bio_vec *biovec)
1590{
1591 struct mapped_device *md = q->queuedata;
83d5e5b0 1592 struct dm_table *map = dm_get_live_table_fast(md);
f6fccb12
MB
1593 struct dm_target *ti;
1594 sector_t max_sectors;
5037108a 1595 int max_size = 0;
f6fccb12
MB
1596
1597 if (unlikely(!map))
5037108a 1598 goto out;
f6fccb12
MB
1599
1600 ti = dm_table_find_target(map, bvm->bi_sector);
b01cd5ac 1601 if (!dm_target_is_valid(ti))
83d5e5b0 1602 goto out;
f6fccb12
MB
1603
1604 /*
1605 * Find maximum amount of I/O that won't need splitting
1606 */
56a67df7 1607 max_sectors = min(max_io_len(bvm->bi_sector, ti),
148e51ba 1608 (sector_t) queue_max_sectors(q));
f6fccb12 1609 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
148e51ba 1610 if (unlikely(max_size < 0)) /* this shouldn't _ever_ happen */
f6fccb12
MB
1611 max_size = 0;
1612
1613 /*
1614 * merge_bvec_fn() returns number of bytes
1615 * it can accept at this offset
1616 * max is precomputed maximal io size
1617 */
1618 if (max_size && ti->type->merge)
1619 max_size = ti->type->merge(ti, bvm, biovec, max_size);
8cbeb67a
MP
1620 /*
1621 * If the target doesn't support merge method and some of the devices
148e51ba
MS
1622 * provided their merge_bvec method (we know this by looking for the
1623 * max_hw_sectors that dm_set_device_limits may set), then we can't
1624 * allow bios with multiple vector entries. So always set max_size
1625 * to 0, and the code below allows just one page.
8cbeb67a
MP
1626 */
1627 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
8cbeb67a 1628 max_size = 0;
f6fccb12 1629
5037108a 1630out:
83d5e5b0 1631 dm_put_live_table_fast(md);
f6fccb12
MB
1632 /*
1633 * Always allow an entire first page
1634 */
1635 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1636 max_size = biovec->bv_len;
1637
f6fccb12
MB
1638 return max_size;
1639}
1640
1da177e4
LT
1641/*
1642 * The request function that just remaps the bio built up by
1643 * dm_merge_bvec.
1644 */
5a7bbad2 1645static void _dm_request(struct request_queue *q, struct bio *bio)
1da177e4 1646{
12f03a49 1647 int rw = bio_data_dir(bio);
1da177e4 1648 struct mapped_device *md = q->queuedata;
83d5e5b0
MP
1649 int srcu_idx;
1650 struct dm_table *map;
1da177e4 1651
83d5e5b0 1652 map = dm_get_live_table(md, &srcu_idx);
1da177e4 1653
18c0b223 1654 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
12f03a49 1655
6a8736d1
TH
1656 /* if we're suspended, we have to queue this io for later */
1657 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
83d5e5b0 1658 dm_put_live_table(md, srcu_idx);
1da177e4 1659
6a8736d1
TH
1660 if (bio_rw(bio) != READA)
1661 queue_io(md, bio);
1662 else
54d9a1b4 1663 bio_io_error(bio);
5a7bbad2 1664 return;
1da177e4
LT
1665 }
1666
83d5e5b0
MP
1667 __split_and_process_bio(md, map, bio);
1668 dm_put_live_table(md, srcu_idx);
5a7bbad2 1669 return;
cec47e3d
KU
1670}
1671
fd2ed4d2 1672int dm_request_based(struct mapped_device *md)
cec47e3d
KU
1673{
1674 return blk_queue_stackable(md->queue);
1675}
1676
5a7bbad2 1677static void dm_request(struct request_queue *q, struct bio *bio)
cec47e3d
KU
1678{
1679 struct mapped_device *md = q->queuedata;
1680
1681 if (dm_request_based(md))
5a7bbad2
CH
1682 blk_queue_bio(q, bio);
1683 else
1684 _dm_request(q, bio);
cec47e3d
KU
1685}
1686
dbf9782c 1687static void dm_dispatch_request(struct request *rq)
cec47e3d
KU
1688{
1689 int r;
1690
1691 if (blk_queue_io_stat(rq->q))
1692 rq->cmd_flags |= REQ_IO_STAT;
1693
1694 rq->start_time = jiffies;
1695 r = blk_insert_cloned_request(rq->q, rq);
1696 if (r)
1697 dm_complete_request(rq, r);
1698}
cec47e3d 1699
cec47e3d
KU
1700static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1701 void *data)
1702{
1703 struct dm_rq_target_io *tio = data;
94818742
KO
1704 struct dm_rq_clone_bio_info *info =
1705 container_of(bio, struct dm_rq_clone_bio_info, clone);
cec47e3d
KU
1706
1707 info->orig = bio_orig;
1708 info->tio = tio;
1709 bio->bi_end_io = end_clone_bio;
cec47e3d
KU
1710
1711 return 0;
1712}
1713
1714static int setup_clone(struct request *clone, struct request *rq,
1715 struct dm_rq_target_io *tio)
1716{
d0bcb878 1717 int r;
cec47e3d 1718
db507b3f 1719 blk_rq_init(NULL, clone);
29e4013d
TH
1720 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1721 dm_rq_bio_constructor, tio);
1722 if (r)
1723 return r;
cec47e3d 1724
29e4013d
TH
1725 clone->cmd = rq->cmd;
1726 clone->cmd_len = rq->cmd_len;
1727 clone->sense = rq->sense;
cec47e3d
KU
1728 clone->end_io = end_clone_request;
1729 clone->end_io_data = tio;
1730
1731 return 0;
1732}
1733
6facdaff
KU
1734static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1735 gfp_t gfp_mask)
1736{
1737 struct request *clone;
1738 struct dm_rq_target_io *tio;
1739
1740 tio = alloc_rq_tio(md, gfp_mask);
1741 if (!tio)
1742 return NULL;
1743
1744 tio->md = md;
1745 tio->ti = NULL;
1746 tio->orig = rq;
1747 tio->error = 0;
1748 memset(&tio->info, 0, sizeof(tio->info));
1749
1750 clone = &tio->clone;
1751 if (setup_clone(clone, rq, tio)) {
1752 /* -ENOMEM */
1753 free_rq_tio(tio);
1754 return NULL;
1755 }
1756
1757 return clone;
1758}
1759
cec47e3d
KU
1760/*
1761 * Called with the queue lock held.
1762 */
1763static int dm_prep_fn(struct request_queue *q, struct request *rq)
1764{
1765 struct mapped_device *md = q->queuedata;
cec47e3d
KU
1766 struct request *clone;
1767
cec47e3d
KU
1768 if (unlikely(rq->special)) {
1769 DMWARN("Already has something in rq->special.");
1770 return BLKPREP_KILL;
1771 }
1772
6facdaff
KU
1773 clone = clone_rq(rq, md, GFP_ATOMIC);
1774 if (!clone)
cec47e3d 1775 return BLKPREP_DEFER;
cec47e3d
KU
1776
1777 rq->special = clone;
1778 rq->cmd_flags |= REQ_DONTPREP;
1779
1780 return BLKPREP_OK;
1781}
1782
9eef87da
KU
1783/*
1784 * Returns:
1785 * 0 : the request has been processed (not requeued)
1786 * !0 : the request has been requeued
1787 */
1788static int map_request(struct dm_target *ti, struct request *clone,
1789 struct mapped_device *md)
cec47e3d 1790{
9eef87da 1791 int r, requeued = 0;
cec47e3d
KU
1792 struct dm_rq_target_io *tio = clone->end_io_data;
1793
cec47e3d
KU
1794 tio->ti = ti;
1795 r = ti->type->map_rq(ti, clone, &tio->info);
1796 switch (r) {
1797 case DM_MAPIO_SUBMITTED:
1798 /* The target has taken the I/O to submit by itself later */
1799 break;
1800 case DM_MAPIO_REMAPPED:
1801 /* The target has remapped the I/O so dispatch it */
6db4ccd6
JN
1802 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1803 blk_rq_pos(tio->orig));
cec47e3d
KU
1804 dm_dispatch_request(clone);
1805 break;
1806 case DM_MAPIO_REQUEUE:
1807 /* The target wants to requeue the I/O */
1808 dm_requeue_unmapped_request(clone);
9eef87da 1809 requeued = 1;
cec47e3d
KU
1810 break;
1811 default:
1812 if (r > 0) {
1813 DMWARN("unimplemented target map return value: %d", r);
1814 BUG();
1815 }
1816
1817 /* The target wants to complete the I/O */
1818 dm_kill_unmapped_request(clone, r);
1819 break;
1820 }
9eef87da
KU
1821
1822 return requeued;
cec47e3d
KU
1823}
1824
ba1cbad9
MS
1825static struct request *dm_start_request(struct mapped_device *md, struct request *orig)
1826{
1827 struct request *clone;
1828
1829 blk_start_request(orig);
1830 clone = orig->special;
1831 atomic_inc(&md->pending[rq_data_dir(clone)]);
1832
1833 /*
1834 * Hold the md reference here for the in-flight I/O.
1835 * We can't rely on the reference count by device opener,
1836 * because the device may be closed during the request completion
1837 * when all bios are completed.
1838 * See the comment in rq_completed() too.
1839 */
1840 dm_get(md);
1841
1842 return clone;
1843}
1844
cec47e3d
KU
1845/*
1846 * q->request_fn for request-based dm.
1847 * Called with the queue lock held.
1848 */
1849static void dm_request_fn(struct request_queue *q)
1850{
1851 struct mapped_device *md = q->queuedata;
83d5e5b0
MP
1852 int srcu_idx;
1853 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
cec47e3d 1854 struct dm_target *ti;
b4324fee 1855 struct request *rq, *clone;
29e4013d 1856 sector_t pos;
cec47e3d
KU
1857
1858 /*
b4324fee
KU
1859 * For suspend, check blk_queue_stopped() and increment
1860 * ->pending within a single queue_lock not to increment the
1861 * number of in-flight I/Os after the queue is stopped in
1862 * dm_suspend().
cec47e3d 1863 */
7eaceacc 1864 while (!blk_queue_stopped(q)) {
cec47e3d
KU
1865 rq = blk_peek_request(q);
1866 if (!rq)
7eaceacc 1867 goto delay_and_out;
cec47e3d 1868
29e4013d
TH
1869 /* always use block 0 to find the target for flushes for now */
1870 pos = 0;
1871 if (!(rq->cmd_flags & REQ_FLUSH))
1872 pos = blk_rq_pos(rq);
1873
1874 ti = dm_table_find_target(map, pos);
ba1cbad9
MS
1875 if (!dm_target_is_valid(ti)) {
1876 /*
1877 * Must perform setup, that dm_done() requires,
1878 * before calling dm_kill_unmapped_request
1879 */
1880 DMERR_LIMIT("request attempted access beyond the end of device");
1881 clone = dm_start_request(md, rq);
1882 dm_kill_unmapped_request(clone, -EIO);
1883 continue;
1884 }
d0bcb878 1885
cec47e3d 1886 if (ti->type->busy && ti->type->busy(ti))
7eaceacc 1887 goto delay_and_out;
cec47e3d 1888
ba1cbad9 1889 clone = dm_start_request(md, rq);
b4324fee 1890
cec47e3d 1891 spin_unlock(q->queue_lock);
9eef87da
KU
1892 if (map_request(ti, clone, md))
1893 goto requeued;
1894
052189a2
KU
1895 BUG_ON(!irqs_disabled());
1896 spin_lock(q->queue_lock);
cec47e3d
KU
1897 }
1898
1899 goto out;
1900
9eef87da 1901requeued:
052189a2
KU
1902 BUG_ON(!irqs_disabled());
1903 spin_lock(q->queue_lock);
9eef87da 1904
7eaceacc
JA
1905delay_and_out:
1906 blk_delay_queue(q, HZ / 10);
cec47e3d 1907out:
83d5e5b0 1908 dm_put_live_table(md, srcu_idx);
cec47e3d
KU
1909}
1910
1911int dm_underlying_device_busy(struct request_queue *q)
1912{
1913 return blk_lld_busy(q);
1914}
1915EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1916
1917static int dm_lld_busy(struct request_queue *q)
1918{
1919 int r;
1920 struct mapped_device *md = q->queuedata;
83d5e5b0 1921 struct dm_table *map = dm_get_live_table_fast(md);
cec47e3d
KU
1922
1923 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1924 r = 1;
1925 else
1926 r = dm_table_any_busy_target(map);
1927
83d5e5b0 1928 dm_put_live_table_fast(md);
cec47e3d
KU
1929
1930 return r;
1931}
1932
1da177e4
LT
1933static int dm_any_congested(void *congested_data, int bdi_bits)
1934{
8a57dfc6
CS
1935 int r = bdi_bits;
1936 struct mapped_device *md = congested_data;
1937 struct dm_table *map;
1da177e4 1938
1eb787ec 1939 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
83d5e5b0 1940 map = dm_get_live_table_fast(md);
8a57dfc6 1941 if (map) {
cec47e3d
KU
1942 /*
1943 * Request-based dm cares about only own queue for
1944 * the query about congestion status of request_queue
1945 */
1946 if (dm_request_based(md))
1947 r = md->queue->backing_dev_info.state &
1948 bdi_bits;
1949 else
1950 r = dm_table_any_congested(map, bdi_bits);
8a57dfc6 1951 }
83d5e5b0 1952 dm_put_live_table_fast(md);
8a57dfc6
CS
1953 }
1954
1da177e4
LT
1955 return r;
1956}
1957
1958/*-----------------------------------------------------------------
1959 * An IDR is used to keep track of allocated minor numbers.
1960 *---------------------------------------------------------------*/
2b06cfff 1961static void free_minor(int minor)
1da177e4 1962{
f32c10b0 1963 spin_lock(&_minor_lock);
1da177e4 1964 idr_remove(&_minor_idr, minor);
f32c10b0 1965 spin_unlock(&_minor_lock);
1da177e4
LT
1966}
1967
1968/*
1969 * See if the device with a specific minor # is free.
1970 */
cf13ab8e 1971static int specific_minor(int minor)
1da177e4 1972{
c9d76be6 1973 int r;
1da177e4
LT
1974
1975 if (minor >= (1 << MINORBITS))
1976 return -EINVAL;
1977
c9d76be6 1978 idr_preload(GFP_KERNEL);
f32c10b0 1979 spin_lock(&_minor_lock);
1da177e4 1980
c9d76be6 1981 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
1da177e4 1982
f32c10b0 1983 spin_unlock(&_minor_lock);
c9d76be6
TH
1984 idr_preload_end();
1985 if (r < 0)
1986 return r == -ENOSPC ? -EBUSY : r;
1987 return 0;
1da177e4
LT
1988}
1989
cf13ab8e 1990static int next_free_minor(int *minor)
1da177e4 1991{
c9d76be6 1992 int r;
62f75c2f 1993
c9d76be6 1994 idr_preload(GFP_KERNEL);
f32c10b0 1995 spin_lock(&_minor_lock);
1da177e4 1996
c9d76be6 1997 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
1da177e4 1998
f32c10b0 1999 spin_unlock(&_minor_lock);
c9d76be6
TH
2000 idr_preload_end();
2001 if (r < 0)
2002 return r;
2003 *minor = r;
2004 return 0;
1da177e4
LT
2005}
2006
83d5cde4 2007static const struct block_device_operations dm_blk_dops;
1da177e4 2008
53d5914f
MP
2009static void dm_wq_work(struct work_struct *work);
2010
4a0b4ddf
MS
2011static void dm_init_md_queue(struct mapped_device *md)
2012{
2013 /*
2014 * Request-based dm devices cannot be stacked on top of bio-based dm
2015 * devices. The type of this dm device has not been decided yet.
2016 * The type is decided at the first table loading time.
2017 * To prevent problematic device stacking, clear the queue flag
2018 * for request stacking support until then.
2019 *
2020 * This queue is new, so no concurrency on the queue_flags.
2021 */
2022 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
2023
2024 md->queue->queuedata = md;
2025 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2026 md->queue->backing_dev_info.congested_data = md;
2027 blk_queue_make_request(md->queue, dm_request);
2028 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
4a0b4ddf
MS
2029 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
2030}
2031
1da177e4
LT
2032/*
2033 * Allocate and initialise a blank device with a given minor.
2034 */
2b06cfff 2035static struct mapped_device *alloc_dev(int minor)
1da177e4
LT
2036{
2037 int r;
cf13ab8e 2038 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
ba61fdd1 2039 void *old_md;
1da177e4
LT
2040
2041 if (!md) {
2042 DMWARN("unable to allocate device, out of memory.");
2043 return NULL;
2044 }
2045
10da4f79 2046 if (!try_module_get(THIS_MODULE))
6ed7ade8 2047 goto bad_module_get;
10da4f79 2048
1da177e4 2049 /* get a minor number for the dev */
2b06cfff 2050 if (minor == DM_ANY_MINOR)
cf13ab8e 2051 r = next_free_minor(&minor);
2b06cfff 2052 else
cf13ab8e 2053 r = specific_minor(minor);
1da177e4 2054 if (r < 0)
6ed7ade8 2055 goto bad_minor;
1da177e4 2056
83d5e5b0
MP
2057 r = init_srcu_struct(&md->io_barrier);
2058 if (r < 0)
2059 goto bad_io_barrier;
2060
a5664dad 2061 md->type = DM_TYPE_NONE;
e61290a4 2062 mutex_init(&md->suspend_lock);
a5664dad 2063 mutex_init(&md->type_lock);
86f1152b 2064 mutex_init(&md->table_devices_lock);
022c2611 2065 spin_lock_init(&md->deferred_lock);
1da177e4 2066 atomic_set(&md->holders, 1);
5c6bd75d 2067 atomic_set(&md->open_count, 0);
1da177e4 2068 atomic_set(&md->event_nr, 0);
7a8c3d3b
MA
2069 atomic_set(&md->uevent_seq, 0);
2070 INIT_LIST_HEAD(&md->uevent_list);
86f1152b 2071 INIT_LIST_HEAD(&md->table_devices);
7a8c3d3b 2072 spin_lock_init(&md->uevent_lock);
1da177e4 2073
4a0b4ddf 2074 md->queue = blk_alloc_queue(GFP_KERNEL);
1da177e4 2075 if (!md->queue)
6ed7ade8 2076 goto bad_queue;
1da177e4 2077
4a0b4ddf 2078 dm_init_md_queue(md);
9faf400f 2079
1da177e4
LT
2080 md->disk = alloc_disk(1);
2081 if (!md->disk)
6ed7ade8 2082 goto bad_disk;
1da177e4 2083
316d315b
NK
2084 atomic_set(&md->pending[0], 0);
2085 atomic_set(&md->pending[1], 0);
f0b04115 2086 init_waitqueue_head(&md->wait);
53d5914f 2087 INIT_WORK(&md->work, dm_wq_work);
f0b04115 2088 init_waitqueue_head(&md->eventq);
2995fa78 2089 init_completion(&md->kobj_holder.completion);
f0b04115 2090
1da177e4
LT
2091 md->disk->major = _major;
2092 md->disk->first_minor = minor;
2093 md->disk->fops = &dm_blk_dops;
2094 md->disk->queue = md->queue;
2095 md->disk->private_data = md;
2096 sprintf(md->disk->disk_name, "dm-%d", minor);
2097 add_disk(md->disk);
7e51f257 2098 format_dev_t(md->name, MKDEV(_major, minor));
1da177e4 2099
670368a8 2100 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
304f3f6a
MB
2101 if (!md->wq)
2102 goto bad_thread;
2103
32a926da
MP
2104 md->bdev = bdget_disk(md->disk, 0);
2105 if (!md->bdev)
2106 goto bad_bdev;
2107
6a8736d1
TH
2108 bio_init(&md->flush_bio);
2109 md->flush_bio.bi_bdev = md->bdev;
2110 md->flush_bio.bi_rw = WRITE_FLUSH;
2111
fd2ed4d2
MP
2112 dm_stats_init(&md->stats);
2113
ba61fdd1 2114 /* Populate the mapping, nobody knows we exist yet */
f32c10b0 2115 spin_lock(&_minor_lock);
ba61fdd1 2116 old_md = idr_replace(&_minor_idr, md, minor);
f32c10b0 2117 spin_unlock(&_minor_lock);
ba61fdd1
JM
2118
2119 BUG_ON(old_md != MINOR_ALLOCED);
2120
1da177e4
LT
2121 return md;
2122
32a926da
MP
2123bad_bdev:
2124 destroy_workqueue(md->wq);
304f3f6a 2125bad_thread:
03022c54 2126 del_gendisk(md->disk);
304f3f6a 2127 put_disk(md->disk);
6ed7ade8 2128bad_disk:
1312f40e 2129 blk_cleanup_queue(md->queue);
6ed7ade8 2130bad_queue:
83d5e5b0
MP
2131 cleanup_srcu_struct(&md->io_barrier);
2132bad_io_barrier:
1da177e4 2133 free_minor(minor);
6ed7ade8 2134bad_minor:
10da4f79 2135 module_put(THIS_MODULE);
6ed7ade8 2136bad_module_get:
1da177e4
LT
2137 kfree(md);
2138 return NULL;
2139}
2140
ae9da83f
JN
2141static void unlock_fs(struct mapped_device *md);
2142
1da177e4
LT
2143static void free_dev(struct mapped_device *md)
2144{
f331c029 2145 int minor = MINOR(disk_devt(md->disk));
63d94e48 2146
32a926da
MP
2147 unlock_fs(md);
2148 bdput(md->bdev);
304f3f6a 2149 destroy_workqueue(md->wq);
e6ee8c0b
KU
2150 if (md->io_pool)
2151 mempool_destroy(md->io_pool);
2152 if (md->bs)
2153 bioset_free(md->bs);
9c47008d 2154 blk_integrity_unregister(md->disk);
1da177e4 2155 del_gendisk(md->disk);
83d5e5b0 2156 cleanup_srcu_struct(&md->io_barrier);
86f1152b 2157 free_table_devices(&md->table_devices);
63d94e48 2158 free_minor(minor);
fba9f90e
JM
2159
2160 spin_lock(&_minor_lock);
2161 md->disk->private_data = NULL;
2162 spin_unlock(&_minor_lock);
2163
1da177e4 2164 put_disk(md->disk);
1312f40e 2165 blk_cleanup_queue(md->queue);
fd2ed4d2 2166 dm_stats_cleanup(&md->stats);
10da4f79 2167 module_put(THIS_MODULE);
1da177e4
LT
2168 kfree(md);
2169}
2170
e6ee8c0b
KU
2171static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2172{
c0820cf5 2173 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
e6ee8c0b 2174
5f015204 2175 if (md->io_pool && md->bs) {
16245bdc
JN
2176 /* The md already has necessary mempools. */
2177 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2178 /*
2179 * Reload bioset because front_pad may have changed
2180 * because a different table was loaded.
2181 */
2182 bioset_free(md->bs);
2183 md->bs = p->bs;
2184 p->bs = NULL;
2185 } else if (dm_table_get_type(t) == DM_TYPE_REQUEST_BASED) {
16245bdc
JN
2186 /*
2187 * There's no need to reload with request-based dm
2188 * because the size of front_pad doesn't change.
2189 * Note for future: If you are to reload bioset,
2190 * prep-ed requests in the queue may refer
2191 * to bio from the old bioset, so you must walk
2192 * through the queue to unprep.
2193 */
2194 }
e6ee8c0b 2195 goto out;
c0820cf5 2196 }
e6ee8c0b 2197
5f015204 2198 BUG_ON(!p || md->io_pool || md->bs);
e6ee8c0b
KU
2199
2200 md->io_pool = p->io_pool;
2201 p->io_pool = NULL;
e6ee8c0b
KU
2202 md->bs = p->bs;
2203 p->bs = NULL;
2204
2205out:
2206 /* mempool bind completed, now no need any mempools in the table */
2207 dm_table_free_md_mempools(t);
2208}
2209
1da177e4
LT
2210/*
2211 * Bind a table to the device.
2212 */
2213static void event_callback(void *context)
2214{
7a8c3d3b
MA
2215 unsigned long flags;
2216 LIST_HEAD(uevents);
1da177e4
LT
2217 struct mapped_device *md = (struct mapped_device *) context;
2218
7a8c3d3b
MA
2219 spin_lock_irqsave(&md->uevent_lock, flags);
2220 list_splice_init(&md->uevent_list, &uevents);
2221 spin_unlock_irqrestore(&md->uevent_lock, flags);
2222
ed9e1982 2223 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
7a8c3d3b 2224
1da177e4
LT
2225 atomic_inc(&md->event_nr);
2226 wake_up(&md->eventq);
2227}
2228
c217649b
MS
2229/*
2230 * Protected by md->suspend_lock obtained by dm_swap_table().
2231 */
4e90188b 2232static void __set_size(struct mapped_device *md, sector_t size)
1da177e4 2233{
4e90188b 2234 set_capacity(md->disk, size);
1da177e4 2235
db8fef4f 2236 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1da177e4
LT
2237}
2238
d5b9dd04
MP
2239/*
2240 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2241 *
2242 * If this function returns 0, then the device is either a non-dm
2243 * device without a merge_bvec_fn, or it is a dm device that is
2244 * able to split any bios it receives that are too big.
2245 */
2246int dm_queue_merge_is_compulsory(struct request_queue *q)
2247{
2248 struct mapped_device *dev_md;
2249
2250 if (!q->merge_bvec_fn)
2251 return 0;
2252
2253 if (q->make_request_fn == dm_request) {
2254 dev_md = q->queuedata;
2255 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2256 return 0;
2257 }
2258
2259 return 1;
2260}
2261
2262static int dm_device_merge_is_compulsory(struct dm_target *ti,
2263 struct dm_dev *dev, sector_t start,
2264 sector_t len, void *data)
2265{
2266 struct block_device *bdev = dev->bdev;
2267 struct request_queue *q = bdev_get_queue(bdev);
2268
2269 return dm_queue_merge_is_compulsory(q);
2270}
2271
2272/*
2273 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2274 * on the properties of the underlying devices.
2275 */
2276static int dm_table_merge_is_optional(struct dm_table *table)
2277{
2278 unsigned i = 0;
2279 struct dm_target *ti;
2280
2281 while (i < dm_table_get_num_targets(table)) {
2282 ti = dm_table_get_target(table, i++);
2283
2284 if (ti->type->iterate_devices &&
2285 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2286 return 0;
2287 }
2288
2289 return 1;
2290}
2291
042d2a9b
AK
2292/*
2293 * Returns old map, which caller must destroy.
2294 */
2295static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2296 struct queue_limits *limits)
1da177e4 2297{
042d2a9b 2298 struct dm_table *old_map;
165125e1 2299 struct request_queue *q = md->queue;
1da177e4 2300 sector_t size;
d5b9dd04 2301 int merge_is_optional;
1da177e4
LT
2302
2303 size = dm_table_get_size(t);
3ac51e74
DW
2304
2305 /*
2306 * Wipe any geometry if the size of the table changed.
2307 */
fd2ed4d2 2308 if (size != dm_get_size(md))
3ac51e74
DW
2309 memset(&md->geometry, 0, sizeof(md->geometry));
2310
32a926da 2311 __set_size(md, size);
d5816876 2312
2ca3310e
AK
2313 dm_table_event_callback(t, event_callback, md);
2314
e6ee8c0b
KU
2315 /*
2316 * The queue hasn't been stopped yet, if the old table type wasn't
2317 * for request-based during suspension. So stop it to prevent
2318 * I/O mapping before resume.
2319 * This must be done before setting the queue restrictions,
2320 * because request-based dm may be run just after the setting.
2321 */
2322 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2323 stop_queue(q);
2324
2325 __bind_mempools(md, t);
2326
d5b9dd04
MP
2327 merge_is_optional = dm_table_merge_is_optional(t);
2328
a12f5d48 2329 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
83d5e5b0 2330 rcu_assign_pointer(md->map, t);
36a0456f
AK
2331 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2332
754c5fc7 2333 dm_table_set_restrictions(t, q, limits);
d5b9dd04
MP
2334 if (merge_is_optional)
2335 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2336 else
2337 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
41abc4e1
HR
2338 if (old_map)
2339 dm_sync_table(md);
1da177e4 2340
042d2a9b 2341 return old_map;
1da177e4
LT
2342}
2343
a7940155
AK
2344/*
2345 * Returns unbound table for the caller to free.
2346 */
2347static struct dm_table *__unbind(struct mapped_device *md)
1da177e4 2348{
a12f5d48 2349 struct dm_table *map = rcu_dereference_protected(md->map, 1);
1da177e4
LT
2350
2351 if (!map)
a7940155 2352 return NULL;
1da177e4
LT
2353
2354 dm_table_event_callback(map, NULL, NULL);
9cdb8520 2355 RCU_INIT_POINTER(md->map, NULL);
83d5e5b0 2356 dm_sync_table(md);
a7940155
AK
2357
2358 return map;
1da177e4
LT
2359}
2360
2361/*
2362 * Constructor for a new device.
2363 */
2b06cfff 2364int dm_create(int minor, struct mapped_device **result)
1da177e4
LT
2365{
2366 struct mapped_device *md;
2367
2b06cfff 2368 md = alloc_dev(minor);
1da177e4
LT
2369 if (!md)
2370 return -ENXIO;
2371
784aae73
MB
2372 dm_sysfs_init(md);
2373
1da177e4
LT
2374 *result = md;
2375 return 0;
2376}
2377
a5664dad
MS
2378/*
2379 * Functions to manage md->type.
2380 * All are required to hold md->type_lock.
2381 */
2382void dm_lock_md_type(struct mapped_device *md)
2383{
2384 mutex_lock(&md->type_lock);
2385}
2386
2387void dm_unlock_md_type(struct mapped_device *md)
2388{
2389 mutex_unlock(&md->type_lock);
2390}
2391
2392void dm_set_md_type(struct mapped_device *md, unsigned type)
2393{
00c4fc3b 2394 BUG_ON(!mutex_is_locked(&md->type_lock));
a5664dad
MS
2395 md->type = type;
2396}
2397
2398unsigned dm_get_md_type(struct mapped_device *md)
2399{
00c4fc3b 2400 BUG_ON(!mutex_is_locked(&md->type_lock));
a5664dad
MS
2401 return md->type;
2402}
2403
36a0456f
AK
2404struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2405{
2406 return md->immutable_target_type;
2407}
2408
f84cb8a4
MS
2409/*
2410 * The queue_limits are only valid as long as you have a reference
2411 * count on 'md'.
2412 */
2413struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2414{
2415 BUG_ON(!atomic_read(&md->holders));
2416 return &md->queue->limits;
2417}
2418EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2419
4a0b4ddf
MS
2420/*
2421 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2422 */
2423static int dm_init_request_based_queue(struct mapped_device *md)
2424{
2425 struct request_queue *q = NULL;
2426
2427 if (md->queue->elevator)
2428 return 1;
2429
2430 /* Fully initialize the queue */
2431 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2432 if (!q)
2433 return 0;
2434
2435 md->queue = q;
4a0b4ddf
MS
2436 dm_init_md_queue(md);
2437 blk_queue_softirq_done(md->queue, dm_softirq_done);
2438 blk_queue_prep_rq(md->queue, dm_prep_fn);
2439 blk_queue_lld_busy(md->queue, dm_lld_busy);
4a0b4ddf
MS
2440
2441 elv_register_queue(md->queue);
2442
2443 return 1;
2444}
2445
2446/*
2447 * Setup the DM device's queue based on md's type
2448 */
2449int dm_setup_md_queue(struct mapped_device *md)
2450{
2451 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2452 !dm_init_request_based_queue(md)) {
2453 DMWARN("Cannot initialize queue for request-based mapped device");
2454 return -EINVAL;
2455 }
2456
2457 return 0;
2458}
2459
637842cf 2460static struct mapped_device *dm_find_md(dev_t dev)
1da177e4
LT
2461{
2462 struct mapped_device *md;
1da177e4
LT
2463 unsigned minor = MINOR(dev);
2464
2465 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2466 return NULL;
2467
f32c10b0 2468 spin_lock(&_minor_lock);
1da177e4
LT
2469
2470 md = idr_find(&_minor_idr, minor);
fba9f90e 2471 if (md && (md == MINOR_ALLOCED ||
f331c029 2472 (MINOR(disk_devt(dm_disk(md))) != minor) ||
abdc568b 2473 dm_deleting_md(md) ||
17b2f66f 2474 test_bit(DMF_FREEING, &md->flags))) {
637842cf 2475 md = NULL;
fba9f90e
JM
2476 goto out;
2477 }
1da177e4 2478
fba9f90e 2479out:
f32c10b0 2480 spin_unlock(&_minor_lock);
1da177e4 2481
637842cf
DT
2482 return md;
2483}
2484
d229a958
DT
2485struct mapped_device *dm_get_md(dev_t dev)
2486{
2487 struct mapped_device *md = dm_find_md(dev);
2488
2489 if (md)
2490 dm_get(md);
2491
2492 return md;
2493}
3cf2e4ba 2494EXPORT_SYMBOL_GPL(dm_get_md);
d229a958 2495
9ade92a9 2496void *dm_get_mdptr(struct mapped_device *md)
637842cf 2497{
9ade92a9 2498 return md->interface_ptr;
1da177e4
LT
2499}
2500
2501void dm_set_mdptr(struct mapped_device *md, void *ptr)
2502{
2503 md->interface_ptr = ptr;
2504}
2505
2506void dm_get(struct mapped_device *md)
2507{
2508 atomic_inc(&md->holders);
3f77316d 2509 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1da177e4
LT
2510}
2511
72d94861
AK
2512const char *dm_device_name(struct mapped_device *md)
2513{
2514 return md->name;
2515}
2516EXPORT_SYMBOL_GPL(dm_device_name);
2517
3f77316d 2518static void __dm_destroy(struct mapped_device *md, bool wait)
1da177e4 2519{
1134e5ae 2520 struct dm_table *map;
83d5e5b0 2521 int srcu_idx;
1da177e4 2522
3f77316d 2523 might_sleep();
fba9f90e 2524
3f77316d 2525 spin_lock(&_minor_lock);
83d5e5b0 2526 map = dm_get_live_table(md, &srcu_idx);
3f77316d
KU
2527 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2528 set_bit(DMF_FREEING, &md->flags);
2529 spin_unlock(&_minor_lock);
2530
2531 if (!dm_suspended_md(md)) {
2532 dm_table_presuspend_targets(map);
2533 dm_table_postsuspend_targets(map);
1da177e4 2534 }
3f77316d 2535
83d5e5b0
MP
2536 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2537 dm_put_live_table(md, srcu_idx);
2538
3f77316d
KU
2539 /*
2540 * Rare, but there may be I/O requests still going to complete,
2541 * for example. Wait for all references to disappear.
2542 * No one should increment the reference count of the mapped_device,
2543 * after the mapped_device state becomes DMF_FREEING.
2544 */
2545 if (wait)
2546 while (atomic_read(&md->holders))
2547 msleep(1);
2548 else if (atomic_read(&md->holders))
2549 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2550 dm_device_name(md), atomic_read(&md->holders));
2551
2552 dm_sysfs_exit(md);
3f77316d
KU
2553 dm_table_destroy(__unbind(md));
2554 free_dev(md);
2555}
2556
2557void dm_destroy(struct mapped_device *md)
2558{
2559 __dm_destroy(md, true);
2560}
2561
2562void dm_destroy_immediate(struct mapped_device *md)
2563{
2564 __dm_destroy(md, false);
2565}
2566
2567void dm_put(struct mapped_device *md)
2568{
2569 atomic_dec(&md->holders);
1da177e4 2570}
79eb885c 2571EXPORT_SYMBOL_GPL(dm_put);
1da177e4 2572
401600df 2573static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
46125c1c
MB
2574{
2575 int r = 0;
b44ebeb0
MP
2576 DECLARE_WAITQUEUE(wait, current);
2577
b44ebeb0 2578 add_wait_queue(&md->wait, &wait);
46125c1c
MB
2579
2580 while (1) {
401600df 2581 set_current_state(interruptible);
46125c1c 2582
b4324fee 2583 if (!md_in_flight(md))
46125c1c
MB
2584 break;
2585
401600df
MP
2586 if (interruptible == TASK_INTERRUPTIBLE &&
2587 signal_pending(current)) {
46125c1c
MB
2588 r = -EINTR;
2589 break;
2590 }
2591
2592 io_schedule();
2593 }
2594 set_current_state(TASK_RUNNING);
2595
b44ebeb0
MP
2596 remove_wait_queue(&md->wait, &wait);
2597
46125c1c
MB
2598 return r;
2599}
2600
1da177e4
LT
2601/*
2602 * Process the deferred bios
2603 */
ef208587 2604static void dm_wq_work(struct work_struct *work)
1da177e4 2605{
ef208587
MP
2606 struct mapped_device *md = container_of(work, struct mapped_device,
2607 work);
6d6f10df 2608 struct bio *c;
83d5e5b0
MP
2609 int srcu_idx;
2610 struct dm_table *map;
1da177e4 2611
83d5e5b0 2612 map = dm_get_live_table(md, &srcu_idx);
ef208587 2613
3b00b203 2614 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
df12ee99
AK
2615 spin_lock_irq(&md->deferred_lock);
2616 c = bio_list_pop(&md->deferred);
2617 spin_unlock_irq(&md->deferred_lock);
2618
6a8736d1 2619 if (!c)
df12ee99 2620 break;
022c2611 2621
e6ee8c0b
KU
2622 if (dm_request_based(md))
2623 generic_make_request(c);
6a8736d1 2624 else
83d5e5b0 2625 __split_and_process_bio(md, map, c);
022c2611 2626 }
73d410c0 2627
83d5e5b0 2628 dm_put_live_table(md, srcu_idx);
1da177e4
LT
2629}
2630
9a1fb464 2631static void dm_queue_flush(struct mapped_device *md)
304f3f6a 2632{
3b00b203 2633 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
4e857c58 2634 smp_mb__after_atomic();
53d5914f 2635 queue_work(md->wq, &md->work);
304f3f6a
MB
2636}
2637
1da177e4 2638/*
042d2a9b 2639 * Swap in a new table, returning the old one for the caller to destroy.
1da177e4 2640 */
042d2a9b 2641struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
1da177e4 2642{
87eb5b21 2643 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
754c5fc7 2644 struct queue_limits limits;
042d2a9b 2645 int r;
1da177e4 2646
e61290a4 2647 mutex_lock(&md->suspend_lock);
1da177e4
LT
2648
2649 /* device must be suspended */
4f186f8b 2650 if (!dm_suspended_md(md))
93c534ae 2651 goto out;
1da177e4 2652
3ae70656
MS
2653 /*
2654 * If the new table has no data devices, retain the existing limits.
2655 * This helps multipath with queue_if_no_path if all paths disappear,
2656 * then new I/O is queued based on these limits, and then some paths
2657 * reappear.
2658 */
2659 if (dm_table_has_no_data_devices(table)) {
83d5e5b0 2660 live_map = dm_get_live_table_fast(md);
3ae70656
MS
2661 if (live_map)
2662 limits = md->queue->limits;
83d5e5b0 2663 dm_put_live_table_fast(md);
3ae70656
MS
2664 }
2665
87eb5b21
MC
2666 if (!live_map) {
2667 r = dm_calculate_queue_limits(table, &limits);
2668 if (r) {
2669 map = ERR_PTR(r);
2670 goto out;
2671 }
042d2a9b 2672 }
754c5fc7 2673
042d2a9b 2674 map = __bind(md, table, &limits);
1da177e4 2675
93c534ae 2676out:
e61290a4 2677 mutex_unlock(&md->suspend_lock);
042d2a9b 2678 return map;
1da177e4
LT
2679}
2680
2681/*
2682 * Functions to lock and unlock any filesystem running on the
2683 * device.
2684 */
2ca3310e 2685static int lock_fs(struct mapped_device *md)
1da177e4 2686{
e39e2e95 2687 int r;
1da177e4
LT
2688
2689 WARN_ON(md->frozen_sb);
dfbe03f6 2690
db8fef4f 2691 md->frozen_sb = freeze_bdev(md->bdev);
dfbe03f6 2692 if (IS_ERR(md->frozen_sb)) {
cf222b37 2693 r = PTR_ERR(md->frozen_sb);
e39e2e95
AK
2694 md->frozen_sb = NULL;
2695 return r;
dfbe03f6
AK
2696 }
2697
aa8d7c2f
AK
2698 set_bit(DMF_FROZEN, &md->flags);
2699
1da177e4
LT
2700 return 0;
2701}
2702
2ca3310e 2703static void unlock_fs(struct mapped_device *md)
1da177e4 2704{
aa8d7c2f
AK
2705 if (!test_bit(DMF_FROZEN, &md->flags))
2706 return;
2707
db8fef4f 2708 thaw_bdev(md->bdev, md->frozen_sb);
1da177e4 2709 md->frozen_sb = NULL;
aa8d7c2f 2710 clear_bit(DMF_FROZEN, &md->flags);
1da177e4
LT
2711}
2712
2713/*
ffcc3936
MS
2714 * If __dm_suspend returns 0, the device is completely quiescent
2715 * now. There is no request-processing activity. All new requests
2716 * are being added to md->deferred list.
cec47e3d 2717 *
ffcc3936 2718 * Caller must hold md->suspend_lock
cec47e3d 2719 */
ffcc3936
MS
2720static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
2721 unsigned suspend_flags, int interruptible)
1da177e4 2722{
ffcc3936
MS
2723 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2724 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2725 int r;
1da177e4 2726
2e93ccc1
KU
2727 /*
2728 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2729 * This flag is cleared before dm_suspend returns.
2730 */
2731 if (noflush)
2732 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2733
d67ee213
MS
2734 /*
2735 * This gets reverted if there's an error later and the targets
2736 * provide the .presuspend_undo hook.
2737 */
cf222b37
AK
2738 dm_table_presuspend_targets(map);
2739
32a926da 2740 /*
9f518b27
KU
2741 * Flush I/O to the device.
2742 * Any I/O submitted after lock_fs() may not be flushed.
2743 * noflush takes precedence over do_lockfs.
2744 * (lock_fs() flushes I/Os and waits for them to complete.)
32a926da
MP
2745 */
2746 if (!noflush && do_lockfs) {
2747 r = lock_fs(md);
d67ee213
MS
2748 if (r) {
2749 dm_table_presuspend_undo_targets(map);
ffcc3936 2750 return r;
d67ee213 2751 }
aa8d7c2f 2752 }
1da177e4
LT
2753
2754 /*
3b00b203
MP
2755 * Here we must make sure that no processes are submitting requests
2756 * to target drivers i.e. no one may be executing
2757 * __split_and_process_bio. This is called from dm_request and
2758 * dm_wq_work.
2759 *
2760 * To get all processes out of __split_and_process_bio in dm_request,
2761 * we take the write lock. To prevent any process from reentering
6a8736d1
TH
2762 * __split_and_process_bio from dm_request and quiesce the thread
2763 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2764 * flush_workqueue(md->wq).
1da177e4 2765 */
1eb787ec 2766 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
41abc4e1
HR
2767 if (map)
2768 synchronize_srcu(&md->io_barrier);
1da177e4 2769
d0bcb878 2770 /*
29e4013d
TH
2771 * Stop md->queue before flushing md->wq in case request-based
2772 * dm defers requests to md->wq from md->queue.
d0bcb878 2773 */
cec47e3d 2774 if (dm_request_based(md))
9f518b27 2775 stop_queue(md->queue);
cec47e3d 2776
d0bcb878
KU
2777 flush_workqueue(md->wq);
2778
1da177e4 2779 /*
3b00b203
MP
2780 * At this point no more requests are entering target request routines.
2781 * We call dm_wait_for_completion to wait for all existing requests
2782 * to finish.
1da177e4 2783 */
ffcc3936 2784 r = dm_wait_for_completion(md, interruptible);
1da177e4 2785
6d6f10df 2786 if (noflush)
022c2611 2787 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
41abc4e1
HR
2788 if (map)
2789 synchronize_srcu(&md->io_barrier);
2e93ccc1 2790
1da177e4 2791 /* were we interrupted ? */
46125c1c 2792 if (r < 0) {
9a1fb464 2793 dm_queue_flush(md);
73d410c0 2794
cec47e3d 2795 if (dm_request_based(md))
9f518b27 2796 start_queue(md->queue);
cec47e3d 2797
2ca3310e 2798 unlock_fs(md);
d67ee213 2799 dm_table_presuspend_undo_targets(map);
ffcc3936 2800 /* pushback list is already flushed, so skip flush */
2ca3310e 2801 }
1da177e4 2802
ffcc3936
MS
2803 return r;
2804}
2805
2806/*
2807 * We need to be able to change a mapping table under a mounted
2808 * filesystem. For example we might want to move some data in
2809 * the background. Before the table can be swapped with
2810 * dm_bind_table, dm_suspend must be called to flush any in
2811 * flight bios and ensure that any further io gets deferred.
2812 */
2813/*
2814 * Suspend mechanism in request-based dm.
2815 *
2816 * 1. Flush all I/Os by lock_fs() if needed.
2817 * 2. Stop dispatching any I/O by stopping the request_queue.
2818 * 3. Wait for all in-flight I/Os to be completed or requeued.
2819 *
2820 * To abort suspend, start the request_queue.
2821 */
2822int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2823{
2824 struct dm_table *map = NULL;
2825 int r = 0;
2826
2827retry:
2828 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2829
2830 if (dm_suspended_md(md)) {
2831 r = -EINVAL;
2832 goto out_unlock;
2833 }
2834
2835 if (dm_suspended_internally_md(md)) {
2836 /* already internally suspended, wait for internal resume */
2837 mutex_unlock(&md->suspend_lock);
2838 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2839 if (r)
2840 return r;
2841 goto retry;
2842 }
2843
a12f5d48 2844 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
ffcc3936
MS
2845
2846 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
2847 if (r)
2848 goto out_unlock;
3b00b203 2849
2ca3310e 2850 set_bit(DMF_SUSPENDED, &md->flags);
b84b0287 2851
4d4471cb
KU
2852 dm_table_postsuspend_targets(map);
2853
d287483d 2854out_unlock:
e61290a4 2855 mutex_unlock(&md->suspend_lock);
cf222b37 2856 return r;
1da177e4
LT
2857}
2858
ffcc3936
MS
2859static int __dm_resume(struct mapped_device *md, struct dm_table *map)
2860{
2861 if (map) {
2862 int r = dm_table_resume_targets(map);
2863 if (r)
2864 return r;
2865 }
2866
2867 dm_queue_flush(md);
2868
2869 /*
2870 * Flushing deferred I/Os must be done after targets are resumed
2871 * so that mapping of targets can work correctly.
2872 * Request-based dm is queueing the deferred I/Os in its request_queue.
2873 */
2874 if (dm_request_based(md))
2875 start_queue(md->queue);
2876
2877 unlock_fs(md);
2878
2879 return 0;
2880}
2881
1da177e4
LT
2882int dm_resume(struct mapped_device *md)
2883{
cf222b37 2884 int r = -EINVAL;
cf222b37 2885 struct dm_table *map = NULL;
1da177e4 2886
ffcc3936
MS
2887retry:
2888 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2889
4f186f8b 2890 if (!dm_suspended_md(md))
cf222b37 2891 goto out;
cf222b37 2892
ffcc3936
MS
2893 if (dm_suspended_internally_md(md)) {
2894 /* already internally suspended, wait for internal resume */
2895 mutex_unlock(&md->suspend_lock);
2896 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2897 if (r)
2898 return r;
2899 goto retry;
2900 }
2901
a12f5d48 2902 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
2ca3310e 2903 if (!map || !dm_table_get_size(map))
cf222b37 2904 goto out;
1da177e4 2905
ffcc3936 2906 r = __dm_resume(md, map);
8757b776
MB
2907 if (r)
2908 goto out;
2ca3310e 2909
2ca3310e
AK
2910 clear_bit(DMF_SUSPENDED, &md->flags);
2911
cf222b37
AK
2912 r = 0;
2913out:
e61290a4 2914 mutex_unlock(&md->suspend_lock);
2ca3310e 2915
cf222b37 2916 return r;
1da177e4
LT
2917}
2918
fd2ed4d2
MP
2919/*
2920 * Internal suspend/resume works like userspace-driven suspend. It waits
2921 * until all bios finish and prevents issuing new bios to the target drivers.
2922 * It may be used only from the kernel.
fd2ed4d2
MP
2923 */
2924
ffcc3936 2925static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
fd2ed4d2 2926{
ffcc3936
MS
2927 struct dm_table *map = NULL;
2928
2929 if (dm_suspended_internally_md(md))
2930 return; /* nested internal suspend */
2931
2932 if (dm_suspended_md(md)) {
2933 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2934 return; /* nest suspend */
2935 }
2936
a12f5d48 2937 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
ffcc3936
MS
2938
2939 /*
2940 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2941 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2942 * would require changing .presuspend to return an error -- avoid this
2943 * until there is a need for more elaborate variants of internal suspend.
2944 */
2945 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
2946
2947 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2948
2949 dm_table_postsuspend_targets(map);
2950}
2951
2952static void __dm_internal_resume(struct mapped_device *md)
2953{
2954 if (!dm_suspended_internally_md(md))
2955 return; /* resume from nested internal suspend */
2956
fd2ed4d2 2957 if (dm_suspended_md(md))
ffcc3936
MS
2958 goto done; /* resume from nested suspend */
2959
2960 /*
2961 * NOTE: existing callers don't need to call dm_table_resume_targets
2962 * (which may fail -- so best to avoid it for now by passing NULL map)
2963 */
2964 (void) __dm_resume(md, NULL);
2965
2966done:
2967 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2968 smp_mb__after_atomic();
2969 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2970}
2971
2972void dm_internal_suspend_noflush(struct mapped_device *md)
2973{
2974 mutex_lock(&md->suspend_lock);
2975 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2976 mutex_unlock(&md->suspend_lock);
2977}
2978EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2979
2980void dm_internal_resume(struct mapped_device *md)
2981{
2982 mutex_lock(&md->suspend_lock);
2983 __dm_internal_resume(md);
2984 mutex_unlock(&md->suspend_lock);
2985}
2986EXPORT_SYMBOL_GPL(dm_internal_resume);
2987
2988/*
2989 * Fast variants of internal suspend/resume hold md->suspend_lock,
2990 * which prevents interaction with userspace-driven suspend.
2991 */
2992
2993void dm_internal_suspend_fast(struct mapped_device *md)
2994{
2995 mutex_lock(&md->suspend_lock);
2996 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
fd2ed4d2
MP
2997 return;
2998
2999 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3000 synchronize_srcu(&md->io_barrier);
3001 flush_workqueue(md->wq);
3002 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3003}
3004
ffcc3936 3005void dm_internal_resume_fast(struct mapped_device *md)
fd2ed4d2 3006{
ffcc3936 3007 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
fd2ed4d2
MP
3008 goto done;
3009
3010 dm_queue_flush(md);
3011
3012done:
3013 mutex_unlock(&md->suspend_lock);
3014}
3015
1da177e4
LT
3016/*-----------------------------------------------------------------
3017 * Event notification.
3018 *---------------------------------------------------------------*/
3abf85b5 3019int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
60935eb2 3020 unsigned cookie)
69267a30 3021{
60935eb2
MB
3022 char udev_cookie[DM_COOKIE_LENGTH];
3023 char *envp[] = { udev_cookie, NULL };
3024
3025 if (!cookie)
3abf85b5 3026 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
60935eb2
MB
3027 else {
3028 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3029 DM_COOKIE_ENV_VAR_NAME, cookie);
3abf85b5
PR
3030 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3031 action, envp);
60935eb2 3032 }
69267a30
AK
3033}
3034
7a8c3d3b
MA
3035uint32_t dm_next_uevent_seq(struct mapped_device *md)
3036{
3037 return atomic_add_return(1, &md->uevent_seq);
3038}
3039
1da177e4
LT
3040uint32_t dm_get_event_nr(struct mapped_device *md)
3041{
3042 return atomic_read(&md->event_nr);
3043}
3044
3045int dm_wait_event(struct mapped_device *md, int event_nr)
3046{
3047 return wait_event_interruptible(md->eventq,
3048 (event_nr != atomic_read(&md->event_nr)));
3049}
3050
7a8c3d3b
MA
3051void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3052{
3053 unsigned long flags;
3054
3055 spin_lock_irqsave(&md->uevent_lock, flags);
3056 list_add(elist, &md->uevent_list);
3057 spin_unlock_irqrestore(&md->uevent_lock, flags);
3058}
3059
1da177e4
LT
3060/*
3061 * The gendisk is only valid as long as you have a reference
3062 * count on 'md'.
3063 */
3064struct gendisk *dm_disk(struct mapped_device *md)
3065{
3066 return md->disk;
3067}
3068
784aae73
MB
3069struct kobject *dm_kobject(struct mapped_device *md)
3070{
2995fa78 3071 return &md->kobj_holder.kobj;
784aae73
MB
3072}
3073
784aae73
MB
3074struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3075{
3076 struct mapped_device *md;
3077
2995fa78 3078 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
784aae73 3079
4d89b7b4 3080 if (test_bit(DMF_FREEING, &md->flags) ||
432a212c 3081 dm_deleting_md(md))
4d89b7b4
MB
3082 return NULL;
3083
784aae73
MB
3084 dm_get(md);
3085 return md;
3086}
3087
4f186f8b 3088int dm_suspended_md(struct mapped_device *md)
1da177e4
LT
3089{
3090 return test_bit(DMF_SUSPENDED, &md->flags);
3091}
3092
ffcc3936
MS
3093int dm_suspended_internally_md(struct mapped_device *md)
3094{
3095 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3096}
3097
2c140a24
MP
3098int dm_test_deferred_remove_flag(struct mapped_device *md)
3099{
3100 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3101}
3102
64dbce58
KU
3103int dm_suspended(struct dm_target *ti)
3104{
ecdb2e25 3105 return dm_suspended_md(dm_table_get_md(ti->table));
64dbce58
KU
3106}
3107EXPORT_SYMBOL_GPL(dm_suspended);
3108
2e93ccc1
KU
3109int dm_noflush_suspending(struct dm_target *ti)
3110{
ecdb2e25 3111 return __noflush_suspending(dm_table_get_md(ti->table));
2e93ccc1
KU
3112}
3113EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3114
c0820cf5 3115struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
e6ee8c0b 3116{
5f015204
JN
3117 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3118 struct kmem_cache *cachep;
3119 unsigned int pool_size;
3120 unsigned int front_pad;
e6ee8c0b
KU
3121
3122 if (!pools)
3123 return NULL;
3124
23e5083b 3125 if (type == DM_TYPE_BIO_BASED) {
5f015204 3126 cachep = _io_cache;
e8603136 3127 pool_size = dm_get_reserved_bio_based_ios();
5f015204
JN
3128 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
3129 } else if (type == DM_TYPE_REQUEST_BASED) {
3130 cachep = _rq_tio_cache;
f4790826 3131 pool_size = dm_get_reserved_rq_based_ios();
5f015204
JN
3132 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3133 /* per_bio_data_size is not used. See __bind_mempools(). */
3134 WARN_ON(per_bio_data_size != 0);
3135 } else
3136 goto out;
e6ee8c0b 3137
6cfa5857 3138 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
5f015204
JN
3139 if (!pools->io_pool)
3140 goto out;
e6ee8c0b 3141
3d8aab2d 3142 pools->bs = bioset_create_nobvec(pool_size, front_pad);
e6ee8c0b 3143 if (!pools->bs)
5f015204 3144 goto out;
e6ee8c0b 3145
a91a2785 3146 if (integrity && bioset_integrity_create(pools->bs, pool_size))
5f015204 3147 goto out;
a91a2785 3148
e6ee8c0b
KU
3149 return pools;
3150
5f015204
JN
3151out:
3152 dm_free_md_mempools(pools);
e6ee8c0b
KU
3153
3154 return NULL;
3155}
3156
3157void dm_free_md_mempools(struct dm_md_mempools *pools)
3158{
3159 if (!pools)
3160 return;
3161
3162 if (pools->io_pool)
3163 mempool_destroy(pools->io_pool);
3164
e6ee8c0b
KU
3165 if (pools->bs)
3166 bioset_free(pools->bs);
3167
3168 kfree(pools);
3169}
3170
83d5cde4 3171static const struct block_device_operations dm_blk_dops = {
1da177e4
LT
3172 .open = dm_blk_open,
3173 .release = dm_blk_close,
aa129a22 3174 .ioctl = dm_blk_ioctl,
3ac51e74 3175 .getgeo = dm_blk_getgeo,
1da177e4
LT
3176 .owner = THIS_MODULE
3177};
3178
1da177e4
LT
3179/*
3180 * module hooks
3181 */
3182module_init(dm_init);
3183module_exit(dm_exit);
3184
3185module_param(major, uint, 0);
3186MODULE_PARM_DESC(major, "The major number of the device mapper");
f4790826 3187
e8603136
MS
3188module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3189MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3190
f4790826
MS
3191module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3192MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3193
1da177e4
LT
3194MODULE_DESCRIPTION(DM_NAME " driver");
3195MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3196MODULE_LICENSE("GPL");