blob: b3d937211a488f404bee33a3ac5eca46793830b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +01009#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <linux/init.h>
12#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080020#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010021#include <linux/delay.h>
Li Zefan55782132009-06-09 13:43:05 +080022
23#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "core"
26
Namhyung Kim71a16732011-10-31 20:18:54 +000027#ifdef CONFIG_PRINTK
28/*
29 * ratelimit state to be used in DMXXX_LIMIT().
30 */
31DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
32 DEFAULT_RATELIMIT_INTERVAL,
33 DEFAULT_RATELIMIT_BURST);
34EXPORT_SYMBOL(dm_ratelimit_state);
35#endif
36
Milan Broz60935eb2009-06-22 10:12:30 +010037/*
38 * Cookies are numeric values sent with CHANGE and REMOVE
39 * uevents while resuming, removing or renaming the device.
40 */
41#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
42#define DM_COOKIE_LENGTH 24
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static const char *_name = DM_NAME;
45
46static unsigned int major = 0;
47static unsigned int _major = 0;
48
Alasdair G Kergond15b7742011-08-02 12:32:01 +010049static DEFINE_IDR(_minor_idr);
50
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070051static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040052
53static void do_deferred_remove(struct work_struct *w);
54
55static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000058 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * One of these is allocated per bio.
60 */
61struct dm_io {
62 struct mapped_device *md;
63 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010065 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080066 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010067 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040068 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
71/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000072 * For request-based dm.
73 * One of these is allocated per request.
74 */
75struct dm_rq_target_io {
76 struct mapped_device *md;
77 struct dm_target *ti;
78 struct request *orig, clone;
79 int error;
80 union map_info info;
81};
82
83/*
Kent Overstreet94818742012-09-07 13:44:01 -070084 * For request-based dm - the bio clones we allocate are embedded in these
85 * structs.
86 *
87 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
88 * the bioset is created - this means the bio has to come at the end of the
89 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000090 */
91struct dm_rq_clone_bio_info {
92 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010093 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -070094 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000095};
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097union map_info *dm_get_mapinfo(struct bio *bio)
98{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070099 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100100 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700101 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100104union map_info *dm_get_rq_mapinfo(struct request *rq)
105{
106 if (rq && rq->end_io_data)
107 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
108 return NULL;
109}
110EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
111
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700112#define MINOR_ALLOCED ((void *)-1)
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Bits for the md->flags field.
116 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100117#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800119#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700120#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700121#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800122#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100123#define DMF_MERGE_IS_OPTIONAL 6
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400124#define DMF_DEFERRED_REMOVE 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Milan Broz304f3f62008-02-08 02:11:17 +0000126/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100127 * A dummy definition to make RCU happy.
128 * struct dm_table should never be dereferenced in this file.
129 */
130struct dm_table {
131 int undefined__;
132};
133
134/*
Milan Broz304f3f62008-02-08 02:11:17 +0000135 * Work processed by per-device workqueue.
136 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100138 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000139 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700141 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100143 /*
144 * The current mapping.
145 * Use dm_get_live_table{_fast} or take suspend_lock for
146 * dereference.
147 */
148 struct dm_table *map;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 unsigned long flags;
151
Jens Axboe165125e2007-07-24 09:28:11 +0200152 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100153 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100154 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100155 struct mutex type_lock;
156
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000157 struct target_type *immutable_target_type;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800160 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 void *interface_ptr;
163
164 /*
165 * A list of ios that arrived while we were suspended.
166 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200167 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100169 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800170 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100171 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200174 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000175 */
176 struct workqueue_struct *wq;
177
178 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * io objects are allocated from here.
180 */
181 mempool_t *io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Stefan Bader9faf4002006-10-03 01:15:41 -0700183 struct bio_set *bs;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /*
186 * Event handling.
187 */
188 atomic_t event_nr;
189 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100190 atomic_t uevent_seq;
191 struct list_head uevent_list;
192 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /*
195 * freeze/thaw support require holding onto a super block
196 */
197 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100198 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800199
200 /* forced geometry settings */
201 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000202
203 /* sysfs handle */
204 struct kobject kobj;
Mikulas Patocka52b1fd52009-06-22 10:12:21 +0100205
Tejun Heod87f4c12010-09-03 11:56:19 +0200206 /* zero-length flush that will be cloned and submitted to targets */
207 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400208
209 struct dm_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100212/*
213 * For mempools pre-allocation at the table loading time.
214 */
215struct dm_md_mempools {
216 mempool_t *io_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100217 struct bio_set *bs;
218};
219
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400220#define RESERVED_BIO_BASED_IOS 16
221#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400222#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800223static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000224static struct kmem_cache *_rq_tio_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700225
Mike Snitzerf4790822013-09-12 18:06:12 -0400226/*
Mike Snitzere8603132013-09-12 18:06:12 -0400227 * Bio-based DM's mempools' reserved IOs set by the user.
228 */
229static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
230
231/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400232 * Request-based DM's mempools' reserved IOs set by the user.
233 */
234static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
235
236static unsigned __dm_get_reserved_ios(unsigned *reserved_ios,
237 unsigned def, unsigned max)
238{
239 unsigned ios = ACCESS_ONCE(*reserved_ios);
240 unsigned modified_ios = 0;
241
242 if (!ios)
243 modified_ios = def;
244 else if (ios > max)
245 modified_ios = max;
246
247 if (modified_ios) {
248 (void)cmpxchg(reserved_ios, ios, modified_ios);
249 ios = modified_ios;
250 }
251
252 return ios;
253}
254
Mike Snitzere8603132013-09-12 18:06:12 -0400255unsigned dm_get_reserved_bio_based_ios(void)
256{
257 return __dm_get_reserved_ios(&reserved_bio_based_ios,
258 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
259}
260EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
261
Mike Snitzerf4790822013-09-12 18:06:12 -0400262unsigned dm_get_reserved_rq_based_ios(void)
263{
264 return __dm_get_reserved_ios(&reserved_rq_based_ios,
265 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
266}
267EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static int __init local_init(void)
270{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100271 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100274 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100276 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000278 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
279 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100280 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000281
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100282 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100283 if (r)
Jun'ichi Nomura23e50832013-03-01 22:45:48 +0000284 goto out_free_rq_tio_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 _major = major;
287 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100288 if (r < 0)
289 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 if (!_major)
292 _major = r;
293
294 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100295
296out_uevent_exit:
297 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000298out_free_rq_tio_cache:
299 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100300out_free_io_cache:
301 kmem_cache_destroy(_io_cache);
302
303 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306static void local_exit(void)
307{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400308 flush_scheduled_work();
309
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000310 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700312 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100313 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 _major = 0;
316
317 DMINFO("cleaned up");
318}
319
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000320static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 local_init,
322 dm_target_init,
323 dm_linear_init,
324 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000325 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100326 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400328 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329};
330
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000331static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 local_exit,
333 dm_target_exit,
334 dm_linear_exit,
335 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000336 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100337 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400339 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340};
341
342static int __init dm_init(void)
343{
344 const int count = ARRAY_SIZE(_inits);
345
346 int r, i;
347
348 for (i = 0; i < count; i++) {
349 r = _inits[i]();
350 if (r)
351 goto bad;
352 }
353
354 return 0;
355
356 bad:
357 while (i--)
358 _exits[i]();
359
360 return r;
361}
362
363static void __exit dm_exit(void)
364{
365 int i = ARRAY_SIZE(_exits);
366
367 while (i--)
368 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100369
370 /*
371 * Should be empty by this point.
372 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100373 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376/*
377 * Block device functions
378 */
Mike Anderson432a2122009-12-10 23:52:20 +0000379int dm_deleting_md(struct mapped_device *md)
380{
381 return test_bit(DMF_DELETING, &md->flags);
382}
383
Al Virofe5f9f22008-03-02 10:29:31 -0500384static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct mapped_device *md;
387
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700388 spin_lock(&_minor_lock);
389
Al Virofe5f9f22008-03-02 10:29:31 -0500390 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700391 if (!md)
392 goto out;
393
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700394 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000395 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700396 md = NULL;
397 goto out;
398 }
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700401 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700402
403out:
404 spin_unlock(&_minor_lock);
405
406 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Al Virodb2a1442013-05-05 21:52:57 -0400409static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Al Virofe5f9f22008-03-02 10:29:31 -0500411 struct mapped_device *md = disk->private_data;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200412
Milan Broz4a1aeb92011-01-13 19:59:48 +0000413 spin_lock(&_minor_lock);
414
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400415 if (atomic_dec_and_test(&md->open_count) &&
416 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
417 schedule_work(&deferred_remove_work);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 dm_put(md);
Milan Broz4a1aeb92011-01-13 19:59:48 +0000420
421 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700424int dm_open_count(struct mapped_device *md)
425{
426 return atomic_read(&md->open_count);
427}
428
429/*
430 * Guarantees nothing is using the device before it's deleted.
431 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400432int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700433{
434 int r = 0;
435
436 spin_lock(&_minor_lock);
437
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400438 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700439 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400440 if (mark_deferred)
441 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
442 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
443 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700444 else
445 set_bit(DMF_DELETING, &md->flags);
446
447 spin_unlock(&_minor_lock);
448
449 return r;
450}
451
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400452int dm_cancel_deferred_remove(struct mapped_device *md)
453{
454 int r = 0;
455
456 spin_lock(&_minor_lock);
457
458 if (test_bit(DMF_DELETING, &md->flags))
459 r = -EBUSY;
460 else
461 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
462
463 spin_unlock(&_minor_lock);
464
465 return r;
466}
467
468static void do_deferred_remove(struct work_struct *w)
469{
470 dm_deferred_remove();
471}
472
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400473sector_t dm_get_size(struct mapped_device *md)
474{
475 return get_capacity(md->disk);
476}
477
478struct dm_stats *dm_get_stats(struct mapped_device *md)
479{
480 return &md->stats;
481}
482
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800483static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
484{
485 struct mapped_device *md = bdev->bd_disk->private_data;
486
487 return dm_get_geometry(md, geo);
488}
489
Al Virofe5f9f22008-03-02 10:29:31 -0500490static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700491 unsigned int cmd, unsigned long arg)
492{
Al Virofe5f9f22008-03-02 10:29:31 -0500493 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100494 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100495 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700496 struct dm_target *tgt;
497 int r = -ENOTTY;
498
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100499retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100500 map = dm_get_live_table(md, &srcu_idx);
501
Milan Brozaa129a22006-10-03 01:15:15 -0700502 if (!map || !dm_table_get_size(map))
503 goto out;
504
505 /* We only support devices that have a single target */
506 if (dm_table_get_num_targets(map) != 1)
507 goto out;
508
509 tgt = dm_table_get_target(map, 0);
510
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000511 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700512 r = -EAGAIN;
513 goto out;
514 }
515
516 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400517 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700518
519out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100520 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700521
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100522 if (r == -ENOTCONN) {
523 msleep(10);
524 goto retry;
525 }
526
Milan Brozaa129a22006-10-03 01:15:15 -0700527 return r;
528}
529
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100530static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 return mempool_alloc(md->io_pool, GFP_NOIO);
533}
534
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100535static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 mempool_free(io, md->io_pool);
538}
539
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100540static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Mikulas Patockadba14162012-10-12 21:02:15 +0100542 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000545static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
546 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100547{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000548 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100549}
550
551static void free_rq_tio(struct dm_rq_target_io *tio)
552{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000553 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100554}
555
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000556static int md_in_flight(struct mapped_device *md)
557{
558 return atomic_read(&md->pending[READ]) +
559 atomic_read(&md->pending[WRITE]);
560}
561
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800562static void start_io_acct(struct dm_io *io)
563{
564 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400565 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900566 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400567 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800568
569 io->start_time = jiffies;
570
Tejun Heo074a7ac2008-08-25 19:56:14 +0900571 cpu = part_stat_lock();
572 part_round_stats(cpu, &dm_disk(md)->part0);
573 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100574 atomic_set(&dm_disk(md)->part0.in_flight[rw],
575 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400576
577 if (unlikely(dm_stats_used(&md->stats)))
578 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_sector,
579 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800580}
581
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000582static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800583{
584 struct mapped_device *md = io->md;
585 struct bio *bio = io->bio;
586 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900587 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800588 int rw = bio_data_dir(bio);
589
Tejun Heo074a7ac2008-08-25 19:56:14 +0900590 cpu = part_stat_lock();
591 part_round_stats(cpu, &dm_disk(md)->part0);
592 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
593 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800594
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400595 if (unlikely(dm_stats_used(&md->stats)))
596 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_sector,
597 bio_sectors(bio), true, duration, &io->stats_aux);
598
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100599 /*
600 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200601 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100602 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100603 pending = atomic_dec_return(&md->pending[rw]);
604 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200605 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800606
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000607 /* nudge anyone waiting on suspend queue */
608 if (!pending)
609 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/*
613 * Add the bio to the list of deferred io.
614 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100615static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200617 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200619 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200621 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200622 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/*
626 * Everyone (including functions in this file), should use this
627 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100628 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100630struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100632 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100634 return srcu_dereference(md->map, &md->io_barrier);
635}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100637void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
638{
639 srcu_read_unlock(&md->io_barrier, srcu_idx);
640}
641
642void dm_sync_table(struct mapped_device *md)
643{
644 synchronize_srcu(&md->io_barrier);
645 synchronize_rcu_expedited();
646}
647
648/*
649 * A fast alternative to dm_get_live_table/dm_put_live_table.
650 * The caller must not block between these two functions.
651 */
652static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
653{
654 rcu_read_lock();
655 return rcu_dereference(md->map);
656}
657
658static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
659{
660 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800663/*
664 * Get the geometry associated with a dm device
665 */
666int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
667{
668 *geo = md->geometry;
669
670 return 0;
671}
672
673/*
674 * Set the geometry of a device.
675 */
676int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
677{
678 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
679
680 if (geo->start > sz) {
681 DMWARN("Start sector is beyond the geometry limits.");
682 return -EINVAL;
683 }
684
685 md->geometry = *geo;
686
687 return 0;
688}
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/*-----------------------------------------------------------------
691 * CRUD START:
692 * A more elegant soln is in the works that uses the queue
693 * merge fn, unfortunately there are a couple of changes to
694 * the block layer that I want to make for this. So in the
695 * interests of getting something for people to use I give
696 * you this clearly demarcated crap.
697 *---------------------------------------------------------------*/
698
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800699static int __noflush_suspending(struct mapped_device *md)
700{
701 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/*
705 * Decrements the number of outstanding ios that a bio has been
706 * cloned into, completing the original io if necc.
707 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800708static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800710 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000711 int io_error;
712 struct bio *bio;
713 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800714
715 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100716 if (unlikely(error)) {
717 spin_lock_irqsave(&io->endio_lock, flags);
718 if (!(io->error > 0 && __noflush_suspending(md)))
719 io->error = error;
720 spin_unlock_irqrestore(&io->endio_lock, flags);
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800724 if (io->error == DM_ENDIO_REQUEUE) {
725 /*
726 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800727 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100728 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200729 if (__noflush_suspending(md))
730 bio_list_add_head(&md->deferred, io->bio);
731 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800732 /* noflush suspend was interrupted. */
733 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100734 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800735 }
736
Milan Brozb35f8ca2009-03-16 17:44:36 +0000737 io_error = io->error;
738 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200739 end_io_acct(io);
740 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100741
Tejun Heo6a8736d2010-09-08 18:07:00 +0200742 if (io_error == DM_ENDIO_REQUEUE)
743 return;
744
Mike Snitzerb372d362010-09-08 18:07:01 +0200745 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100746 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200747 * Preflush done for flush with data, reissue
748 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100749 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200750 bio->bi_rw &= ~REQ_FLUSH;
751 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100752 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200753 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700754 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200755 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758}
759
NeilBrown6712ecf2007-09-27 12:47:43 +0200760static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100763 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000764 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700765 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 dm_endio_fn endio = tio->ti->type->end_io;
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
769 error = -EIO;
770
771 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000772 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800773 if (r < 0 || r == DM_ENDIO_REQUEUE)
774 /*
775 * error and requeue request are handled
776 * in dec_pending().
777 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800779 else if (r == DM_ENDIO_INCOMPLETE)
780 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200781 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800782 else if (r) {
783 DMWARN("unimplemented target endio return value: %d", r);
784 BUG();
785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
Stefan Bader9faf4002006-10-03 01:15:41 -0700788 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000789 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100792/*
793 * Partial completion handling for request-based dm
794 */
795static void end_clone_bio(struct bio *clone, int error)
796{
797 struct dm_rq_clone_bio_info *info = clone->bi_private;
798 struct dm_rq_target_io *tio = info->tio;
799 struct bio *bio = info->orig;
800 unsigned int nr_bytes = info->orig->bi_size;
801
802 bio_put(clone);
803
804 if (tio->error)
805 /*
806 * An error has already been detected on the request.
807 * Once error occurred, just let clone->end_io() handle
808 * the remainder.
809 */
810 return;
811 else if (error) {
812 /*
813 * Don't notice the error to the upper layer yet.
814 * The error handling decision is made by the target driver,
815 * when the request is completed.
816 */
817 tio->error = error;
818 return;
819 }
820
821 /*
822 * I/O for the bio successfully completed.
823 * Notice the data completion to the upper layer.
824 */
825
826 /*
827 * bios are processed from the head of the list.
828 * So the completing bio should always be rq->bio.
829 * If it's not, something wrong is happening.
830 */
831 if (tio->orig->bio != bio)
832 DMERR("bio completion is going in the middle of the request");
833
834 /*
835 * Update the original request.
836 * Do not use blk_end_request() here, because it may complete
837 * the original request before the clone, and break the ordering.
838 */
839 blk_update_request(tio->orig, 0, nr_bytes);
840}
841
842/*
843 * Don't touch any member of the md after calling this function because
844 * the md may be freed in dm_put() at the end of this function.
845 * Or do dm_get() before calling this function and dm_put() later.
846 */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000847static void rq_completed(struct mapped_device *md, int rw, int run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100848{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000849 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100850
851 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000852 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100853 wake_up(&md->wait);
854
Jens Axboea8c32a52012-11-06 12:24:26 +0100855 /*
856 * Run this off this callpath, as drivers could invoke end_io while
857 * inside their request_fn (and holding the queue lock). Calling
858 * back into ->request_fn() could deadlock attempting to grab the
859 * queue lock again.
860 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100861 if (run_queue)
Jens Axboea8c32a52012-11-06 12:24:26 +0100862 blk_run_queue_async(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100863
864 /*
865 * dm_put() must be at the end of this function. See the comment above
866 */
867 dm_put(md);
868}
869
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100870static void free_rq_clone(struct request *clone)
871{
872 struct dm_rq_target_io *tio = clone->end_io_data;
873
874 blk_rq_unprep_clone(clone);
875 free_rq_tio(tio);
876}
877
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000878/*
879 * Complete the clone and the original request.
880 * Must be called without queue lock.
881 */
882static void dm_end_request(struct request *clone, int error)
883{
884 int rw = rq_data_dir(clone);
885 struct dm_rq_target_io *tio = clone->end_io_data;
886 struct mapped_device *md = tio->md;
887 struct request *rq = tio->orig;
888
Tejun Heo29e40132010-09-08 18:07:00 +0200889 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000890 rq->errors = clone->errors;
891 rq->resid_len = clone->resid_len;
892
893 if (rq->sense)
894 /*
895 * We are using the sense buffer of the original
896 * request.
897 * So setting the length of the sense data is enough.
898 */
899 rq->sense_len = clone->sense_len;
900 }
901
902 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +0200903 blk_end_request_all(rq, error);
904 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000905}
906
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100907static void dm_unprep_request(struct request *rq)
908{
909 struct request *clone = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100910
911 rq->special = NULL;
912 rq->cmd_flags &= ~REQ_DONTPREP;
913
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100914 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100915}
916
917/*
918 * Requeue the original request of a clone.
919 */
920void dm_requeue_unmapped_request(struct request *clone)
921{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000922 int rw = rq_data_dir(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100923 struct dm_rq_target_io *tio = clone->end_io_data;
924 struct mapped_device *md = tio->md;
925 struct request *rq = tio->orig;
926 struct request_queue *q = rq->q;
927 unsigned long flags;
928
929 dm_unprep_request(rq);
930
931 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100932 blk_requeue_request(q, rq);
933 spin_unlock_irqrestore(q->queue_lock, flags);
934
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000935 rq_completed(md, rw, 0);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100936}
937EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
938
939static void __stop_queue(struct request_queue *q)
940{
941 blk_stop_queue(q);
942}
943
944static void stop_queue(struct request_queue *q)
945{
946 unsigned long flags;
947
948 spin_lock_irqsave(q->queue_lock, flags);
949 __stop_queue(q);
950 spin_unlock_irqrestore(q->queue_lock, flags);
951}
952
953static void __start_queue(struct request_queue *q)
954{
955 if (blk_queue_stopped(q))
956 blk_start_queue(q);
957}
958
959static void start_queue(struct request_queue *q)
960{
961 unsigned long flags;
962
963 spin_lock_irqsave(q->queue_lock, flags);
964 __start_queue(q);
965 spin_unlock_irqrestore(q->queue_lock, flags);
966}
967
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000968static void dm_done(struct request *clone, int error, bool mapped)
969{
970 int r = error;
971 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +0100972 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000973
Mike Snitzerba1cbad2012-09-26 23:45:42 +0100974 if (tio->ti) {
975 rq_end_io = tio->ti->type->rq_end_io;
976
977 if (mapped && rq_end_io)
978 r = rq_end_io(tio->ti, clone, error, &tio->info);
979 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000980
981 if (r <= 0)
982 /* The target wants to complete the I/O */
983 dm_end_request(clone, r);
984 else if (r == DM_ENDIO_INCOMPLETE)
985 /* The target will handle the I/O */
986 return;
987 else if (r == DM_ENDIO_REQUEUE)
988 /* The target wants to requeue the I/O */
989 dm_requeue_unmapped_request(clone);
990 else {
991 DMWARN("unimplemented target endio return value: %d", r);
992 BUG();
993 }
994}
995
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100996/*
997 * Request completion handler for request-based dm
998 */
999static void dm_softirq_done(struct request *rq)
1000{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001001 bool mapped = true;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001002 struct request *clone = rq->completion_data;
1003 struct dm_rq_target_io *tio = clone->end_io_data;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001004
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001005 if (rq->cmd_flags & REQ_FAILED)
1006 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001007
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001008 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001009}
1010
1011/*
1012 * Complete the clone and the original request with the error status
1013 * through softirq context.
1014 */
1015static void dm_complete_request(struct request *clone, int error)
1016{
1017 struct dm_rq_target_io *tio = clone->end_io_data;
1018 struct request *rq = tio->orig;
1019
1020 tio->error = error;
1021 rq->completion_data = clone;
1022 blk_complete_request(rq);
1023}
1024
1025/*
1026 * Complete the not-mapped clone and the original request with the error status
1027 * through softirq context.
1028 * Target's rq_end_io() function isn't called.
1029 * This may be used when the target's map_rq() function fails.
1030 */
1031void dm_kill_unmapped_request(struct request *clone, int error)
1032{
1033 struct dm_rq_target_io *tio = clone->end_io_data;
1034 struct request *rq = tio->orig;
1035
1036 rq->cmd_flags |= REQ_FAILED;
1037 dm_complete_request(clone, error);
1038}
1039EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
1040
1041/*
1042 * Called with the queue lock held
1043 */
1044static void end_clone_request(struct request *clone, int error)
1045{
1046 /*
1047 * For just cleaning up the information of the queue in which
1048 * the clone was dispatched.
1049 * The clone is *NOT* freed actually here because it is alloced from
1050 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
1051 */
1052 __blk_put_request(clone->q, clone);
1053
1054 /*
1055 * Actual request completion is done in a softirq context which doesn't
1056 * hold the queue lock. Otherwise, deadlock could occur because:
1057 * - another request may be submitted by the upper level driver
1058 * of the stacking during the completion
1059 * - the submission which requires queue lock may be done
1060 * against this queue
1061 */
1062 dm_complete_request(clone, error);
1063}
1064
Mike Snitzer56a67df2010-08-12 04:14:10 +01001065/*
1066 * Return maximum size of I/O possible at the supplied sector up to the current
1067 * target boundary.
1068 */
1069static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001071 sector_t target_offset = dm_target_offset(ti, sector);
1072
1073 return ti->len - target_offset;
1074}
1075
1076static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1077{
1078 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001079 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001082 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001084 if (ti->max_io_len) {
1085 offset = dm_target_offset(ti, sector);
1086 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1087 max_len = sector_div(offset, ti->max_io_len);
1088 else
1089 max_len = offset & (ti->max_io_len - 1);
1090 max_len = ti->max_io_len - max_len;
1091
1092 if (len > max_len)
1093 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
1096 return len;
1097}
1098
Mike Snitzer542f9032012-07-27 15:08:00 +01001099int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1100{
1101 if (len > UINT_MAX) {
1102 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1103 (unsigned long long)len, UINT_MAX);
1104 ti->error = "Maximum size of target IO is too large";
1105 return -EINVAL;
1106 }
1107
1108 ti->max_io_len = (uint32_t) len;
1109
1110 return 0;
1111}
1112EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1113
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001114static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
1116 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001117 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001118 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001119 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001120 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 clone->bi_end_io = clone_endio;
1123 clone->bi_private = tio;
1124
1125 /*
1126 * Map the clone. If r == 0 we don't need to do
1127 * anything, the target has assumed ownership of
1128 * this io.
1129 */
1130 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +01001131 sector = clone->bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001132 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001133 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001135
Mike Snitzerd07335e2010-11-16 12:52:38 +01001136 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1137 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001140 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1141 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001142 md = tio->io->md;
1143 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001144 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001145 } else if (r) {
1146 DMWARN("unimplemented target map return value: %d", r);
1147 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149}
1150
1151struct clone_info {
1152 struct mapped_device *md;
1153 struct dm_table *map;
1154 struct bio *bio;
1155 struct dm_io *io;
1156 sector_t sector;
1157 sector_t sector_count;
1158 unsigned short idx;
1159};
1160
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001161static void bio_setup_sector(struct bio *bio, sector_t sector, sector_t len)
1162{
1163 bio->bi_sector = sector;
1164 bio->bi_size = to_bytes(len);
1165}
1166
1167static void bio_setup_bv(struct bio *bio, unsigned short idx, unsigned short bv_count)
1168{
1169 bio->bi_idx = idx;
1170 bio->bi_vcnt = idx + bv_count;
1171 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
1172}
1173
1174static void clone_bio_integrity(struct bio *bio, struct bio *clone,
1175 unsigned short idx, unsigned len, unsigned offset,
1176 unsigned trim)
1177{
1178 if (!bio_integrity(bio))
1179 return;
1180
1181 bio_integrity_clone(clone, bio, GFP_NOIO);
1182
1183 if (trim)
1184 bio_integrity_trim(clone, bio_sector_offset(bio, idx, offset), len);
1185}
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187/*
Tejun Heod87f4c12010-09-03 11:56:19 +02001188 * Creates a little bio that just does part of a bvec.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001190static void clone_split_bio(struct dm_target_io *tio, struct bio *bio,
1191 sector_t sector, unsigned short idx,
1192 unsigned offset, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Mikulas Patockadba14162012-10-12 21:02:15 +01001194 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 struct bio_vec *bv = bio->bi_io_vec + idx;
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 *clone->bi_io_vec = *bv;
1198
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001199 bio_setup_sector(clone, sector, len);
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 clone->bi_bdev = bio->bi_bdev;
Tejun Heod87f4c12010-09-03 11:56:19 +02001202 clone->bi_rw = bio->bi_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 clone->bi_vcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 clone->bi_io_vec->bv_offset = offset;
1205 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +01001206 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001208 clone_bio_integrity(bio, clone, idx, len, offset, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211/*
1212 * Creates a bio that consists of range of complete bvecs.
1213 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001214static void clone_bio(struct dm_target_io *tio, struct bio *bio,
1215 sector_t sector, unsigned short idx,
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001216 unsigned short bv_count, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Mikulas Patockadba14162012-10-12 21:02:15 +01001218 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001219 unsigned trim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Stefan Bader9faf4002006-10-03 01:15:41 -07001221 __bio_clone(clone, bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001222 bio_setup_sector(clone, sector, len);
1223 bio_setup_bv(clone, idx, bv_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001225 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1226 trim = 1;
1227 clone_bio_integrity(bio, clone, idx, len, 0, trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001230static struct dm_target_io *alloc_tio(struct clone_info *ci,
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001231 struct dm_target *ti, int nr_iovecs,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001232 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001233{
Mikulas Patockadba14162012-10-12 21:02:15 +01001234 struct dm_target_io *tio;
1235 struct bio *clone;
1236
1237 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, ci->md->bs);
1238 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001239
1240 tio->io = ci->io;
1241 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001242 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001243 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001244
1245 return tio;
1246}
1247
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001248static void __clone_and_map_simple_bio(struct clone_info *ci,
1249 struct dm_target *ti,
1250 unsigned target_bio_nr, sector_t len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001251{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001252 struct dm_target_io *tio = alloc_tio(ci, ti, ci->bio->bi_max_vecs, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001253 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001254
Mike Snitzer06a426c2010-08-12 04:14:09 +01001255 /*
1256 * Discard requests require the bio's inline iovecs be initialized.
1257 * ci->bio->bi_max_vecs is BIO_INLINE_VECS anyway, for both flush
1258 * and discard, so no need for concern about wasted bvec allocations.
1259 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001260 __bio_clone(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001261 if (len)
1262 bio_setup_sector(clone, ci->sector, len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001263
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001264 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001265}
1266
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001267static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
1268 unsigned num_bios, sector_t len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001269{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001270 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001271
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001272 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001273 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001274}
1275
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001276static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001277{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001278 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001279 struct dm_target *ti;
1280
Mike Snitzerb372d362010-09-08 18:07:01 +02001281 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001282 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001283 __send_duplicate_bios(ci, ti, ti->num_flush_bios, 0);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001284
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001285 return 0;
1286}
1287
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001288static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
1289 sector_t sector, int nr_iovecs,
1290 unsigned short idx, unsigned short bv_count,
1291 unsigned offset, unsigned len,
1292 unsigned split_bvec)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001293{
Mikulas Patockadba14162012-10-12 21:02:15 +01001294 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001295 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001296 unsigned target_bio_nr;
1297 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001298
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001299 /*
1300 * Does the target want to receive duplicate copies of the bio?
1301 */
1302 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1303 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001304
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001305 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
1306 tio = alloc_tio(ci, ti, nr_iovecs, target_bio_nr);
1307 if (split_bvec)
1308 clone_split_bio(tio, bio, sector, idx, offset, len);
1309 else
1310 clone_bio(tio, bio, sector, idx, bv_count, len);
1311 __map_bio(tio);
1312 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001313}
1314
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001315typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001316
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001317static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001318{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001319 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001320}
1321
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001322static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001323{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001324 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001325}
1326
1327typedef bool (*is_split_required_fn)(struct dm_target *ti);
1328
1329static bool is_split_required_for_discard(struct dm_target *ti)
1330{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001331 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001332}
1333
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001334static int __send_changing_extent_only(struct clone_info *ci,
1335 get_num_bios_fn get_num_bios,
1336 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001337{
1338 struct dm_target *ti;
Mike Snitzera79245b2010-08-12 04:14:24 +01001339 sector_t len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001340 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001341
Mike Snitzera79245b2010-08-12 04:14:24 +01001342 do {
1343 ti = dm_table_find_target(ci->map, ci->sector);
1344 if (!dm_target_is_valid(ti))
1345 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001346
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001347 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001348 * Even though the device advertised support for this type of
1349 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001350 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001351 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001352 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001353 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1354 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001355 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001356
Mike Snitzer23508a92012-12-21 20:23:37 +00001357 if (is_split_required && !is_split_required(ti))
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001358 len = min(ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
1359 else
1360 len = min(ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001361
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001362 __send_duplicate_bios(ci, ti, num_bios, len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001363
1364 ci->sector += len;
1365 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001366
1367 return 0;
1368}
1369
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001370static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001371{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001372 return __send_changing_extent_only(ci, get_num_discard_bios,
1373 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001374}
1375
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001376static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001377{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001378 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001379}
1380
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001381/*
1382 * Find maximum number of sectors / bvecs we can process with a single bio.
1383 */
1384static sector_t __len_within_target(struct clone_info *ci, sector_t max, int *idx)
1385{
1386 struct bio *bio = ci->bio;
1387 sector_t bv_len, total_len = 0;
1388
1389 for (*idx = ci->idx; max && (*idx < bio->bi_vcnt); (*idx)++) {
1390 bv_len = to_sector(bio->bi_io_vec[*idx].bv_len);
1391
1392 if (bv_len > max)
1393 break;
1394
1395 max -= bv_len;
1396 total_len += bv_len;
1397 }
1398
1399 return total_len;
1400}
1401
1402static int __split_bvec_across_targets(struct clone_info *ci,
1403 struct dm_target *ti, sector_t max)
1404{
1405 struct bio *bio = ci->bio;
1406 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
1407 sector_t remaining = to_sector(bv->bv_len);
1408 unsigned offset = 0;
1409 sector_t len;
1410
1411 do {
1412 if (offset) {
1413 ti = dm_table_find_target(ci->map, ci->sector);
1414 if (!dm_target_is_valid(ti))
1415 return -EIO;
1416
1417 max = max_io_len(ci->sector, ti);
1418 }
1419
1420 len = min(remaining, max);
1421
1422 __clone_and_map_data_bio(ci, ti, ci->sector, 1, ci->idx, 0,
1423 bv->bv_offset + offset, len, 1);
1424
1425 ci->sector += len;
1426 ci->sector_count -= len;
1427 offset += to_bytes(len);
1428 } while (remaining -= len);
1429
1430 ci->idx++;
1431
1432 return 0;
1433}
1434
1435/*
1436 * Select the correct strategy for processing a non-flush bio.
1437 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001438static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Mikulas Patockadba14162012-10-12 21:02:15 +01001440 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001441 struct dm_target *ti;
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001442 sector_t len, max;
1443 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001445 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001446 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001447 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001448 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001449
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001450 ti = dm_table_find_target(ci->map, ci->sector);
1451 if (!dm_target_is_valid(ti))
1452 return -EIO;
1453
Mike Snitzer56a67df2010-08-12 04:14:10 +01001454 max = max_io_len(ci->sector, ti);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001455
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001456 /*
1457 * Optimise for the simple case where we can do all of
1458 * the remaining io with a single clone.
1459 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (ci->sector_count <= max) {
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001461 __clone_and_map_data_bio(ci, ti, ci->sector, bio->bi_max_vecs,
1462 ci->idx, bio->bi_vcnt - ci->idx, 0,
1463 ci->sector_count, 0);
1464 ci->sector_count = 0;
1465 return 0;
1466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001468 /*
1469 * There are some bvecs that don't span targets.
1470 * Do as many of these as possible.
1471 */
1472 if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1473 len = __len_within_target(ci, max, &idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001475 __clone_and_map_data_bio(ci, ti, ci->sector, bio->bi_max_vecs,
1476 ci->idx, idx - ci->idx, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 ci->sector += len;
1479 ci->sector_count -= len;
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001480 ci->idx = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001484
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001485 /*
1486 * Handle a bvec that must be split between two or more targets.
1487 */
1488 return __split_bvec_across_targets(ci, ti, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
1491/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001492 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001494static void __split_and_process_bio(struct mapped_device *md,
1495 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
1497 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001498 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001500 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001501 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001502 return;
1503 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001504
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001505 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 ci.io = alloc_io(md);
1508 ci.io->error = 0;
1509 atomic_set(&ci.io->io_count, 1);
1510 ci.io->bio = bio;
1511 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001512 spin_lock_init(&ci.io->endio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 ci.sector = bio->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 ci.idx = bio->bi_idx;
1515
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001516 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001517
Mike Snitzerb372d362010-09-08 18:07:01 +02001518 if (bio->bi_rw & REQ_FLUSH) {
1519 ci.bio = &ci.md->flush_bio;
1520 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001521 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001522 /* dec_pending submits any data associated with flush */
1523 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001524 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001525 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001526 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001527 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001531 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533/*-----------------------------------------------------------------
1534 * CRUD END
1535 *---------------------------------------------------------------*/
1536
Milan Brozf6fccb12008-07-21 12:00:37 +01001537static int dm_merge_bvec(struct request_queue *q,
1538 struct bvec_merge_data *bvm,
1539 struct bio_vec *biovec)
1540{
1541 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001542 struct dm_table *map = dm_get_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001543 struct dm_target *ti;
1544 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001545 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001546
1547 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001548 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001549
1550 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001551 if (!dm_target_is_valid(ti))
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001552 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001553
1554 /*
1555 * Find maximum amount of I/O that won't need splitting
1556 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001557 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Milan Brozf6fccb12008-07-21 12:00:37 +01001558 (sector_t) BIO_MAX_SECTORS);
1559 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1560 if (max_size < 0)
1561 max_size = 0;
1562
1563 /*
1564 * merge_bvec_fn() returns number of bytes
1565 * it can accept at this offset
1566 * max is precomputed maximal io size
1567 */
1568 if (max_size && ti->type->merge)
1569 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001570 /*
1571 * If the target doesn't support merge method and some of the devices
1572 * provided their merge_bvec method (we know this by looking at
1573 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1574 * entries. So always set max_size to 0, and the code below allows
1575 * just one page.
1576 */
1577 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1578
1579 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001580
Mikulas Patocka50371082008-10-01 14:39:17 +01001581out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001582 dm_put_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001583 /*
1584 * Always allow an entire first page
1585 */
1586 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1587 max_size = biovec->bv_len;
1588
Milan Brozf6fccb12008-07-21 12:00:37 +01001589 return max_size;
1590}
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592/*
1593 * The request function that just remaps the bio built up by
1594 * dm_merge_bvec.
1595 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001596static void _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
Kevin Corry12f03a42006-02-01 03:04:52 -08001598 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +09001600 int cpu;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001601 int srcu_idx;
1602 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001604 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Tejun Heo074a7ac2008-08-25 19:56:14 +09001606 cpu = part_stat_lock();
1607 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1608 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1609 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001610
Tejun Heo6a8736d2010-09-08 18:07:00 +02001611 /* if we're suspended, we have to queue this io for later */
1612 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001613 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Tejun Heo6a8736d2010-09-08 18:07:00 +02001615 if (bio_rw(bio) != READA)
1616 queue_io(md, bio);
1617 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001618 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001619 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
1621
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001622 __split_and_process_bio(md, map, bio);
1623 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001624 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001625}
1626
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001627int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001628{
1629 return blk_queue_stackable(md->queue);
1630}
1631
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001632static void dm_request(struct request_queue *q, struct bio *bio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001633{
1634 struct mapped_device *md = q->queuedata;
1635
1636 if (dm_request_based(md))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001637 blk_queue_bio(q, bio);
1638 else
1639 _dm_request(q, bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001640}
1641
1642void dm_dispatch_request(struct request *rq)
1643{
1644 int r;
1645
1646 if (blk_queue_io_stat(rq->q))
1647 rq->cmd_flags |= REQ_IO_STAT;
1648
1649 rq->start_time = jiffies;
1650 r = blk_insert_cloned_request(rq->q, rq);
1651 if (r)
1652 dm_complete_request(rq, r);
1653}
1654EXPORT_SYMBOL_GPL(dm_dispatch_request);
1655
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001656static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1657 void *data)
1658{
1659 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001660 struct dm_rq_clone_bio_info *info =
1661 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001662
1663 info->orig = bio_orig;
1664 info->tio = tio;
1665 bio->bi_end_io = end_clone_bio;
1666 bio->bi_private = info;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001667
1668 return 0;
1669}
1670
1671static int setup_clone(struct request *clone, struct request *rq,
1672 struct dm_rq_target_io *tio)
1673{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001674 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001675
Tejun Heo29e40132010-09-08 18:07:00 +02001676 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1677 dm_rq_bio_constructor, tio);
1678 if (r)
1679 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001680
Tejun Heo29e40132010-09-08 18:07:00 +02001681 clone->cmd = rq->cmd;
1682 clone->cmd_len = rq->cmd_len;
1683 clone->sense = rq->sense;
1684 clone->buffer = rq->buffer;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001685 clone->end_io = end_clone_request;
1686 clone->end_io_data = tio;
1687
1688 return 0;
1689}
1690
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001691static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1692 gfp_t gfp_mask)
1693{
1694 struct request *clone;
1695 struct dm_rq_target_io *tio;
1696
1697 tio = alloc_rq_tio(md, gfp_mask);
1698 if (!tio)
1699 return NULL;
1700
1701 tio->md = md;
1702 tio->ti = NULL;
1703 tio->orig = rq;
1704 tio->error = 0;
1705 memset(&tio->info, 0, sizeof(tio->info));
1706
1707 clone = &tio->clone;
1708 if (setup_clone(clone, rq, tio)) {
1709 /* -ENOMEM */
1710 free_rq_tio(tio);
1711 return NULL;
1712 }
1713
1714 return clone;
1715}
1716
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001717/*
1718 * Called with the queue lock held.
1719 */
1720static int dm_prep_fn(struct request_queue *q, struct request *rq)
1721{
1722 struct mapped_device *md = q->queuedata;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001723 struct request *clone;
1724
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001725 if (unlikely(rq->special)) {
1726 DMWARN("Already has something in rq->special.");
1727 return BLKPREP_KILL;
1728 }
1729
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001730 clone = clone_rq(rq, md, GFP_ATOMIC);
1731 if (!clone)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001732 return BLKPREP_DEFER;
1733
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001734 rq->special = clone;
1735 rq->cmd_flags |= REQ_DONTPREP;
1736
1737 return BLKPREP_OK;
1738}
1739
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001740/*
1741 * Returns:
1742 * 0 : the request has been processed (not requeued)
1743 * !0 : the request has been requeued
1744 */
1745static int map_request(struct dm_target *ti, struct request *clone,
1746 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001747{
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001748 int r, requeued = 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001749 struct dm_rq_target_io *tio = clone->end_io_data;
1750
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001751 tio->ti = ti;
1752 r = ti->type->map_rq(ti, clone, &tio->info);
1753 switch (r) {
1754 case DM_MAPIO_SUBMITTED:
1755 /* The target has taken the I/O to submit by itself later */
1756 break;
1757 case DM_MAPIO_REMAPPED:
1758 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001759 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1760 blk_rq_pos(tio->orig));
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001761 dm_dispatch_request(clone);
1762 break;
1763 case DM_MAPIO_REQUEUE:
1764 /* The target wants to requeue the I/O */
1765 dm_requeue_unmapped_request(clone);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001766 requeued = 1;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001767 break;
1768 default:
1769 if (r > 0) {
1770 DMWARN("unimplemented target map return value: %d", r);
1771 BUG();
1772 }
1773
1774 /* The target wants to complete the I/O */
1775 dm_kill_unmapped_request(clone, r);
1776 break;
1777 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001778
1779 return requeued;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001780}
1781
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001782static struct request *dm_start_request(struct mapped_device *md, struct request *orig)
1783{
1784 struct request *clone;
1785
1786 blk_start_request(orig);
1787 clone = orig->special;
1788 atomic_inc(&md->pending[rq_data_dir(clone)]);
1789
1790 /*
1791 * Hold the md reference here for the in-flight I/O.
1792 * We can't rely on the reference count by device opener,
1793 * because the device may be closed during the request completion
1794 * when all bios are completed.
1795 * See the comment in rq_completed() too.
1796 */
1797 dm_get(md);
1798
1799 return clone;
1800}
1801
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001802/*
1803 * q->request_fn for request-based dm.
1804 * Called with the queue lock held.
1805 */
1806static void dm_request_fn(struct request_queue *q)
1807{
1808 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001809 int srcu_idx;
1810 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001811 struct dm_target *ti;
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001812 struct request *rq, *clone;
Tejun Heo29e40132010-09-08 18:07:00 +02001813 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001814
1815 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001816 * For suspend, check blk_queue_stopped() and increment
1817 * ->pending within a single queue_lock not to increment the
1818 * number of in-flight I/Os after the queue is stopped in
1819 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001820 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001821 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001822 rq = blk_peek_request(q);
1823 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001824 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001825
Tejun Heo29e40132010-09-08 18:07:00 +02001826 /* always use block 0 to find the target for flushes for now */
1827 pos = 0;
1828 if (!(rq->cmd_flags & REQ_FLUSH))
1829 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001830
Tejun Heo29e40132010-09-08 18:07:00 +02001831 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001832 if (!dm_target_is_valid(ti)) {
1833 /*
1834 * Must perform setup, that dm_done() requires,
1835 * before calling dm_kill_unmapped_request
1836 */
1837 DMERR_LIMIT("request attempted access beyond the end of device");
1838 clone = dm_start_request(md, rq);
1839 dm_kill_unmapped_request(clone, -EIO);
1840 continue;
1841 }
Tejun Heo29e40132010-09-08 18:07:00 +02001842
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001843 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001844 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001845
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001846 clone = dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001847
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001848 spin_unlock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001849 if (map_request(ti, clone, md))
1850 goto requeued;
1851
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001852 BUG_ON(!irqs_disabled());
1853 spin_lock(q->queue_lock);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001854 }
1855
1856 goto out;
1857
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001858requeued:
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001859 BUG_ON(!irqs_disabled());
1860 spin_lock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001861
Jens Axboe7eaceac2011-03-10 08:52:07 +01001862delay_and_out:
1863 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001864out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001865 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001866}
1867
1868int dm_underlying_device_busy(struct request_queue *q)
1869{
1870 return blk_lld_busy(q);
1871}
1872EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1873
1874static int dm_lld_busy(struct request_queue *q)
1875{
1876 int r;
1877 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001878 struct dm_table *map = dm_get_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001879
1880 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1881 r = 1;
1882 else
1883 r = dm_table_any_busy_target(map);
1884
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001885 dm_put_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001886
1887 return r;
1888}
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890static int dm_any_congested(void *congested_data, int bdi_bits)
1891{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001892 int r = bdi_bits;
1893 struct mapped_device *md = congested_data;
1894 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001896 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001897 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001898 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001899 /*
1900 * Request-based dm cares about only own queue for
1901 * the query about congestion status of request_queue
1902 */
1903 if (dm_request_based(md))
1904 r = md->queue->backing_dev_info.state &
1905 bdi_bits;
1906 else
1907 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001908 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001909 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001910 }
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return r;
1913}
1914
1915/*-----------------------------------------------------------------
1916 * An IDR is used to keep track of allocated minor numbers.
1917 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001918static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001920 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001922 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
1925/*
1926 * See if the device with a specific minor # is free.
1927 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001928static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001930 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 if (minor >= (1 << MINORBITS))
1933 return -EINVAL;
1934
Tejun Heoc9d76be2013-02-27 17:04:26 -08001935 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001936 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Tejun Heoc9d76be2013-02-27 17:04:26 -08001938 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001940 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001941 idr_preload_end();
1942 if (r < 0)
1943 return r == -ENOSPC ? -EBUSY : r;
1944 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
1946
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001947static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001949 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Tejun Heoc9d76be2013-02-27 17:04:26 -08001951 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001952 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Tejun Heoc9d76be2013-02-27 17:04:26 -08001954 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001956 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001957 idr_preload_end();
1958 if (r < 0)
1959 return r;
1960 *minor = r;
1961 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962}
1963
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001964static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Mikulas Patocka53d59142009-04-02 19:55:37 +01001966static void dm_wq_work(struct work_struct *work);
1967
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001968static void dm_init_md_queue(struct mapped_device *md)
1969{
1970 /*
1971 * Request-based dm devices cannot be stacked on top of bio-based dm
1972 * devices. The type of this dm device has not been decided yet.
1973 * The type is decided at the first table loading time.
1974 * To prevent problematic device stacking, clear the queue flag
1975 * for request stacking support until then.
1976 *
1977 * This queue is new, so no concurrency on the queue_flags.
1978 */
1979 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1980
1981 md->queue->queuedata = md;
1982 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1983 md->queue->backing_dev_info.congested_data = md;
1984 blk_queue_make_request(md->queue, dm_request);
1985 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001986 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
1987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989/*
1990 * Allocate and initialise a blank device with a given minor.
1991 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001992static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001995 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001996 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 if (!md) {
1999 DMWARN("unable to allocate device, out of memory.");
2000 return NULL;
2001 }
2002
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002003 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002004 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002007 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002008 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002009 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002010 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002012 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002014 r = init_srcu_struct(&md->io_barrier);
2015 if (r < 0)
2016 goto bad_io_barrier;
2017
Mike Snitzera5664da2010-08-12 04:14:01 +01002018 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002019 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002020 mutex_init(&md->type_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002021 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002023 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002025 atomic_set(&md->uevent_seq, 0);
2026 INIT_LIST_HEAD(&md->uevent_list);
2027 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002029 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002031 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002033 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 md->disk = alloc_disk(1);
2036 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002037 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002039 atomic_set(&md->pending[0], 0);
2040 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002041 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002042 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002043 init_waitqueue_head(&md->eventq);
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 md->disk->major = _major;
2046 md->disk->first_minor = minor;
2047 md->disk->fops = &dm_blk_dops;
2048 md->disk->queue = md->queue;
2049 md->disk->private_data = md;
2050 sprintf(md->disk->disk_name, "dm-%d", minor);
2051 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002052 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Tejun Heo670368a2013-07-30 08:40:21 -04002054 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002055 if (!md->wq)
2056 goto bad_thread;
2057
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002058 md->bdev = bdget_disk(md->disk, 0);
2059 if (!md->bdev)
2060 goto bad_bdev;
2061
Tejun Heo6a8736d2010-09-08 18:07:00 +02002062 bio_init(&md->flush_bio);
2063 md->flush_bio.bi_bdev = md->bdev;
2064 md->flush_bio.bi_rw = WRITE_FLUSH;
2065
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002066 dm_stats_init(&md->stats);
2067
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002068 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002069 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002070 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002071 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002072
2073 BUG_ON(old_md != MINOR_ALLOCED);
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return md;
2076
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002077bad_bdev:
2078 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00002079bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01002080 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00002081 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002082bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05002083 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002084bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002085 cleanup_srcu_struct(&md->io_barrier);
2086bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002088bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002089 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002090bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 kfree(md);
2092 return NULL;
2093}
2094
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002095static void unlock_fs(struct mapped_device *md);
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097static void free_dev(struct mapped_device *md)
2098{
Tejun Heof331c022008-09-03 09:01:48 +02002099 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002100
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002101 unlock_fs(md);
2102 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00002103 destroy_workqueue(md->wq);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002104 if (md->io_pool)
2105 mempool_destroy(md->io_pool);
2106 if (md->bs)
2107 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01002108 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 del_gendisk(md->disk);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002110 cleanup_srcu_struct(&md->io_barrier);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002111 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002112
2113 spin_lock(&_minor_lock);
2114 md->disk->private_data = NULL;
2115 spin_unlock(&_minor_lock);
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002118 blk_cleanup_queue(md->queue);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002119 dm_stats_cleanup(&md->stats);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002120 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 kfree(md);
2122}
2123
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002124static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2125{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002126 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002127
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002128 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002129 /* The md already has necessary mempools. */
2130 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2131 /*
2132 * Reload bioset because front_pad may have changed
2133 * because a different table was loaded.
2134 */
2135 bioset_free(md->bs);
2136 md->bs = p->bs;
2137 p->bs = NULL;
2138 } else if (dm_table_get_type(t) == DM_TYPE_REQUEST_BASED) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002139 /*
2140 * There's no need to reload with request-based dm
2141 * because the size of front_pad doesn't change.
2142 * Note for future: If you are to reload bioset,
2143 * prep-ed requests in the queue may refer
2144 * to bio from the old bioset, so you must walk
2145 * through the queue to unprep.
2146 */
2147 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002148 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002149 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002150
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002151 BUG_ON(!p || md->io_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002152
2153 md->io_pool = p->io_pool;
2154 p->io_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002155 md->bs = p->bs;
2156 p->bs = NULL;
2157
2158out:
2159 /* mempool bind completed, now no need any mempools in the table */
2160 dm_table_free_md_mempools(t);
2161}
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163/*
2164 * Bind a table to the device.
2165 */
2166static void event_callback(void *context)
2167{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002168 unsigned long flags;
2169 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 struct mapped_device *md = (struct mapped_device *) context;
2171
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002172 spin_lock_irqsave(&md->uevent_lock, flags);
2173 list_splice_init(&md->uevent_list, &uevents);
2174 spin_unlock_irqrestore(&md->uevent_lock, flags);
2175
Tejun Heoed9e1982008-08-25 19:56:05 +09002176 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 atomic_inc(&md->event_nr);
2179 wake_up(&md->eventq);
2180}
2181
Mike Snitzerc2176492011-01-13 19:53:46 +00002182/*
2183 * Protected by md->suspend_lock obtained by dm_swap_table().
2184 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002185static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002187 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002189 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002192/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002193 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2194 *
2195 * If this function returns 0, then the device is either a non-dm
2196 * device without a merge_bvec_fn, or it is a dm device that is
2197 * able to split any bios it receives that are too big.
2198 */
2199int dm_queue_merge_is_compulsory(struct request_queue *q)
2200{
2201 struct mapped_device *dev_md;
2202
2203 if (!q->merge_bvec_fn)
2204 return 0;
2205
2206 if (q->make_request_fn == dm_request) {
2207 dev_md = q->queuedata;
2208 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2209 return 0;
2210 }
2211
2212 return 1;
2213}
2214
2215static int dm_device_merge_is_compulsory(struct dm_target *ti,
2216 struct dm_dev *dev, sector_t start,
2217 sector_t len, void *data)
2218{
2219 struct block_device *bdev = dev->bdev;
2220 struct request_queue *q = bdev_get_queue(bdev);
2221
2222 return dm_queue_merge_is_compulsory(q);
2223}
2224
2225/*
2226 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2227 * on the properties of the underlying devices.
2228 */
2229static int dm_table_merge_is_optional(struct dm_table *table)
2230{
2231 unsigned i = 0;
2232 struct dm_target *ti;
2233
2234 while (i < dm_table_get_num_targets(table)) {
2235 ti = dm_table_get_target(table, i++);
2236
2237 if (ti->type->iterate_devices &&
2238 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2239 return 0;
2240 }
2241
2242 return 1;
2243}
2244
2245/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002246 * Returns old map, which caller must destroy.
2247 */
2248static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2249 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002251 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002252 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002254 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002257
2258 /*
2259 * Wipe any geometry if the size of the table changed.
2260 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002261 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002262 memset(&md->geometry, 0, sizeof(md->geometry));
2263
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002264 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002266 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002267
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002268 /*
2269 * The queue hasn't been stopped yet, if the old table type wasn't
2270 * for request-based during suspension. So stop it to prevent
2271 * I/O mapping before resume.
2272 * This must be done before setting the queue restrictions,
2273 * because request-based dm may be run just after the setting.
2274 */
2275 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2276 stop_queue(q);
2277
2278 __bind_mempools(md, t);
2279
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002280 merge_is_optional = dm_table_merge_is_optional(t);
2281
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002282 old_map = md->map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002283 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002284 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2285
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002286 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002287 if (merge_is_optional)
2288 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2289 else
2290 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002291 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002292
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002293 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295
Alasdair G Kergona7940152009-12-10 23:52:23 +00002296/*
2297 * Returns unbound table for the caller to free.
2298 */
2299static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300{
2301 struct dm_table *map = md->map;
2302
2303 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002304 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306 dm_table_event_callback(map, NULL, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002307 rcu_assign_pointer(md->map, NULL);
2308 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002309
2310 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311}
2312
2313/*
2314 * Constructor for a new device.
2315 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002316int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
2318 struct mapped_device *md;
2319
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002320 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (!md)
2322 return -ENXIO;
2323
Milan Broz784aae72009-01-06 03:05:12 +00002324 dm_sysfs_init(md);
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *result = md;
2327 return 0;
2328}
2329
Mike Snitzera5664da2010-08-12 04:14:01 +01002330/*
2331 * Functions to manage md->type.
2332 * All are required to hold md->type_lock.
2333 */
2334void dm_lock_md_type(struct mapped_device *md)
2335{
2336 mutex_lock(&md->type_lock);
2337}
2338
2339void dm_unlock_md_type(struct mapped_device *md)
2340{
2341 mutex_unlock(&md->type_lock);
2342}
2343
2344void dm_set_md_type(struct mapped_device *md, unsigned type)
2345{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002346 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002347 md->type = type;
2348}
2349
2350unsigned dm_get_md_type(struct mapped_device *md)
2351{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002352 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002353 return md->type;
2354}
2355
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002356struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2357{
2358 return md->immutable_target_type;
2359}
2360
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002361/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002362 * The queue_limits are only valid as long as you have a reference
2363 * count on 'md'.
2364 */
2365struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2366{
2367 BUG_ON(!atomic_read(&md->holders));
2368 return &md->queue->limits;
2369}
2370EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2371
2372/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002373 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2374 */
2375static int dm_init_request_based_queue(struct mapped_device *md)
2376{
2377 struct request_queue *q = NULL;
2378
2379 if (md->queue->elevator)
2380 return 1;
2381
2382 /* Fully initialize the queue */
2383 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2384 if (!q)
2385 return 0;
2386
2387 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002388 dm_init_md_queue(md);
2389 blk_queue_softirq_done(md->queue, dm_softirq_done);
2390 blk_queue_prep_rq(md->queue, dm_prep_fn);
2391 blk_queue_lld_busy(md->queue, dm_lld_busy);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002392
2393 elv_register_queue(md->queue);
2394
2395 return 1;
2396}
2397
2398/*
2399 * Setup the DM device's queue based on md's type
2400 */
2401int dm_setup_md_queue(struct mapped_device *md)
2402{
2403 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2404 !dm_init_request_based_queue(md)) {
2405 DMWARN("Cannot initialize queue for request-based mapped device");
2406 return -EINVAL;
2407 }
2408
2409 return 0;
2410}
2411
David Teigland637842c2006-01-06 00:20:00 -08002412static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
2414 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 unsigned minor = MINOR(dev);
2416
2417 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2418 return NULL;
2419
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002420 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002423 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002424 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Kiyoshi Uedaabdc5682010-08-12 04:13:54 +01002425 dm_deleting_md(md) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002426 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002427 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002428 goto out;
2429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002431out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002432 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
David Teigland637842c2006-01-06 00:20:00 -08002434 return md;
2435}
2436
David Teiglandd229a952006-01-06 00:20:01 -08002437struct mapped_device *dm_get_md(dev_t dev)
2438{
2439 struct mapped_device *md = dm_find_md(dev);
2440
2441 if (md)
2442 dm_get(md);
2443
2444 return md;
2445}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002446EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002447
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002448void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002449{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002450 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
2452
2453void dm_set_mdptr(struct mapped_device *md, void *ptr)
2454{
2455 md->interface_ptr = ptr;
2456}
2457
2458void dm_get(struct mapped_device *md)
2459{
2460 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002461 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002464const char *dm_device_name(struct mapped_device *md)
2465{
2466 return md->name;
2467}
2468EXPORT_SYMBOL_GPL(dm_device_name);
2469
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002470static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002472 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002473 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002475 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002476
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002477 spin_lock(&_minor_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002478 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002479 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2480 set_bit(DMF_FREEING, &md->flags);
2481 spin_unlock(&_minor_lock);
2482
2483 if (!dm_suspended_md(md)) {
2484 dm_table_presuspend_targets(map);
2485 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002487
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002488 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2489 dm_put_live_table(md, srcu_idx);
2490
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002491 /*
2492 * Rare, but there may be I/O requests still going to complete,
2493 * for example. Wait for all references to disappear.
2494 * No one should increment the reference count of the mapped_device,
2495 * after the mapped_device state becomes DMF_FREEING.
2496 */
2497 if (wait)
2498 while (atomic_read(&md->holders))
2499 msleep(1);
2500 else if (atomic_read(&md->holders))
2501 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2502 dm_device_name(md), atomic_read(&md->holders));
2503
2504 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002505 dm_table_destroy(__unbind(md));
2506 free_dev(md);
2507}
2508
2509void dm_destroy(struct mapped_device *md)
2510{
2511 __dm_destroy(md, true);
2512}
2513
2514void dm_destroy_immediate(struct mapped_device *md)
2515{
2516 __dm_destroy(md, false);
2517}
2518
2519void dm_put(struct mapped_device *md)
2520{
2521 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
Edward Goggin79eb8852007-05-09 02:32:56 -07002523EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Mikulas Patocka401600d2009-04-02 19:55:38 +01002525static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002526{
2527 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002528 DECLARE_WAITQUEUE(wait, current);
2529
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002530 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002531
2532 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002533 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002534
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002535 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002536 break;
2537
Mikulas Patocka401600d2009-04-02 19:55:38 +01002538 if (interruptible == TASK_INTERRUPTIBLE &&
2539 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002540 r = -EINTR;
2541 break;
2542 }
2543
2544 io_schedule();
2545 }
2546 set_current_state(TASK_RUNNING);
2547
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002548 remove_wait_queue(&md->wait, &wait);
2549
Milan Broz46125c12008-02-08 02:10:30 +00002550 return r;
2551}
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553/*
2554 * Process the deferred bios
2555 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002556static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Mikulas Patockaef208582009-04-02 19:55:38 +01002558 struct mapped_device *md = container_of(work, struct mapped_device,
2559 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002560 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002561 int srcu_idx;
2562 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002564 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002565
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002566 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002567 spin_lock_irq(&md->deferred_lock);
2568 c = bio_list_pop(&md->deferred);
2569 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002570
Tejun Heo6a8736d2010-09-08 18:07:00 +02002571 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002572 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002573
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002574 if (dm_request_based(md))
2575 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002576 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002577 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002578 }
Milan Broz73d410c2008-02-08 02:10:25 +00002579
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002580 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002583static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002584{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002585 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2586 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002587 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002588}
2589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002591 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002593struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
Mike Christie87eb5b22013-03-01 22:45:48 +00002595 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002596 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002597 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Daniel Walkere61290a2008-02-08 02:10:08 +00002599 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
2601 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002602 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002603 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Mike Snitzer3ae70652012-09-26 23:45:45 +01002605 /*
2606 * If the new table has no data devices, retain the existing limits.
2607 * This helps multipath with queue_if_no_path if all paths disappear,
2608 * then new I/O is queued based on these limits, and then some paths
2609 * reappear.
2610 */
2611 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002612 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002613 if (live_map)
2614 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002615 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002616 }
2617
Mike Christie87eb5b22013-03-01 22:45:48 +00002618 if (!live_map) {
2619 r = dm_calculate_queue_limits(table, &limits);
2620 if (r) {
2621 map = ERR_PTR(r);
2622 goto out;
2623 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002624 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002625
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002626 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002628out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002629 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002630 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631}
2632
2633/*
2634 * Functions to lock and unlock any filesystem running on the
2635 * device.
2636 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002637static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002639 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
2641 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002642
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002643 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002644 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002645 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002646 md->frozen_sb = NULL;
2647 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002648 }
2649
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002650 set_bit(DMF_FROZEN, &md->flags);
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 return 0;
2653}
2654
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002655static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002657 if (!test_bit(DMF_FROZEN, &md->flags))
2658 return;
2659
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002660 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002662 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
2665/*
2666 * We need to be able to change a mapping table under a mounted
2667 * filesystem. For example we might want to move some data in
2668 * the background. Before the table can be swapped with
2669 * dm_bind_table, dm_suspend must be called to flush any in
2670 * flight bios and ensure that any further io gets deferred.
2671 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002672/*
2673 * Suspend mechanism in request-based dm.
2674 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002675 * 1. Flush all I/Os by lock_fs() if needed.
2676 * 2. Stop dispatching any I/O by stopping the request_queue.
2677 * 3. Wait for all in-flight I/Os to be completed or requeued.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002678 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002679 * To abort suspend, start the request_queue.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002680 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002681int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002683 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00002684 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002685 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002686 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Daniel Walkere61290a2008-02-08 02:10:08 +00002688 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002689
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002690 if (dm_suspended_md(md)) {
Milan Broz73d410c2008-02-08 02:10:25 +00002691 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08002692 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00002693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002695 map = md->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002697 /*
2698 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2699 * This flag is cleared before dm_suspend returns.
2700 */
2701 if (noflush)
2702 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2703
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002704 /* This does not get reverted if there's an error later. */
2705 dm_table_presuspend_targets(map);
2706
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002707 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002708 * Flush I/O to the device.
2709 * Any I/O submitted after lock_fs() may not be flushed.
2710 * noflush takes precedence over do_lockfs.
2711 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002712 */
2713 if (!noflush && do_lockfs) {
2714 r = lock_fs(md);
2715 if (r)
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002716 goto out_unlock;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002720 * Here we must make sure that no processes are submitting requests
2721 * to target drivers i.e. no one may be executing
2722 * __split_and_process_bio. This is called from dm_request and
2723 * dm_wq_work.
2724 *
2725 * To get all processes out of __split_and_process_bio in dm_request,
2726 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002727 * __split_and_process_bio from dm_request and quiesce the thread
2728 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2729 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002731 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002732 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002734 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002735 * Stop md->queue before flushing md->wq in case request-based
2736 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002737 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002738 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002739 stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002740
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002741 flush_workqueue(md->wq);
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002744 * At this point no more requests are entering target request routines.
2745 * We call dm_wait_for_completion to wait for all existing requests
2746 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01002748 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Milan Broz6d6f10d2008-02-08 02:10:22 +00002750 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002751 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002752 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002755 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002756 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002757
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002758 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002759 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002760
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002761 unlock_fs(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002762 goto out_unlock; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002763 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002764
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002765 /*
2766 * If dm_wait_for_completion returned 0, the device is completely
2767 * quiescent now. There is no request-processing activity. All new
2768 * requests are being added to md->deferred list.
2769 */
2770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 set_bit(DMF_SUSPENDED, &md->flags);
2772
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002773 dm_table_postsuspend_targets(map);
2774
Alasdair G Kergond2874832006-11-08 17:44:43 -08002775out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002776 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002777 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778}
2779
2780int dm_resume(struct mapped_device *md)
2781{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002782 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002783 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Daniel Walkere61290a2008-02-08 02:10:08 +00002785 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002786 if (!dm_suspended_md(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002787 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002788
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002789 map = md->map;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002790 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002791 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
Milan Broz8757b772006-10-03 01:15:36 -07002793 r = dm_table_resume_targets(map);
2794 if (r)
2795 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002796
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002797 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002798
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002799 /*
2800 * Flushing deferred I/Os must be done after targets are resumed
2801 * so that mapping of targets can work correctly.
2802 * Request-based dm is queueing the deferred I/Os in its request_queue.
2803 */
2804 if (dm_request_based(md))
2805 start_queue(md->queue);
2806
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002807 unlock_fs(md);
2808
2809 clear_bit(DMF_SUSPENDED, &md->flags);
2810
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002811 r = 0;
2812out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002813 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002814
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002815 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816}
2817
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002818/*
2819 * Internal suspend/resume works like userspace-driven suspend. It waits
2820 * until all bios finish and prevents issuing new bios to the target drivers.
2821 * It may be used only from the kernel.
2822 *
2823 * Internal suspend holds md->suspend_lock, which prevents interaction with
2824 * userspace-driven suspend.
2825 */
2826
2827void dm_internal_suspend(struct mapped_device *md)
2828{
2829 mutex_lock(&md->suspend_lock);
2830 if (dm_suspended_md(md))
2831 return;
2832
2833 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2834 synchronize_srcu(&md->io_barrier);
2835 flush_workqueue(md->wq);
2836 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2837}
2838
2839void dm_internal_resume(struct mapped_device *md)
2840{
2841 if (dm_suspended_md(md))
2842 goto done;
2843
2844 dm_queue_flush(md);
2845
2846done:
2847 mutex_unlock(&md->suspend_lock);
2848}
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850/*-----------------------------------------------------------------
2851 * Event notification.
2852 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002853int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002854 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002855{
Milan Broz60935eb2009-06-22 10:12:30 +01002856 char udev_cookie[DM_COOKIE_LENGTH];
2857 char *envp[] = { udev_cookie, NULL };
2858
2859 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002860 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002861 else {
2862 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2863 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002864 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2865 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002866 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002867}
2868
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002869uint32_t dm_next_uevent_seq(struct mapped_device *md)
2870{
2871 return atomic_add_return(1, &md->uevent_seq);
2872}
2873
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874uint32_t dm_get_event_nr(struct mapped_device *md)
2875{
2876 return atomic_read(&md->event_nr);
2877}
2878
2879int dm_wait_event(struct mapped_device *md, int event_nr)
2880{
2881 return wait_event_interruptible(md->eventq,
2882 (event_nr != atomic_read(&md->event_nr)));
2883}
2884
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002885void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2886{
2887 unsigned long flags;
2888
2889 spin_lock_irqsave(&md->uevent_lock, flags);
2890 list_add(elist, &md->uevent_list);
2891 spin_unlock_irqrestore(&md->uevent_lock, flags);
2892}
2893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894/*
2895 * The gendisk is only valid as long as you have a reference
2896 * count on 'md'.
2897 */
2898struct gendisk *dm_disk(struct mapped_device *md)
2899{
2900 return md->disk;
2901}
2902
Milan Broz784aae72009-01-06 03:05:12 +00002903struct kobject *dm_kobject(struct mapped_device *md)
2904{
2905 return &md->kobj;
2906}
2907
Milan Broz784aae72009-01-06 03:05:12 +00002908struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2909{
2910 struct mapped_device *md;
2911
2912 md = container_of(kobj, struct mapped_device, kobj);
Milan Broz784aae72009-01-06 03:05:12 +00002913
Milan Broz4d89b7b2009-06-22 10:12:11 +01002914 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00002915 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01002916 return NULL;
2917
Milan Broz784aae72009-01-06 03:05:12 +00002918 dm_get(md);
2919 return md;
2920}
2921
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002922int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923{
2924 return test_bit(DMF_SUSPENDED, &md->flags);
2925}
2926
Mikulas Patocka2c140a22013-11-01 18:27:41 -04002927int dm_test_deferred_remove_flag(struct mapped_device *md)
2928{
2929 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2930}
2931
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002932int dm_suspended(struct dm_target *ti)
2933{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002934 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002935}
2936EXPORT_SYMBOL_GPL(dm_suspended);
2937
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002938int dm_noflush_suspending(struct dm_target *ti)
2939{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002940 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002941}
2942EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2943
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002944struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002945{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002946 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
2947 struct kmem_cache *cachep;
2948 unsigned int pool_size;
2949 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002950
2951 if (!pools)
2952 return NULL;
2953
Jun'ichi Nomura23e50832013-03-01 22:45:48 +00002954 if (type == DM_TYPE_BIO_BASED) {
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002955 cachep = _io_cache;
Mike Snitzere8603132013-09-12 18:06:12 -04002956 pool_size = dm_get_reserved_bio_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002957 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
2958 } else if (type == DM_TYPE_REQUEST_BASED) {
2959 cachep = _rq_tio_cache;
Mike Snitzerf4790822013-09-12 18:06:12 -04002960 pool_size = dm_get_reserved_rq_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002961 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
2962 /* per_bio_data_size is not used. See __bind_mempools(). */
2963 WARN_ON(per_bio_data_size != 0);
2964 } else
2965 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002966
Mike Snitzer6cfa5852013-09-12 18:06:11 -04002967 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002968 if (!pools->io_pool)
2969 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002970
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002971 pools->bs = bioset_create(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002972 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002973 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002974
Martin K. Petersena91a2782011-03-17 11:11:05 +01002975 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002976 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002977
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002978 return pools;
2979
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002980out:
2981 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002982
2983 return NULL;
2984}
2985
2986void dm_free_md_mempools(struct dm_md_mempools *pools)
2987{
2988 if (!pools)
2989 return;
2990
2991 if (pools->io_pool)
2992 mempool_destroy(pools->io_pool);
2993
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002994 if (pools->bs)
2995 bioset_free(pools->bs);
2996
2997 kfree(pools);
2998}
2999
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003000static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 .open = dm_blk_open,
3002 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003003 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003004 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 .owner = THIS_MODULE
3006};
3007
3008EXPORT_SYMBOL(dm_get_mapinfo);
3009
3010/*
3011 * module hooks
3012 */
3013module_init(dm_init);
3014module_exit(dm_exit);
3015
3016module_param(major, uint, 0);
3017MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003018
Mike Snitzere8603132013-09-12 18:06:12 -04003019module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3020MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3021
Mike Snitzerf4790822013-09-12 18:06:12 -04003022module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3023MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025MODULE_DESCRIPTION(DM_NAME " driver");
3026MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3027MODULE_LICENSE("GPL");