blob: 0cf68b478878f327598fb756fe2da173d5443468 [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>
17#include <linux/buffer_head.h>
18#include <linux/mempool.h>
19#include <linux/slab.h>
20#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080021#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010022#include <linux/delay.h>
Li Zefan55782132009-06-09 13:43:05 +080023
24#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "core"
27
Milan Broz60935eb2009-06-22 10:12:30 +010028/*
29 * Cookies are numeric values sent with CHANGE and REMOVE
30 * uevents while resuming, removing or renaming the device.
31 */
32#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
33#define DM_COOKIE_LENGTH 24
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static const char *_name = DM_NAME;
36
37static unsigned int major = 0;
38static unsigned int _major = 0;
39
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070040static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000042 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * One of these is allocated per bio.
44 */
45struct dm_io {
46 struct mapped_device *md;
47 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010049 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080050 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010051 spinlock_t endio_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
54/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000055 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * One of these is allocated per target within a bio. Hopefully
57 * this will be simplified out one day.
58 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010059struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 struct dm_io *io;
61 struct dm_target *ti;
62 union map_info info;
63};
64
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000065/*
66 * For request-based dm.
67 * One of these is allocated per request.
68 */
69struct dm_rq_target_io {
70 struct mapped_device *md;
71 struct dm_target *ti;
72 struct request *orig, clone;
73 int error;
74 union map_info info;
75};
76
77/*
78 * For request-based dm.
79 * One of these is allocated per bio.
80 */
81struct dm_rq_clone_bio_info {
82 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010083 struct dm_rq_target_io *tio;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000084};
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086union map_info *dm_get_mapinfo(struct bio *bio)
87{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070088 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010089 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070090 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010093union map_info *dm_get_rq_mapinfo(struct request *rq)
94{
95 if (rq && rq->end_io_data)
96 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
97 return NULL;
98}
99EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
100
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700101#define MINOR_ALLOCED ((void *)-1)
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * Bits for the md->flags field.
105 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100106#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800108#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700109#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700110#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800111#define DMF_NOFLUSH_SUSPENDING 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Milan Broz304f3f62008-02-08 02:11:17 +0000113/*
114 * Work processed by per-device workqueue.
115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700117 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +0000118 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 rwlock_t map_lock;
120 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700121 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 unsigned long flags;
124
Jens Axboe165125e2007-07-24 09:28:11 +0200125 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100126 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100127 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100128 struct mutex type_lock;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800131 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 void *interface_ptr;
134
135 /*
136 * A list of ios that arrived while we were suspended.
137 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200138 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100140 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800141 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100142 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200145 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000146 */
147 struct workqueue_struct *wq;
148
149 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 * The current mapping.
151 */
152 struct dm_table *map;
153
154 /*
155 * io objects are allocated from here.
156 */
157 mempool_t *io_pool;
158 mempool_t *tio_pool;
159
Stefan Bader9faf4002006-10-03 01:15:41 -0700160 struct bio_set *bs;
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /*
163 * Event handling.
164 */
165 atomic_t event_nr;
166 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100167 atomic_t uevent_seq;
168 struct list_head uevent_list;
169 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 /*
172 * freeze/thaw support require holding onto a super block
173 */
174 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100175 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800176
177 /* forced geometry settings */
178 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000179
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100180 /* For saving the address of __make_request for request based dm */
181 make_request_fn *saved_make_request_fn;
182
Milan Broz784aae72009-01-06 03:05:12 +0000183 /* sysfs handle */
184 struct kobject kobj;
Mikulas Patocka52b1fd52009-06-22 10:12:21 +0100185
Tejun Heod87f4c12010-09-03 11:56:19 +0200186 /* zero-length flush that will be cloned and submitted to targets */
187 struct bio flush_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100190/*
191 * For mempools pre-allocation at the table loading time.
192 */
193struct dm_md_mempools {
194 mempool_t *io_pool;
195 mempool_t *tio_pool;
196 struct bio_set *bs;
197};
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800200static struct kmem_cache *_io_cache;
201static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000202static struct kmem_cache *_rq_tio_cache;
203static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static int __init local_init(void)
206{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100207 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100210 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100212 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100215 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100216 if (!_tio_cache)
217 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000219 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
220 if (!_rq_tio_cache)
221 goto out_free_tio_cache;
222
223 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
224 if (!_rq_bio_info_cache)
225 goto out_free_rq_tio_cache;
226
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100227 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100228 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000229 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 _major = major;
232 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100233 if (r < 0)
234 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 if (!_major)
237 _major = r;
238
239 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100240
241out_uevent_exit:
242 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000243out_free_rq_bio_info_cache:
244 kmem_cache_destroy(_rq_bio_info_cache);
245out_free_rq_tio_cache:
246 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100247out_free_tio_cache:
248 kmem_cache_destroy(_tio_cache);
249out_free_io_cache:
250 kmem_cache_destroy(_io_cache);
251
252 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255static void local_exit(void)
256{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000257 kmem_cache_destroy(_rq_bio_info_cache);
258 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 kmem_cache_destroy(_tio_cache);
260 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700261 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100262 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 _major = 0;
265
266 DMINFO("cleaned up");
267}
268
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000269static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 local_init,
271 dm_target_init,
272 dm_linear_init,
273 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000274 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100275 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 dm_interface_init,
277};
278
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000279static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 local_exit,
281 dm_target_exit,
282 dm_linear_exit,
283 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000284 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100285 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 dm_interface_exit,
287};
288
289static int __init dm_init(void)
290{
291 const int count = ARRAY_SIZE(_inits);
292
293 int r, i;
294
295 for (i = 0; i < count; i++) {
296 r = _inits[i]();
297 if (r)
298 goto bad;
299 }
300
301 return 0;
302
303 bad:
304 while (i--)
305 _exits[i]();
306
307 return r;
308}
309
310static void __exit dm_exit(void)
311{
312 int i = ARRAY_SIZE(_exits);
313
314 while (i--)
315 _exits[i]();
316}
317
318/*
319 * Block device functions
320 */
Mike Anderson432a2122009-12-10 23:52:20 +0000321int dm_deleting_md(struct mapped_device *md)
322{
323 return test_bit(DMF_DELETING, &md->flags);
324}
325
Al Virofe5f9f22008-03-02 10:29:31 -0500326static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct mapped_device *md;
329
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700330 spin_lock(&_minor_lock);
331
Al Virofe5f9f22008-03-02 10:29:31 -0500332 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700333 if (!md)
334 goto out;
335
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700336 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000337 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700338 md = NULL;
339 goto out;
340 }
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700343 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700344
345out:
346 spin_unlock(&_minor_lock);
347
348 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Al Virofe5f9f22008-03-02 10:29:31 -0500351static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Al Virofe5f9f22008-03-02 10:29:31 -0500353 struct mapped_device *md = disk->private_data;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200354
Milan Broz4a1aeb92011-01-13 19:59:48 +0000355 spin_lock(&_minor_lock);
356
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700357 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 dm_put(md);
Milan Broz4a1aeb92011-01-13 19:59:48 +0000359
360 spin_unlock(&_minor_lock);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return 0;
363}
364
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700365int dm_open_count(struct mapped_device *md)
366{
367 return atomic_read(&md->open_count);
368}
369
370/*
371 * Guarantees nothing is using the device before it's deleted.
372 */
373int dm_lock_for_deletion(struct mapped_device *md)
374{
375 int r = 0;
376
377 spin_lock(&_minor_lock);
378
379 if (dm_open_count(md))
380 r = -EBUSY;
381 else
382 set_bit(DMF_DELETING, &md->flags);
383
384 spin_unlock(&_minor_lock);
385
386 return r;
387}
388
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800389static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
390{
391 struct mapped_device *md = bdev->bd_disk->private_data;
392
393 return dm_get_geometry(md, geo);
394}
395
Al Virofe5f9f22008-03-02 10:29:31 -0500396static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700397 unsigned int cmd, unsigned long arg)
398{
Al Virofe5f9f22008-03-02 10:29:31 -0500399 struct mapped_device *md = bdev->bd_disk->private_data;
Alasdair G Kergon7c666412009-12-10 23:52:19 +0000400 struct dm_table *map = dm_get_live_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700401 struct dm_target *tgt;
402 int r = -ENOTTY;
403
Milan Brozaa129a22006-10-03 01:15:15 -0700404 if (!map || !dm_table_get_size(map))
405 goto out;
406
407 /* We only support devices that have a single target */
408 if (dm_table_get_num_targets(map) != 1)
409 goto out;
410
411 tgt = dm_table_get_target(map, 0);
412
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000413 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700414 r = -EAGAIN;
415 goto out;
416 }
417
418 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400419 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700420
421out:
422 dm_table_put(map);
423
Milan Brozaa129a22006-10-03 01:15:15 -0700424 return r;
425}
426
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100427static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 return mempool_alloc(md->io_pool, GFP_NOIO);
430}
431
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100432static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 mempool_free(io, md->io_pool);
435}
436
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100437static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 mempool_free(tio, md->tio_pool);
440}
441
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000442static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
443 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100444{
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000445 return mempool_alloc(md->tio_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100446}
447
448static void free_rq_tio(struct dm_rq_target_io *tio)
449{
450 mempool_free(tio, tio->md->tio_pool);
451}
452
453static struct dm_rq_clone_bio_info *alloc_bio_info(struct mapped_device *md)
454{
455 return mempool_alloc(md->io_pool, GFP_ATOMIC);
456}
457
458static void free_bio_info(struct dm_rq_clone_bio_info *info)
459{
460 mempool_free(info, info->tio->md->io_pool);
461}
462
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000463static int md_in_flight(struct mapped_device *md)
464{
465 return atomic_read(&md->pending[READ]) +
466 atomic_read(&md->pending[WRITE]);
467}
468
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800469static void start_io_acct(struct dm_io *io)
470{
471 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900472 int cpu;
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200473 int rw = bio_data_dir(io->bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800474
475 io->start_time = jiffies;
476
Tejun Heo074a7ac2008-08-25 19:56:14 +0900477 cpu = part_stat_lock();
478 part_round_stats(cpu, &dm_disk(md)->part0);
479 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100480 atomic_set(&dm_disk(md)->part0.in_flight[rw],
481 atomic_inc_return(&md->pending[rw]));
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800482}
483
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000484static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800485{
486 struct mapped_device *md = io->md;
487 struct bio *bio = io->bio;
488 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900489 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800490 int rw = bio_data_dir(bio);
491
Tejun Heo074a7ac2008-08-25 19:56:14 +0900492 cpu = part_stat_lock();
493 part_round_stats(cpu, &dm_disk(md)->part0);
494 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
495 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800496
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100497 /*
498 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200499 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100500 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100501 pending = atomic_dec_return(&md->pending[rw]);
502 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200503 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800504
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000505 /* nudge anyone waiting on suspend queue */
506 if (!pending)
507 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
511 * Add the bio to the list of deferred io.
512 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100513static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200515 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200517 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200519 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200520 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
523/*
524 * Everyone (including functions in this file), should use this
525 * function to access the md->map field, and make sure they call
526 * dm_table_put() when finished.
527 */
Alasdair G Kergon7c666412009-12-10 23:52:19 +0000528struct dm_table *dm_get_live_table(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 struct dm_table *t;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100531 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100533 read_lock_irqsave(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 t = md->map;
535 if (t)
536 dm_table_get(t);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100537 read_unlock_irqrestore(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 return t;
540}
541
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800542/*
543 * Get the geometry associated with a dm device
544 */
545int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
546{
547 *geo = md->geometry;
548
549 return 0;
550}
551
552/*
553 * Set the geometry of a device.
554 */
555int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
556{
557 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
558
559 if (geo->start > sz) {
560 DMWARN("Start sector is beyond the geometry limits.");
561 return -EINVAL;
562 }
563
564 md->geometry = *geo;
565
566 return 0;
567}
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569/*-----------------------------------------------------------------
570 * CRUD START:
571 * A more elegant soln is in the works that uses the queue
572 * merge fn, unfortunately there are a couple of changes to
573 * the block layer that I want to make for this. So in the
574 * interests of getting something for people to use I give
575 * you this clearly demarcated crap.
576 *---------------------------------------------------------------*/
577
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800578static int __noflush_suspending(struct mapped_device *md)
579{
580 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583/*
584 * Decrements the number of outstanding ios that a bio has been
585 * cloned into, completing the original io if necc.
586 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800587static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800589 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000590 int io_error;
591 struct bio *bio;
592 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800593
594 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100595 if (unlikely(error)) {
596 spin_lock_irqsave(&io->endio_lock, flags);
597 if (!(io->error > 0 && __noflush_suspending(md)))
598 io->error = error;
599 spin_unlock_irqrestore(&io->endio_lock, flags);
600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800603 if (io->error == DM_ENDIO_REQUEUE) {
604 /*
605 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800606 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100607 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200608 if (__noflush_suspending(md))
609 bio_list_add_head(&md->deferred, io->bio);
610 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800611 /* noflush suspend was interrupted. */
612 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100613 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800614 }
615
Milan Brozb35f8ca2009-03-16 17:44:36 +0000616 io_error = io->error;
617 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200618 end_io_acct(io);
619 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100620
Tejun Heo6a8736d2010-09-08 18:07:00 +0200621 if (io_error == DM_ENDIO_REQUEUE)
622 return;
623
Mike Snitzerb372d362010-09-08 18:07:01 +0200624 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100625 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200626 * Preflush done for flush with data, reissue
627 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100628 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200629 bio->bi_rw &= ~REQ_FLUSH;
630 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100631 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200632 /* done with normal IO or empty flush */
Jeff Moyerb7908c12011-01-06 20:41:42 +0100633 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200634 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637}
638
NeilBrown6712ecf2007-09-27 12:47:43 +0200639static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100642 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000643 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700644 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 dm_endio_fn endio = tio->ti->type->end_io;
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
648 error = -EIO;
649
650 if (endio) {
651 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800652 if (r < 0 || r == DM_ENDIO_REQUEUE)
653 /*
654 * error and requeue request are handled
655 * in dec_pending().
656 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800658 else if (r == DM_ENDIO_INCOMPLETE)
659 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200660 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800661 else if (r) {
662 DMWARN("unimplemented target endio return value: %d", r);
663 BUG();
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
Stefan Bader9faf4002006-10-03 01:15:41 -0700667 /*
668 * Store md for cleanup instead of tio which is about to get freed.
669 */
670 bio->bi_private = md->bs;
671
Stefan Bader9faf4002006-10-03 01:15:41 -0700672 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000673 bio_put(bio);
674 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100677/*
678 * Partial completion handling for request-based dm
679 */
680static void end_clone_bio(struct bio *clone, int error)
681{
682 struct dm_rq_clone_bio_info *info = clone->bi_private;
683 struct dm_rq_target_io *tio = info->tio;
684 struct bio *bio = info->orig;
685 unsigned int nr_bytes = info->orig->bi_size;
686
687 bio_put(clone);
688
689 if (tio->error)
690 /*
691 * An error has already been detected on the request.
692 * Once error occurred, just let clone->end_io() handle
693 * the remainder.
694 */
695 return;
696 else if (error) {
697 /*
698 * Don't notice the error to the upper layer yet.
699 * The error handling decision is made by the target driver,
700 * when the request is completed.
701 */
702 tio->error = error;
703 return;
704 }
705
706 /*
707 * I/O for the bio successfully completed.
708 * Notice the data completion to the upper layer.
709 */
710
711 /*
712 * bios are processed from the head of the list.
713 * So the completing bio should always be rq->bio.
714 * If it's not, something wrong is happening.
715 */
716 if (tio->orig->bio != bio)
717 DMERR("bio completion is going in the middle of the request");
718
719 /*
720 * Update the original request.
721 * Do not use blk_end_request() here, because it may complete
722 * the original request before the clone, and break the ordering.
723 */
724 blk_update_request(tio->orig, 0, nr_bytes);
725}
726
727/*
728 * Don't touch any member of the md after calling this function because
729 * the md may be freed in dm_put() at the end of this function.
730 * Or do dm_get() before calling this function and dm_put() later.
731 */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000732static void rq_completed(struct mapped_device *md, int rw, int run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100733{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000734 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100735
736 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000737 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100738 wake_up(&md->wait);
739
740 if (run_queue)
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000741 blk_run_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100742
743 /*
744 * dm_put() must be at the end of this function. See the comment above
745 */
746 dm_put(md);
747}
748
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100749static void free_rq_clone(struct request *clone)
750{
751 struct dm_rq_target_io *tio = clone->end_io_data;
752
753 blk_rq_unprep_clone(clone);
754 free_rq_tio(tio);
755}
756
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000757/*
758 * Complete the clone and the original request.
759 * Must be called without queue lock.
760 */
761static void dm_end_request(struct request *clone, int error)
762{
763 int rw = rq_data_dir(clone);
764 struct dm_rq_target_io *tio = clone->end_io_data;
765 struct mapped_device *md = tio->md;
766 struct request *rq = tio->orig;
767
Tejun Heo29e40132010-09-08 18:07:00 +0200768 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000769 rq->errors = clone->errors;
770 rq->resid_len = clone->resid_len;
771
772 if (rq->sense)
773 /*
774 * We are using the sense buffer of the original
775 * request.
776 * So setting the length of the sense data is enough.
777 */
778 rq->sense_len = clone->sense_len;
779 }
780
781 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +0200782 blk_end_request_all(rq, error);
783 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000784}
785
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100786static void dm_unprep_request(struct request *rq)
787{
788 struct request *clone = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100789
790 rq->special = NULL;
791 rq->cmd_flags &= ~REQ_DONTPREP;
792
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100793 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100794}
795
796/*
797 * Requeue the original request of a clone.
798 */
799void dm_requeue_unmapped_request(struct request *clone)
800{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000801 int rw = rq_data_dir(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100802 struct dm_rq_target_io *tio = clone->end_io_data;
803 struct mapped_device *md = tio->md;
804 struct request *rq = tio->orig;
805 struct request_queue *q = rq->q;
806 unsigned long flags;
807
808 dm_unprep_request(rq);
809
810 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100811 blk_requeue_request(q, rq);
812 spin_unlock_irqrestore(q->queue_lock, flags);
813
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000814 rq_completed(md, rw, 0);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100815}
816EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
817
818static void __stop_queue(struct request_queue *q)
819{
820 blk_stop_queue(q);
821}
822
823static void stop_queue(struct request_queue *q)
824{
825 unsigned long flags;
826
827 spin_lock_irqsave(q->queue_lock, flags);
828 __stop_queue(q);
829 spin_unlock_irqrestore(q->queue_lock, flags);
830}
831
832static void __start_queue(struct request_queue *q)
833{
834 if (blk_queue_stopped(q))
835 blk_start_queue(q);
836}
837
838static void start_queue(struct request_queue *q)
839{
840 unsigned long flags;
841
842 spin_lock_irqsave(q->queue_lock, flags);
843 __start_queue(q);
844 spin_unlock_irqrestore(q->queue_lock, flags);
845}
846
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000847static void dm_done(struct request *clone, int error, bool mapped)
848{
849 int r = error;
850 struct dm_rq_target_io *tio = clone->end_io_data;
851 dm_request_endio_fn rq_end_io = tio->ti->type->rq_end_io;
852
853 if (mapped && rq_end_io)
854 r = rq_end_io(tio->ti, clone, error, &tio->info);
855
856 if (r <= 0)
857 /* The target wants to complete the I/O */
858 dm_end_request(clone, r);
859 else if (r == DM_ENDIO_INCOMPLETE)
860 /* The target will handle the I/O */
861 return;
862 else if (r == DM_ENDIO_REQUEUE)
863 /* The target wants to requeue the I/O */
864 dm_requeue_unmapped_request(clone);
865 else {
866 DMWARN("unimplemented target endio return value: %d", r);
867 BUG();
868 }
869}
870
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100871/*
872 * Request completion handler for request-based dm
873 */
874static void dm_softirq_done(struct request *rq)
875{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000876 bool mapped = true;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100877 struct request *clone = rq->completion_data;
878 struct dm_rq_target_io *tio = clone->end_io_data;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100879
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000880 if (rq->cmd_flags & REQ_FAILED)
881 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100882
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000883 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100884}
885
886/*
887 * Complete the clone and the original request with the error status
888 * through softirq context.
889 */
890static void dm_complete_request(struct request *clone, int error)
891{
892 struct dm_rq_target_io *tio = clone->end_io_data;
893 struct request *rq = tio->orig;
894
895 tio->error = error;
896 rq->completion_data = clone;
897 blk_complete_request(rq);
898}
899
900/*
901 * Complete the not-mapped clone and the original request with the error status
902 * through softirq context.
903 * Target's rq_end_io() function isn't called.
904 * This may be used when the target's map_rq() function fails.
905 */
906void dm_kill_unmapped_request(struct request *clone, int error)
907{
908 struct dm_rq_target_io *tio = clone->end_io_data;
909 struct request *rq = tio->orig;
910
911 rq->cmd_flags |= REQ_FAILED;
912 dm_complete_request(clone, error);
913}
914EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
915
916/*
917 * Called with the queue lock held
918 */
919static void end_clone_request(struct request *clone, int error)
920{
921 /*
922 * For just cleaning up the information of the queue in which
923 * the clone was dispatched.
924 * The clone is *NOT* freed actually here because it is alloced from
925 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
926 */
927 __blk_put_request(clone->q, clone);
928
929 /*
930 * Actual request completion is done in a softirq context which doesn't
931 * hold the queue lock. Otherwise, deadlock could occur because:
932 * - another request may be submitted by the upper level driver
933 * of the stacking during the completion
934 * - the submission which requires queue lock may be done
935 * against this queue
936 */
937 dm_complete_request(clone, error);
938}
939
Mike Snitzer56a67df2010-08-12 04:14:10 +0100940/*
941 * Return maximum size of I/O possible at the supplied sector up to the current
942 * target boundary.
943 */
944static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Mike Snitzer56a67df2010-08-12 04:14:10 +0100946 sector_t target_offset = dm_target_offset(ti, sector);
947
948 return ti->len - target_offset;
949}
950
951static sector_t max_io_len(sector_t sector, struct dm_target *ti)
952{
953 sector_t len = max_io_len_target_boundary(sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 /*
956 * Does the target need to split even further ?
957 */
958 if (ti->split_io) {
959 sector_t boundary;
Mike Snitzer56a67df2010-08-12 04:14:10 +0100960 sector_t offset = dm_target_offset(ti, sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
962 - offset;
963 if (len > boundary)
964 len = boundary;
965 }
966
967 return len;
968}
969
970static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100971 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100974 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700975 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 clone->bi_end_io = clone_endio;
978 clone->bi_private = tio;
979
980 /*
981 * Map the clone. If r == 0 we don't need to do
982 * anything, the target has assumed ownership of
983 * this io.
984 */
985 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100986 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800988 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100990
Mike Snitzerd07335e2010-11-16 12:52:38 +0100991 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
992 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800995 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
996 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700997 md = tio->io->md;
998 dec_pending(tio->io, r);
999 /*
1000 * Store bio_set for cleanup.
1001 */
1002 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -07001004 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001005 } else if (r) {
1006 DMWARN("unimplemented target map return value: %d", r);
1007 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009}
1010
1011struct clone_info {
1012 struct mapped_device *md;
1013 struct dm_table *map;
1014 struct bio *bio;
1015 struct dm_io *io;
1016 sector_t sector;
1017 sector_t sector_count;
1018 unsigned short idx;
1019};
1020
Peter Osterlund36763472005-09-06 15:16:42 -07001021static void dm_bio_destructor(struct bio *bio)
1022{
Stefan Bader9faf4002006-10-03 01:15:41 -07001023 struct bio_set *bs = bio->bi_private;
1024
1025 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001026}
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028/*
Tejun Heod87f4c12010-09-03 11:56:19 +02001029 * Creates a little bio that just does part of a bvec.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 */
1031static struct bio *split_bvec(struct bio *bio, sector_t sector,
1032 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -07001033 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 struct bio *clone;
1036 struct bio_vec *bv = bio->bi_io_vec + idx;
1037
Stefan Bader9faf4002006-10-03 01:15:41 -07001038 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001039 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 *clone->bi_io_vec = *bv;
1041
1042 clone->bi_sector = sector;
1043 clone->bi_bdev = bio->bi_bdev;
Tejun Heod87f4c12010-09-03 11:56:19 +02001044 clone->bi_rw = bio->bi_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 clone->bi_vcnt = 1;
1046 clone->bi_size = to_bytes(len);
1047 clone->bi_io_vec->bv_offset = offset;
1048 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +01001049 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Martin K. Petersen9c470082009-04-09 00:27:12 +01001051 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001052 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001053 bio_integrity_trim(clone,
1054 bio_sector_offset(bio, idx, offset), len);
1055 }
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return clone;
1058}
1059
1060/*
1061 * Creates a bio that consists of range of complete bvecs.
1062 */
1063static struct bio *clone_bio(struct bio *bio, sector_t sector,
1064 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -07001065 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 struct bio *clone;
1068
Stefan Bader9faf4002006-10-03 01:15:41 -07001069 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
1070 __bio_clone(clone, bio);
1071 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 clone->bi_sector = sector;
1073 clone->bi_idx = idx;
1074 clone->bi_vcnt = idx + bv_count;
1075 clone->bi_size = to_bytes(len);
1076 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
1077
Martin K. Petersen9c470082009-04-09 00:27:12 +01001078 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001079 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001080
1081 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1082 bio_integrity_trim(clone,
1083 bio_sector_offset(bio, idx, 0), len);
1084 }
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 return clone;
1087}
1088
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001089static struct dm_target_io *alloc_tio(struct clone_info *ci,
1090 struct dm_target *ti)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001091{
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001092 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001093
1094 tio->io = ci->io;
1095 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001096 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001097
1098 return tio;
1099}
1100
Mike Snitzer06a426c2010-08-12 04:14:09 +01001101static void __issue_target_request(struct clone_info *ci, struct dm_target *ti,
Mike Snitzera79245b2010-08-12 04:14:24 +01001102 unsigned request_nr, sector_t len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001103{
1104 struct dm_target_io *tio = alloc_tio(ci, ti);
1105 struct bio *clone;
1106
Mike Snitzer57cba5d2010-08-12 04:14:04 +01001107 tio->info.target_request_nr = request_nr;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001108
Mike Snitzer06a426c2010-08-12 04:14:09 +01001109 /*
1110 * Discard requests require the bio's inline iovecs be initialized.
1111 * ci->bio->bi_max_vecs is BIO_INLINE_VECS anyway, for both flush
1112 * and discard, so no need for concern about wasted bvec allocations.
1113 */
1114 clone = bio_alloc_bioset(GFP_NOIO, ci->bio->bi_max_vecs, ci->md->bs);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001115 __bio_clone(clone, ci->bio);
1116 clone->bi_destructor = dm_bio_destructor;
Mike Snitzera79245b2010-08-12 04:14:24 +01001117 if (len) {
1118 clone->bi_sector = ci->sector;
1119 clone->bi_size = to_bytes(len);
1120 }
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001121
1122 __map_bio(ti, clone, tio);
1123}
1124
Mike Snitzer06a426c2010-08-12 04:14:09 +01001125static void __issue_target_requests(struct clone_info *ci, struct dm_target *ti,
Mike Snitzera79245b2010-08-12 04:14:24 +01001126 unsigned num_requests, sector_t len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001127{
1128 unsigned request_nr;
1129
1130 for (request_nr = 0; request_nr < num_requests; request_nr++)
Mike Snitzera79245b2010-08-12 04:14:24 +01001131 __issue_target_request(ci, ti, request_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001132}
1133
Mike Snitzerb372d362010-09-08 18:07:01 +02001134static int __clone_and_map_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001135{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001136 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001137 struct dm_target *ti;
1138
Mike Snitzerb372d362010-09-08 18:07:01 +02001139 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001140 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mike Snitzera79245b2010-08-12 04:14:24 +01001141 __issue_target_requests(ci, ti, ti->num_flush_requests, 0);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001142
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001143 return 0;
1144}
1145
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001146/*
1147 * Perform all io with a single clone.
1148 */
1149static void __clone_and_map_simple(struct clone_info *ci, struct dm_target *ti)
1150{
1151 struct bio *clone, *bio = ci->bio;
1152 struct dm_target_io *tio;
1153
1154 tio = alloc_tio(ci, ti);
1155 clone = clone_bio(bio, ci->sector, ci->idx,
1156 bio->bi_vcnt - ci->idx, ci->sector_count,
1157 ci->md->bs);
1158 __map_bio(ti, clone, tio);
1159 ci->sector_count = 0;
1160}
1161
1162static int __clone_and_map_discard(struct clone_info *ci)
1163{
1164 struct dm_target *ti;
Mike Snitzera79245b2010-08-12 04:14:24 +01001165 sector_t len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001166
Mike Snitzera79245b2010-08-12 04:14:24 +01001167 do {
1168 ti = dm_table_find_target(ci->map, ci->sector);
1169 if (!dm_target_is_valid(ti))
1170 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001171
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001172 /*
Mike Snitzera79245b2010-08-12 04:14:24 +01001173 * Even though the device advertised discard support,
1174 * reconfiguration might have changed that since the
1175 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001176 */
Mike Snitzera79245b2010-08-12 04:14:24 +01001177 if (!ti->num_discard_requests)
1178 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001179
Mike Snitzera79245b2010-08-12 04:14:24 +01001180 len = min(ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001181
Mike Snitzera79245b2010-08-12 04:14:24 +01001182 __issue_target_requests(ci, ti, ti->num_discard_requests, len);
1183
1184 ci->sector += len;
1185 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001186
1187 return 0;
1188}
1189
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001190static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
1192 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001193 struct dm_target *ti;
1194 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001195 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001197 if (unlikely(bio->bi_rw & REQ_DISCARD))
1198 return __clone_and_map_discard(ci);
1199
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001200 ti = dm_table_find_target(ci->map, ci->sector);
1201 if (!dm_target_is_valid(ti))
1202 return -EIO;
1203
Mike Snitzer56a67df2010-08-12 04:14:10 +01001204 max = max_io_len(ci->sector, ti);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (ci->sector_count <= max) {
1207 /*
1208 * Optimise for the simple case where we can do all of
1209 * the remaining io with a single clone.
1210 */
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001211 __clone_and_map_simple(ci, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1214 /*
1215 * There are some bvecs that don't span targets.
1216 * Do as many of these as possible.
1217 */
1218 int i;
1219 sector_t remaining = max;
1220 sector_t bv_len;
1221
1222 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
1223 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
1224
1225 if (bv_len > remaining)
1226 break;
1227
1228 remaining -= bv_len;
1229 len += bv_len;
1230 }
1231
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001232 tio = alloc_tio(ci, ti);
Stefan Bader9faf4002006-10-03 01:15:41 -07001233 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
1234 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 __map_bio(ti, clone, tio);
1236
1237 ci->sector += len;
1238 ci->sector_count -= len;
1239 ci->idx = i;
1240
1241 } else {
1242 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001243 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 */
1245 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001246 sector_t remaining = to_sector(bv->bv_len);
1247 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001249 do {
1250 if (offset) {
1251 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001252 if (!dm_target_is_valid(ti))
1253 return -EIO;
1254
Mike Snitzer56a67df2010-08-12 04:14:10 +01001255 max = max_io_len(ci->sector, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001258 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001260 tio = alloc_tio(ci, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001261 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -07001262 bv->bv_offset + offset, len,
1263 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001264
1265 __map_bio(ti, clone, tio);
1266
1267 ci->sector += len;
1268 ci->sector_count -= len;
1269 offset += to_bytes(len);
1270 } while (remaining -= len);
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 ci->idx++;
1273 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001274
1275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
1278/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +01001279 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001281static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001284 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001286 ci.map = dm_get_live_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001287 if (unlikely(!ci.map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001288 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001289 return;
1290 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 ci.io = alloc_io(md);
1294 ci.io->error = 0;
1295 atomic_set(&ci.io->io_count, 1);
1296 ci.io->bio = bio;
1297 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001298 spin_lock_init(&ci.io->endio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 ci.sector = bio->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 ci.idx = bio->bi_idx;
1301
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001302 start_io_acct(ci.io);
Mike Snitzerb372d362010-09-08 18:07:01 +02001303 if (bio->bi_rw & REQ_FLUSH) {
1304 ci.bio = &ci.md->flush_bio;
1305 ci.sector_count = 0;
1306 error = __clone_and_map_empty_flush(&ci);
1307 /* dec_pending submits any data associated with flush */
1308 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001309 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001310 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001311 while (ci.sector_count && !error)
Tejun Heod87f4c12010-09-03 11:56:19 +02001312 error = __clone_and_map(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001316 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 dm_table_put(ci.map);
1318}
1319/*-----------------------------------------------------------------
1320 * CRUD END
1321 *---------------------------------------------------------------*/
1322
Milan Brozf6fccb12008-07-21 12:00:37 +01001323static int dm_merge_bvec(struct request_queue *q,
1324 struct bvec_merge_data *bvm,
1325 struct bio_vec *biovec)
1326{
1327 struct mapped_device *md = q->queuedata;
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001328 struct dm_table *map = dm_get_live_table(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001329 struct dm_target *ti;
1330 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001331 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001332
1333 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001334 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001335
1336 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001337 if (!dm_target_is_valid(ti))
1338 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +01001339
1340 /*
1341 * Find maximum amount of I/O that won't need splitting
1342 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001343 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Milan Brozf6fccb12008-07-21 12:00:37 +01001344 (sector_t) BIO_MAX_SECTORS);
1345 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1346 if (max_size < 0)
1347 max_size = 0;
1348
1349 /*
1350 * merge_bvec_fn() returns number of bytes
1351 * it can accept at this offset
1352 * max is precomputed maximal io size
1353 */
1354 if (max_size && ti->type->merge)
1355 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001356 /*
1357 * If the target doesn't support merge method and some of the devices
1358 * provided their merge_bvec method (we know this by looking at
1359 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1360 * entries. So always set max_size to 0, and the code below allows
1361 * just one page.
1362 */
1363 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1364
1365 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001366
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001367out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +01001368 dm_table_put(map);
1369
1370out:
Milan Brozf6fccb12008-07-21 12:00:37 +01001371 /*
1372 * Always allow an entire first page
1373 */
1374 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1375 max_size = biovec->bv_len;
1376
Milan Brozf6fccb12008-07-21 12:00:37 +01001377 return max_size;
1378}
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380/*
1381 * The request function that just remaps the bio built up by
1382 * dm_merge_bvec.
1383 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001384static int _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Kevin Corry12f03a42006-02-01 03:04:52 -08001386 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +09001388 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001390 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Tejun Heo074a7ac2008-08-25 19:56:14 +09001392 cpu = part_stat_lock();
1393 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1394 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1395 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001396
Tejun Heo6a8736d2010-09-08 18:07:00 +02001397 /* if we're suspended, we have to queue this io for later */
1398 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001399 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Tejun Heo6a8736d2010-09-08 18:07:00 +02001401 if (bio_rw(bio) != READA)
1402 queue_io(md, bio);
1403 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001404 bio_io_error(bio);
Mikulas Patocka92c63902009-04-09 00:27:15 +01001405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001408 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001409 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001413static int dm_make_request(struct request_queue *q, struct bio *bio)
1414{
1415 struct mapped_device *md = q->queuedata;
1416
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001417 return md->saved_make_request_fn(q, bio); /* call __make_request() */
1418}
1419
1420static int dm_request_based(struct mapped_device *md)
1421{
1422 return blk_queue_stackable(md->queue);
1423}
1424
1425static int dm_request(struct request_queue *q, struct bio *bio)
1426{
1427 struct mapped_device *md = q->queuedata;
1428
1429 if (dm_request_based(md))
1430 return dm_make_request(q, bio);
1431
1432 return _dm_request(q, bio);
1433}
1434
1435void dm_dispatch_request(struct request *rq)
1436{
1437 int r;
1438
1439 if (blk_queue_io_stat(rq->q))
1440 rq->cmd_flags |= REQ_IO_STAT;
1441
1442 rq->start_time = jiffies;
1443 r = blk_insert_cloned_request(rq->q, rq);
1444 if (r)
1445 dm_complete_request(rq, r);
1446}
1447EXPORT_SYMBOL_GPL(dm_dispatch_request);
1448
1449static void dm_rq_bio_destructor(struct bio *bio)
1450{
1451 struct dm_rq_clone_bio_info *info = bio->bi_private;
1452 struct mapped_device *md = info->tio->md;
1453
1454 free_bio_info(info);
1455 bio_free(bio, md->bs);
1456}
1457
1458static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1459 void *data)
1460{
1461 struct dm_rq_target_io *tio = data;
1462 struct mapped_device *md = tio->md;
1463 struct dm_rq_clone_bio_info *info = alloc_bio_info(md);
1464
1465 if (!info)
1466 return -ENOMEM;
1467
1468 info->orig = bio_orig;
1469 info->tio = tio;
1470 bio->bi_end_io = end_clone_bio;
1471 bio->bi_private = info;
1472 bio->bi_destructor = dm_rq_bio_destructor;
1473
1474 return 0;
1475}
1476
1477static int setup_clone(struct request *clone, struct request *rq,
1478 struct dm_rq_target_io *tio)
1479{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001480 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001481
Tejun Heo29e40132010-09-08 18:07:00 +02001482 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1483 dm_rq_bio_constructor, tio);
1484 if (r)
1485 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001486
Tejun Heo29e40132010-09-08 18:07:00 +02001487 clone->cmd = rq->cmd;
1488 clone->cmd_len = rq->cmd_len;
1489 clone->sense = rq->sense;
1490 clone->buffer = rq->buffer;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001491 clone->end_io = end_clone_request;
1492 clone->end_io_data = tio;
1493
1494 return 0;
1495}
1496
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001497static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1498 gfp_t gfp_mask)
1499{
1500 struct request *clone;
1501 struct dm_rq_target_io *tio;
1502
1503 tio = alloc_rq_tio(md, gfp_mask);
1504 if (!tio)
1505 return NULL;
1506
1507 tio->md = md;
1508 tio->ti = NULL;
1509 tio->orig = rq;
1510 tio->error = 0;
1511 memset(&tio->info, 0, sizeof(tio->info));
1512
1513 clone = &tio->clone;
1514 if (setup_clone(clone, rq, tio)) {
1515 /* -ENOMEM */
1516 free_rq_tio(tio);
1517 return NULL;
1518 }
1519
1520 return clone;
1521}
1522
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001523/*
1524 * Called with the queue lock held.
1525 */
1526static int dm_prep_fn(struct request_queue *q, struct request *rq)
1527{
1528 struct mapped_device *md = q->queuedata;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001529 struct request *clone;
1530
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001531 if (unlikely(rq->special)) {
1532 DMWARN("Already has something in rq->special.");
1533 return BLKPREP_KILL;
1534 }
1535
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001536 clone = clone_rq(rq, md, GFP_ATOMIC);
1537 if (!clone)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001538 return BLKPREP_DEFER;
1539
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001540 rq->special = clone;
1541 rq->cmd_flags |= REQ_DONTPREP;
1542
1543 return BLKPREP_OK;
1544}
1545
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001546/*
1547 * Returns:
1548 * 0 : the request has been processed (not requeued)
1549 * !0 : the request has been requeued
1550 */
1551static int map_request(struct dm_target *ti, struct request *clone,
1552 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001553{
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001554 int r, requeued = 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001555 struct dm_rq_target_io *tio = clone->end_io_data;
1556
1557 /*
1558 * Hold the md reference here for the in-flight I/O.
1559 * We can't rely on the reference count by device opener,
1560 * because the device may be closed during the request completion
1561 * when all bios are completed.
1562 * See the comment in rq_completed() too.
1563 */
1564 dm_get(md);
1565
1566 tio->ti = ti;
1567 r = ti->type->map_rq(ti, clone, &tio->info);
1568 switch (r) {
1569 case DM_MAPIO_SUBMITTED:
1570 /* The target has taken the I/O to submit by itself later */
1571 break;
1572 case DM_MAPIO_REMAPPED:
1573 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001574 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1575 blk_rq_pos(tio->orig));
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001576 dm_dispatch_request(clone);
1577 break;
1578 case DM_MAPIO_REQUEUE:
1579 /* The target wants to requeue the I/O */
1580 dm_requeue_unmapped_request(clone);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001581 requeued = 1;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001582 break;
1583 default:
1584 if (r > 0) {
1585 DMWARN("unimplemented target map return value: %d", r);
1586 BUG();
1587 }
1588
1589 /* The target wants to complete the I/O */
1590 dm_kill_unmapped_request(clone, r);
1591 break;
1592 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001593
1594 return requeued;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001595}
1596
1597/*
1598 * q->request_fn for request-based dm.
1599 * Called with the queue lock held.
1600 */
1601static void dm_request_fn(struct request_queue *q)
1602{
1603 struct mapped_device *md = q->queuedata;
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001604 struct dm_table *map = dm_get_live_table(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001605 struct dm_target *ti;
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001606 struct request *rq, *clone;
Tejun Heo29e40132010-09-08 18:07:00 +02001607 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001608
1609 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001610 * For suspend, check blk_queue_stopped() and increment
1611 * ->pending within a single queue_lock not to increment the
1612 * number of in-flight I/Os after the queue is stopped in
1613 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001614 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001615 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001616 rq = blk_peek_request(q);
1617 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001618 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001619
Tejun Heo29e40132010-09-08 18:07:00 +02001620 /* always use block 0 to find the target for flushes for now */
1621 pos = 0;
1622 if (!(rq->cmd_flags & REQ_FLUSH))
1623 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001624
Tejun Heo29e40132010-09-08 18:07:00 +02001625 ti = dm_table_find_target(map, pos);
1626 BUG_ON(!dm_target_is_valid(ti));
1627
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001628 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001629 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001630
1631 blk_start_request(rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001632 clone = rq->special;
1633 atomic_inc(&md->pending[rq_data_dir(clone)]);
1634
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001635 spin_unlock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001636 if (map_request(ti, clone, md))
1637 goto requeued;
1638
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001639 BUG_ON(!irqs_disabled());
1640 spin_lock(q->queue_lock);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001641 }
1642
1643 goto out;
1644
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001645requeued:
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001646 BUG_ON(!irqs_disabled());
1647 spin_lock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001648
Jens Axboe7eaceac2011-03-10 08:52:07 +01001649delay_and_out:
1650 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001651out:
1652 dm_table_put(map);
1653
1654 return;
1655}
1656
1657int dm_underlying_device_busy(struct request_queue *q)
1658{
1659 return blk_lld_busy(q);
1660}
1661EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1662
1663static int dm_lld_busy(struct request_queue *q)
1664{
1665 int r;
1666 struct mapped_device *md = q->queuedata;
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001667 struct dm_table *map = dm_get_live_table(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001668
1669 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1670 r = 1;
1671 else
1672 r = dm_table_any_busy_target(map);
1673
1674 dm_table_put(map);
1675
1676 return r;
1677}
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679static int dm_any_congested(void *congested_data, int bdi_bits)
1680{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001681 int r = bdi_bits;
1682 struct mapped_device *md = congested_data;
1683 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001685 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001686 map = dm_get_live_table(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001687 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001688 /*
1689 * Request-based dm cares about only own queue for
1690 * the query about congestion status of request_queue
1691 */
1692 if (dm_request_based(md))
1693 r = md->queue->backing_dev_info.state &
1694 bdi_bits;
1695 else
1696 r = dm_table_any_congested(map, bdi_bits);
1697
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001698 dm_table_put(map);
1699 }
1700 }
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return r;
1703}
1704
1705/*-----------------------------------------------------------------
1706 * An IDR is used to keep track of allocated minor numbers.
1707 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708static DEFINE_IDR(_minor_idr);
1709
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001710static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001712 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001714 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717/*
1718 * See if the device with a specific minor # is free.
1719 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001720static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
1722 int r, m;
1723
1724 if (minor >= (1 << MINORBITS))
1725 return -EINVAL;
1726
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001727 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1728 if (!r)
1729 return -ENOMEM;
1730
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001731 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 if (idr_find(&_minor_idr, minor)) {
1734 r = -EBUSY;
1735 goto out;
1736 }
1737
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001738 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001739 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 if (m != minor) {
1743 idr_remove(&_minor_idr, m);
1744 r = -EBUSY;
1745 goto out;
1746 }
1747
1748out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001749 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return r;
1751}
1752
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001753static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001755 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001758 if (!r)
1759 return -ENOMEM;
1760
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001761 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001763 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001764 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 if (m >= (1 << MINORBITS)) {
1768 idr_remove(&_minor_idr, m);
1769 r = -ENOSPC;
1770 goto out;
1771 }
1772
1773 *minor = m;
1774
1775out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001776 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return r;
1778}
1779
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001780static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Mikulas Patocka53d59142009-04-02 19:55:37 +01001782static void dm_wq_work(struct work_struct *work);
1783
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001784static void dm_init_md_queue(struct mapped_device *md)
1785{
1786 /*
1787 * Request-based dm devices cannot be stacked on top of bio-based dm
1788 * devices. The type of this dm device has not been decided yet.
1789 * The type is decided at the first table loading time.
1790 * To prevent problematic device stacking, clear the queue flag
1791 * for request stacking support until then.
1792 *
1793 * This queue is new, so no concurrency on the queue_flags.
1794 */
1795 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1796
1797 md->queue->queuedata = md;
1798 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1799 md->queue->backing_dev_info.congested_data = md;
1800 blk_queue_make_request(md->queue, dm_request);
1801 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001802 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Tejun Heod87f4c12010-09-03 11:56:19 +02001803 blk_queue_flush(md->queue, REQ_FLUSH | REQ_FUA);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001804}
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806/*
1807 * Allocate and initialise a blank device with a given minor.
1808 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001809static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
1811 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001812 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001813 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 if (!md) {
1816 DMWARN("unable to allocate device, out of memory.");
1817 return NULL;
1818 }
1819
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001820 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001821 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001824 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001825 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001826 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001827 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001829 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Mike Snitzera5664da2010-08-12 04:14:01 +01001831 md->type = DM_TYPE_NONE;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001832 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001833 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001834 mutex_init(&md->type_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001835 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 rwlock_init(&md->map_lock);
1837 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001838 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001840 atomic_set(&md->uevent_seq, 0);
1841 INIT_LIST_HEAD(&md->uevent_list);
1842 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001844 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001846 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001848 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07001849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 md->disk = alloc_disk(1);
1851 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001852 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001854 atomic_set(&md->pending[0], 0);
1855 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001856 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001857 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001858 init_waitqueue_head(&md->eventq);
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 md->disk->major = _major;
1861 md->disk->first_minor = minor;
1862 md->disk->fops = &dm_blk_dops;
1863 md->disk->queue = md->queue;
1864 md->disk->private_data = md;
1865 sprintf(md->disk->disk_name, "dm-%d", minor);
1866 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001867 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Tejun Heo9c4376d2011-01-13 19:59:58 +00001869 md->wq = alloc_workqueue("kdmflush",
1870 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001871 if (!md->wq)
1872 goto bad_thread;
1873
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001874 md->bdev = bdget_disk(md->disk, 0);
1875 if (!md->bdev)
1876 goto bad_bdev;
1877
Tejun Heo6a8736d2010-09-08 18:07:00 +02001878 bio_init(&md->flush_bio);
1879 md->flush_bio.bi_bdev = md->bdev;
1880 md->flush_bio.bi_rw = WRITE_FLUSH;
1881
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001882 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001883 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001884 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001885 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001886
1887 BUG_ON(old_md != MINOR_ALLOCED);
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return md;
1890
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001891bad_bdev:
1892 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00001893bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01001894 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00001895 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001896bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05001897 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001898bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001900bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001901 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001902bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 kfree(md);
1904 return NULL;
1905}
1906
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001907static void unlock_fs(struct mapped_device *md);
1908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909static void free_dev(struct mapped_device *md)
1910{
Tejun Heof331c022008-09-03 09:01:48 +02001911 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001912
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001913 unlock_fs(md);
1914 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00001915 destroy_workqueue(md->wq);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001916 if (md->tio_pool)
1917 mempool_destroy(md->tio_pool);
1918 if (md->io_pool)
1919 mempool_destroy(md->io_pool);
1920 if (md->bs)
1921 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001922 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001924 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001925
1926 spin_lock(&_minor_lock);
1927 md->disk->private_data = NULL;
1928 spin_unlock(&_minor_lock);
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001931 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001932 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 kfree(md);
1934}
1935
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001936static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1937{
1938 struct dm_md_mempools *p;
1939
1940 if (md->io_pool && md->tio_pool && md->bs)
1941 /* the md already has necessary mempools */
1942 goto out;
1943
1944 p = dm_table_get_md_mempools(t);
1945 BUG_ON(!p || md->io_pool || md->tio_pool || md->bs);
1946
1947 md->io_pool = p->io_pool;
1948 p->io_pool = NULL;
1949 md->tio_pool = p->tio_pool;
1950 p->tio_pool = NULL;
1951 md->bs = p->bs;
1952 p->bs = NULL;
1953
1954out:
1955 /* mempool bind completed, now no need any mempools in the table */
1956 dm_table_free_md_mempools(t);
1957}
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959/*
1960 * Bind a table to the device.
1961 */
1962static void event_callback(void *context)
1963{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001964 unsigned long flags;
1965 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 struct mapped_device *md = (struct mapped_device *) context;
1967
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001968 spin_lock_irqsave(&md->uevent_lock, flags);
1969 list_splice_init(&md->uevent_list, &uevents);
1970 spin_unlock_irqrestore(&md->uevent_lock, flags);
1971
Tejun Heoed9e1982008-08-25 19:56:05 +09001972 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 atomic_inc(&md->event_nr);
1975 wake_up(&md->eventq);
1976}
1977
Mike Snitzerc2176492011-01-13 19:53:46 +00001978/*
1979 * Protected by md->suspend_lock obtained by dm_swap_table().
1980 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001981static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001983 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001985 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00001988/*
1989 * Returns old map, which caller must destroy.
1990 */
1991static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
1992 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00001994 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02001995 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 sector_t size;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001997 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002000
2001 /*
2002 * Wipe any geometry if the size of the table changed.
2003 */
2004 if (size != get_capacity(md->disk))
2005 memset(&md->geometry, 0, sizeof(md->geometry));
2006
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002007 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002009 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002010
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002011 /*
2012 * The queue hasn't been stopped yet, if the old table type wasn't
2013 * for request-based during suspension. So stop it to prevent
2014 * I/O mapping before resume.
2015 * This must be done before setting the queue restrictions,
2016 * because request-based dm may be run just after the setting.
2017 */
2018 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2019 stop_queue(q);
2020
2021 __bind_mempools(md, t);
2022
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002023 write_lock_irqsave(&md->map_lock, flags);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002024 old_map = md->map;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002025 md->map = t;
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002026 dm_table_set_restrictions(t, q, limits);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002027 write_unlock_irqrestore(&md->map_lock, flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002028
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002029 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030}
2031
Alasdair G Kergona7940152009-12-10 23:52:23 +00002032/*
2033 * Returns unbound table for the caller to free.
2034 */
2035static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
2037 struct dm_table *map = md->map;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002038 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002041 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 dm_table_event_callback(map, NULL, NULL);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002044 write_lock_irqsave(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 md->map = NULL;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002046 write_unlock_irqrestore(&md->map_lock, flags);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002047
2048 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
2051/*
2052 * Constructor for a new device.
2053 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002054int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
2056 struct mapped_device *md;
2057
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002058 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (!md)
2060 return -ENXIO;
2061
Milan Broz784aae72009-01-06 03:05:12 +00002062 dm_sysfs_init(md);
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 *result = md;
2065 return 0;
2066}
2067
Mike Snitzera5664da2010-08-12 04:14:01 +01002068/*
2069 * Functions to manage md->type.
2070 * All are required to hold md->type_lock.
2071 */
2072void dm_lock_md_type(struct mapped_device *md)
2073{
2074 mutex_lock(&md->type_lock);
2075}
2076
2077void dm_unlock_md_type(struct mapped_device *md)
2078{
2079 mutex_unlock(&md->type_lock);
2080}
2081
2082void dm_set_md_type(struct mapped_device *md, unsigned type)
2083{
2084 md->type = type;
2085}
2086
2087unsigned dm_get_md_type(struct mapped_device *md)
2088{
2089 return md->type;
2090}
2091
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002092/*
2093 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2094 */
2095static int dm_init_request_based_queue(struct mapped_device *md)
2096{
2097 struct request_queue *q = NULL;
2098
2099 if (md->queue->elevator)
2100 return 1;
2101
2102 /* Fully initialize the queue */
2103 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2104 if (!q)
2105 return 0;
2106
2107 md->queue = q;
2108 md->saved_make_request_fn = md->queue->make_request_fn;
2109 dm_init_md_queue(md);
2110 blk_queue_softirq_done(md->queue, dm_softirq_done);
2111 blk_queue_prep_rq(md->queue, dm_prep_fn);
2112 blk_queue_lld_busy(md->queue, dm_lld_busy);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002113
2114 elv_register_queue(md->queue);
2115
2116 return 1;
2117}
2118
2119/*
2120 * Setup the DM device's queue based on md's type
2121 */
2122int dm_setup_md_queue(struct mapped_device *md)
2123{
2124 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2125 !dm_init_request_based_queue(md)) {
2126 DMWARN("Cannot initialize queue for request-based mapped device");
2127 return -EINVAL;
2128 }
2129
2130 return 0;
2131}
2132
David Teigland637842c2006-01-06 00:20:00 -08002133static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 unsigned minor = MINOR(dev);
2137
2138 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2139 return NULL;
2140
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002141 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002144 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002145 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Kiyoshi Uedaabdc5682010-08-12 04:13:54 +01002146 dm_deleting_md(md) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002147 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002148 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002149 goto out;
2150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002152out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002153 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
David Teigland637842c2006-01-06 00:20:00 -08002155 return md;
2156}
2157
David Teiglandd229a952006-01-06 00:20:01 -08002158struct mapped_device *dm_get_md(dev_t dev)
2159{
2160 struct mapped_device *md = dm_find_md(dev);
2161
2162 if (md)
2163 dm_get(md);
2164
2165 return md;
2166}
2167
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002168void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002169{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002170 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171}
2172
2173void dm_set_mdptr(struct mapped_device *md, void *ptr)
2174{
2175 md->interface_ptr = ptr;
2176}
2177
2178void dm_get(struct mapped_device *md)
2179{
2180 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002181 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002184const char *dm_device_name(struct mapped_device *md)
2185{
2186 return md->name;
2187}
2188EXPORT_SYMBOL_GPL(dm_device_name);
2189
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002190static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002192 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002194 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002195
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002196 spin_lock(&_minor_lock);
2197 map = dm_get_live_table(md);
2198 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2199 set_bit(DMF_FREEING, &md->flags);
2200 spin_unlock(&_minor_lock);
2201
2202 if (!dm_suspended_md(md)) {
2203 dm_table_presuspend_targets(map);
2204 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002206
2207 /*
2208 * Rare, but there may be I/O requests still going to complete,
2209 * for example. Wait for all references to disappear.
2210 * No one should increment the reference count of the mapped_device,
2211 * after the mapped_device state becomes DMF_FREEING.
2212 */
2213 if (wait)
2214 while (atomic_read(&md->holders))
2215 msleep(1);
2216 else if (atomic_read(&md->holders))
2217 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2218 dm_device_name(md), atomic_read(&md->holders));
2219
2220 dm_sysfs_exit(md);
2221 dm_table_put(map);
2222 dm_table_destroy(__unbind(md));
2223 free_dev(md);
2224}
2225
2226void dm_destroy(struct mapped_device *md)
2227{
2228 __dm_destroy(md, true);
2229}
2230
2231void dm_destroy_immediate(struct mapped_device *md)
2232{
2233 __dm_destroy(md, false);
2234}
2235
2236void dm_put(struct mapped_device *md)
2237{
2238 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239}
Edward Goggin79eb8852007-05-09 02:32:56 -07002240EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Mikulas Patocka401600d2009-04-02 19:55:38 +01002242static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002243{
2244 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002245 DECLARE_WAITQUEUE(wait, current);
2246
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002247 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002248
2249 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002250 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002251
2252 smp_mb();
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002253 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002254 break;
2255
Mikulas Patocka401600d2009-04-02 19:55:38 +01002256 if (interruptible == TASK_INTERRUPTIBLE &&
2257 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002258 r = -EINTR;
2259 break;
2260 }
2261
2262 io_schedule();
2263 }
2264 set_current_state(TASK_RUNNING);
2265
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002266 remove_wait_queue(&md->wait, &wait);
2267
Milan Broz46125c12008-02-08 02:10:30 +00002268 return r;
2269}
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271/*
2272 * Process the deferred bios
2273 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002274static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
Mikulas Patockaef208582009-04-02 19:55:38 +01002276 struct mapped_device *md = container_of(work, struct mapped_device,
2277 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002278 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Tejun Heo6a8736d2010-09-08 18:07:00 +02002280 down_read(&md->io_lock);
Mikulas Patockaef208582009-04-02 19:55:38 +01002281
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002282 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002283 spin_lock_irq(&md->deferred_lock);
2284 c = bio_list_pop(&md->deferred);
2285 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002286
Tejun Heo6a8736d2010-09-08 18:07:00 +02002287 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002288 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002289
Tejun Heo6a8736d2010-09-08 18:07:00 +02002290 up_read(&md->io_lock);
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002291
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002292 if (dm_request_based(md))
2293 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002294 else
2295 __split_and_process_bio(md, c);
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002296
Tejun Heo6a8736d2010-09-08 18:07:00 +02002297 down_read(&md->io_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002298 }
Milan Broz73d410c2008-02-08 02:10:25 +00002299
Tejun Heo6a8736d2010-09-08 18:07:00 +02002300 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002303static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002304{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002305 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2306 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002307 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002308}
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002311 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002313struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002315 struct dm_table *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002316 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002317 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Daniel Walkere61290a2008-02-08 02:10:08 +00002319 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002322 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002323 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002325 r = dm_calculate_queue_limits(table, &limits);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002326 if (r) {
2327 map = ERR_PTR(r);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002328 goto out;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002329 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002330
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002331 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002333out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002334 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002335 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
2338/*
2339 * Functions to lock and unlock any filesystem running on the
2340 * device.
2341 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002342static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002344 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002347
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002348 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002349 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002350 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002351 md->frozen_sb = NULL;
2352 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002353 }
2354
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002355 set_bit(DMF_FROZEN, &md->flags);
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return 0;
2358}
2359
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002360static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002362 if (!test_bit(DMF_FROZEN, &md->flags))
2363 return;
2364
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002365 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002367 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368}
2369
2370/*
2371 * We need to be able to change a mapping table under a mounted
2372 * filesystem. For example we might want to move some data in
2373 * the background. Before the table can be swapped with
2374 * dm_bind_table, dm_suspend must be called to flush any in
2375 * flight bios and ensure that any further io gets deferred.
2376 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002377/*
2378 * Suspend mechanism in request-based dm.
2379 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002380 * 1. Flush all I/Os by lock_fs() if needed.
2381 * 2. Stop dispatching any I/O by stopping the request_queue.
2382 * 3. Wait for all in-flight I/Os to be completed or requeued.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002383 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002384 * To abort suspend, start the request_queue.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002385 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002386int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002388 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00002389 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002390 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002391 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Daniel Walkere61290a2008-02-08 02:10:08 +00002393 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002394
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002395 if (dm_suspended_md(md)) {
Milan Broz73d410c2008-02-08 02:10:25 +00002396 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08002397 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00002398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Alasdair G Kergon7c666412009-12-10 23:52:19 +00002400 map = dm_get_live_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002402 /*
2403 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2404 * This flag is cleared before dm_suspend returns.
2405 */
2406 if (noflush)
2407 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2408
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002409 /* This does not get reverted if there's an error later. */
2410 dm_table_presuspend_targets(map);
2411
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002412 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002413 * Flush I/O to the device.
2414 * Any I/O submitted after lock_fs() may not be flushed.
2415 * noflush takes precedence over do_lockfs.
2416 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002417 */
2418 if (!noflush && do_lockfs) {
2419 r = lock_fs(md);
2420 if (r)
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01002421 goto out;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002425 * Here we must make sure that no processes are submitting requests
2426 * to target drivers i.e. no one may be executing
2427 * __split_and_process_bio. This is called from dm_request and
2428 * dm_wq_work.
2429 *
2430 * To get all processes out of __split_and_process_bio in dm_request,
2431 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002432 * __split_and_process_bio from dm_request and quiesce the thread
2433 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2434 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002436 down_write(&md->io_lock);
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002437 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002438 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002440 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002441 * Stop md->queue before flushing md->wq in case request-based
2442 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002443 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002444 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002445 stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002446
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002447 flush_workqueue(md->wq);
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002450 * At this point no more requests are entering target request routines.
2451 * We call dm_wait_for_completion to wait for all existing requests
2452 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01002454 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002456 down_write(&md->io_lock);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002457 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002458 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Milan Broz94d63512008-02-08 02:10:27 +00002459 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002462 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002463 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002464
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002465 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002466 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002467
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002468 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002469 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002470 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002471
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002472 /*
2473 * If dm_wait_for_completion returned 0, the device is completely
2474 * quiescent now. There is no request-processing activity. All new
2475 * requests are being added to md->deferred list.
2476 */
2477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 set_bit(DMF_SUSPENDED, &md->flags);
2479
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002480 dm_table_postsuspend_targets(map);
2481
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002482out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08002484
2485out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002486 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002487 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
2490int dm_resume(struct mapped_device *md)
2491{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002492 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002493 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Daniel Walkere61290a2008-02-08 02:10:08 +00002495 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002496 if (!dm_suspended_md(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002497 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002498
Alasdair G Kergon7c666412009-12-10 23:52:19 +00002499 map = dm_get_live_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002500 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002501 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Milan Broz8757b772006-10-03 01:15:36 -07002503 r = dm_table_resume_targets(map);
2504 if (r)
2505 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002506
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002507 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002508
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002509 /*
2510 * Flushing deferred I/Os must be done after targets are resumed
2511 * so that mapping of targets can work correctly.
2512 * Request-based dm is queueing the deferred I/Os in its request_queue.
2513 */
2514 if (dm_request_based(md))
2515 start_queue(md->queue);
2516
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002517 unlock_fs(md);
2518
2519 clear_bit(DMF_SUSPENDED, &md->flags);
2520
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002521 r = 0;
2522out:
2523 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00002524 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002525
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002526 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
2529/*-----------------------------------------------------------------
2530 * Event notification.
2531 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002532int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002533 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002534{
Milan Broz60935eb2009-06-22 10:12:30 +01002535 char udev_cookie[DM_COOKIE_LENGTH];
2536 char *envp[] = { udev_cookie, NULL };
2537
2538 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002539 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002540 else {
2541 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2542 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002543 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2544 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002545 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002546}
2547
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002548uint32_t dm_next_uevent_seq(struct mapped_device *md)
2549{
2550 return atomic_add_return(1, &md->uevent_seq);
2551}
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553uint32_t dm_get_event_nr(struct mapped_device *md)
2554{
2555 return atomic_read(&md->event_nr);
2556}
2557
2558int dm_wait_event(struct mapped_device *md, int event_nr)
2559{
2560 return wait_event_interruptible(md->eventq,
2561 (event_nr != atomic_read(&md->event_nr)));
2562}
2563
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002564void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2565{
2566 unsigned long flags;
2567
2568 spin_lock_irqsave(&md->uevent_lock, flags);
2569 list_add(elist, &md->uevent_list);
2570 spin_unlock_irqrestore(&md->uevent_lock, flags);
2571}
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573/*
2574 * The gendisk is only valid as long as you have a reference
2575 * count on 'md'.
2576 */
2577struct gendisk *dm_disk(struct mapped_device *md)
2578{
2579 return md->disk;
2580}
2581
Milan Broz784aae72009-01-06 03:05:12 +00002582struct kobject *dm_kobject(struct mapped_device *md)
2583{
2584 return &md->kobj;
2585}
2586
2587/*
2588 * struct mapped_device should not be exported outside of dm.c
2589 * so use this check to verify that kobj is part of md structure
2590 */
2591struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2592{
2593 struct mapped_device *md;
2594
2595 md = container_of(kobj, struct mapped_device, kobj);
2596 if (&md->kobj != kobj)
2597 return NULL;
2598
Milan Broz4d89b7b2009-06-22 10:12:11 +01002599 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00002600 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01002601 return NULL;
2602
Milan Broz784aae72009-01-06 03:05:12 +00002603 dm_get(md);
2604 return md;
2605}
2606
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002607int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608{
2609 return test_bit(DMF_SUSPENDED, &md->flags);
2610}
2611
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002612int dm_suspended(struct dm_target *ti)
2613{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002614 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002615}
2616EXPORT_SYMBOL_GPL(dm_suspended);
2617
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002618int dm_noflush_suspending(struct dm_target *ti)
2619{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002620 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002621}
2622EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2623
Martin K. Petersena91a2782011-03-17 11:11:05 +01002624struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002625{
2626 struct dm_md_mempools *pools = kmalloc(sizeof(*pools), GFP_KERNEL);
Martin K. Petersena91a2782011-03-17 11:11:05 +01002627 unsigned int pool_size = (type == DM_TYPE_BIO_BASED) ? 16 : MIN_IOS;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002628
2629 if (!pools)
2630 return NULL;
2631
2632 pools->io_pool = (type == DM_TYPE_BIO_BASED) ?
2633 mempool_create_slab_pool(MIN_IOS, _io_cache) :
2634 mempool_create_slab_pool(MIN_IOS, _rq_bio_info_cache);
2635 if (!pools->io_pool)
2636 goto free_pools_and_out;
2637
2638 pools->tio_pool = (type == DM_TYPE_BIO_BASED) ?
2639 mempool_create_slab_pool(MIN_IOS, _tio_cache) :
2640 mempool_create_slab_pool(MIN_IOS, _rq_tio_cache);
2641 if (!pools->tio_pool)
2642 goto free_io_pool_and_out;
2643
Martin K. Petersena91a2782011-03-17 11:11:05 +01002644 pools->bs = bioset_create(pool_size, 0);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002645 if (!pools->bs)
2646 goto free_tio_pool_and_out;
2647
Martin K. Petersena91a2782011-03-17 11:11:05 +01002648 if (integrity && bioset_integrity_create(pools->bs, pool_size))
2649 goto free_bioset_and_out;
2650
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002651 return pools;
2652
Martin K. Petersena91a2782011-03-17 11:11:05 +01002653free_bioset_and_out:
2654 bioset_free(pools->bs);
2655
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002656free_tio_pool_and_out:
2657 mempool_destroy(pools->tio_pool);
2658
2659free_io_pool_and_out:
2660 mempool_destroy(pools->io_pool);
2661
2662free_pools_and_out:
2663 kfree(pools);
2664
2665 return NULL;
2666}
2667
2668void dm_free_md_mempools(struct dm_md_mempools *pools)
2669{
2670 if (!pools)
2671 return;
2672
2673 if (pools->io_pool)
2674 mempool_destroy(pools->io_pool);
2675
2676 if (pools->tio_pool)
2677 mempool_destroy(pools->tio_pool);
2678
2679 if (pools->bs)
2680 bioset_free(pools->bs);
2681
2682 kfree(pools);
2683}
2684
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002685static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 .open = dm_blk_open,
2687 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07002688 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002689 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 .owner = THIS_MODULE
2691};
2692
2693EXPORT_SYMBOL(dm_get_mapinfo);
2694
2695/*
2696 * module hooks
2697 */
2698module_init(dm_init);
2699module_exit(dm_exit);
2700
2701module_param(major, uint, 0);
2702MODULE_PARM_DESC(major, "The major number of the device mapper");
2703MODULE_DESCRIPTION(DM_NAME " driver");
2704MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2705MODULE_LICENSE("GPL");