dm: remove unnecessary work queue type field
[safe/jmp/linux-2.6] / drivers / md / dm.c
1 /*
2  * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
3  * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
4  *
5  * This file is released under the GPL.
6  */
7
8 #include "dm.h"
9 #include "dm-bio-list.h"
10 #include "dm-uevent.h"
11
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/mutex.h>
15 #include <linux/moduleparam.h>
16 #include <linux/blkpg.h>
17 #include <linux/bio.h>
18 #include <linux/buffer_head.h>
19 #include <linux/mempool.h>
20 #include <linux/slab.h>
21 #include <linux/idr.h>
22 #include <linux/hdreg.h>
23 #include <linux/blktrace_api.h>
24 #include <trace/block.h>
25
26 #define DM_MSG_PREFIX "core"
27
28 static const char *_name = DM_NAME;
29
30 static unsigned int major = 0;
31 static unsigned int _major = 0;
32
33 static DEFINE_SPINLOCK(_minor_lock);
34 /*
35  * For bio-based dm.
36  * One of these is allocated per bio.
37  */
38 struct dm_io {
39         struct mapped_device *md;
40         int error;
41         atomic_t io_count;
42         struct bio *bio;
43         unsigned long start_time;
44 };
45
46 /*
47  * For bio-based dm.
48  * One of these is allocated per target within a bio.  Hopefully
49  * this will be simplified out one day.
50  */
51 struct dm_target_io {
52         struct dm_io *io;
53         struct dm_target *ti;
54         union map_info info;
55 };
56
57 DEFINE_TRACE(block_bio_complete);
58
59 /*
60  * For request-based dm.
61  * One of these is allocated per request.
62  */
63 struct dm_rq_target_io {
64         struct mapped_device *md;
65         struct dm_target *ti;
66         struct request *orig, clone;
67         int error;
68         union map_info info;
69 };
70
71 /*
72  * For request-based dm.
73  * One of these is allocated per bio.
74  */
75 struct dm_rq_clone_bio_info {
76         struct bio *orig;
77         struct request *rq;
78 };
79
80 union map_info *dm_get_mapinfo(struct bio *bio)
81 {
82         if (bio && bio->bi_private)
83                 return &((struct dm_target_io *)bio->bi_private)->info;
84         return NULL;
85 }
86
87 #define MINOR_ALLOCED ((void *)-1)
88
89 /*
90  * Bits for the md->flags field.
91  */
92 #define DMF_BLOCK_IO 0
93 #define DMF_SUSPENDED 1
94 #define DMF_FROZEN 2
95 #define DMF_FREEING 3
96 #define DMF_DELETING 4
97 #define DMF_NOFLUSH_SUSPENDING 5
98
99 /*
100  * Work processed by per-device workqueue.
101  */
102 struct dm_wq_req {
103         struct work_struct work;
104         struct mapped_device *md;
105         void *context;
106 };
107
108 struct mapped_device {
109         struct rw_semaphore io_lock;
110         struct mutex suspend_lock;
111         spinlock_t pushback_lock;
112         rwlock_t map_lock;
113         atomic_t holders;
114         atomic_t open_count;
115
116         unsigned long flags;
117
118         struct request_queue *queue;
119         struct gendisk *disk;
120         char name[16];
121
122         void *interface_ptr;
123
124         /*
125          * A list of ios that arrived while we were suspended.
126          */
127         atomic_t pending;
128         wait_queue_head_t wait;
129         struct bio_list deferred;
130         struct bio_list pushback;
131
132         /*
133          * Processing queue (flush/barriers)
134          */
135         struct workqueue_struct *wq;
136
137         /*
138          * The current mapping.
139          */
140         struct dm_table *map;
141
142         /*
143          * io objects are allocated from here.
144          */
145         mempool_t *io_pool;
146         mempool_t *tio_pool;
147
148         struct bio_set *bs;
149
150         /*
151          * Event handling.
152          */
153         atomic_t event_nr;
154         wait_queue_head_t eventq;
155         atomic_t uevent_seq;
156         struct list_head uevent_list;
157         spinlock_t uevent_lock; /* Protect access to uevent_list */
158
159         /*
160          * freeze/thaw support require holding onto a super block
161          */
162         struct super_block *frozen_sb;
163         struct block_device *suspended_bdev;
164
165         /* forced geometry settings */
166         struct hd_geometry geometry;
167
168         /* sysfs handle */
169         struct kobject kobj;
170 };
171
172 #define MIN_IOS 256
173 static struct kmem_cache *_io_cache;
174 static struct kmem_cache *_tio_cache;
175 static struct kmem_cache *_rq_tio_cache;
176 static struct kmem_cache *_rq_bio_info_cache;
177
178 static int __init local_init(void)
179 {
180         int r = -ENOMEM;
181
182         /* allocate a slab for the dm_ios */
183         _io_cache = KMEM_CACHE(dm_io, 0);
184         if (!_io_cache)
185                 return r;
186
187         /* allocate a slab for the target ios */
188         _tio_cache = KMEM_CACHE(dm_target_io, 0);
189         if (!_tio_cache)
190                 goto out_free_io_cache;
191
192         _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
193         if (!_rq_tio_cache)
194                 goto out_free_tio_cache;
195
196         _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
197         if (!_rq_bio_info_cache)
198                 goto out_free_rq_tio_cache;
199
200         r = dm_uevent_init();
201         if (r)
202                 goto out_free_rq_bio_info_cache;
203
204         _major = major;
205         r = register_blkdev(_major, _name);
206         if (r < 0)
207                 goto out_uevent_exit;
208
209         if (!_major)
210                 _major = r;
211
212         return 0;
213
214 out_uevent_exit:
215         dm_uevent_exit();
216 out_free_rq_bio_info_cache:
217         kmem_cache_destroy(_rq_bio_info_cache);
218 out_free_rq_tio_cache:
219         kmem_cache_destroy(_rq_tio_cache);
220 out_free_tio_cache:
221         kmem_cache_destroy(_tio_cache);
222 out_free_io_cache:
223         kmem_cache_destroy(_io_cache);
224
225         return r;
226 }
227
228 static void local_exit(void)
229 {
230         kmem_cache_destroy(_rq_bio_info_cache);
231         kmem_cache_destroy(_rq_tio_cache);
232         kmem_cache_destroy(_tio_cache);
233         kmem_cache_destroy(_io_cache);
234         unregister_blkdev(_major, _name);
235         dm_uevent_exit();
236
237         _major = 0;
238
239         DMINFO("cleaned up");
240 }
241
242 static int (*_inits[])(void) __initdata = {
243         local_init,
244         dm_target_init,
245         dm_linear_init,
246         dm_stripe_init,
247         dm_kcopyd_init,
248         dm_interface_init,
249 };
250
251 static void (*_exits[])(void) = {
252         local_exit,
253         dm_target_exit,
254         dm_linear_exit,
255         dm_stripe_exit,
256         dm_kcopyd_exit,
257         dm_interface_exit,
258 };
259
260 static int __init dm_init(void)
261 {
262         const int count = ARRAY_SIZE(_inits);
263
264         int r, i;
265
266         for (i = 0; i < count; i++) {
267                 r = _inits[i]();
268                 if (r)
269                         goto bad;
270         }
271
272         return 0;
273
274       bad:
275         while (i--)
276                 _exits[i]();
277
278         return r;
279 }
280
281 static void __exit dm_exit(void)
282 {
283         int i = ARRAY_SIZE(_exits);
284
285         while (i--)
286                 _exits[i]();
287 }
288
289 /*
290  * Block device functions
291  */
292 static int dm_blk_open(struct block_device *bdev, fmode_t mode)
293 {
294         struct mapped_device *md;
295
296         spin_lock(&_minor_lock);
297
298         md = bdev->bd_disk->private_data;
299         if (!md)
300                 goto out;
301
302         if (test_bit(DMF_FREEING, &md->flags) ||
303             test_bit(DMF_DELETING, &md->flags)) {
304                 md = NULL;
305                 goto out;
306         }
307
308         dm_get(md);
309         atomic_inc(&md->open_count);
310
311 out:
312         spin_unlock(&_minor_lock);
313
314         return md ? 0 : -ENXIO;
315 }
316
317 static int dm_blk_close(struct gendisk *disk, fmode_t mode)
318 {
319         struct mapped_device *md = disk->private_data;
320         atomic_dec(&md->open_count);
321         dm_put(md);
322         return 0;
323 }
324
325 int dm_open_count(struct mapped_device *md)
326 {
327         return atomic_read(&md->open_count);
328 }
329
330 /*
331  * Guarantees nothing is using the device before it's deleted.
332  */
333 int dm_lock_for_deletion(struct mapped_device *md)
334 {
335         int r = 0;
336
337         spin_lock(&_minor_lock);
338
339         if (dm_open_count(md))
340                 r = -EBUSY;
341         else
342                 set_bit(DMF_DELETING, &md->flags);
343
344         spin_unlock(&_minor_lock);
345
346         return r;
347 }
348
349 static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
350 {
351         struct mapped_device *md = bdev->bd_disk->private_data;
352
353         return dm_get_geometry(md, geo);
354 }
355
356 static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
357                         unsigned int cmd, unsigned long arg)
358 {
359         struct mapped_device *md = bdev->bd_disk->private_data;
360         struct dm_table *map = dm_get_table(md);
361         struct dm_target *tgt;
362         int r = -ENOTTY;
363
364         if (!map || !dm_table_get_size(map))
365                 goto out;
366
367         /* We only support devices that have a single target */
368         if (dm_table_get_num_targets(map) != 1)
369                 goto out;
370
371         tgt = dm_table_get_target(map, 0);
372
373         if (dm_suspended(md)) {
374                 r = -EAGAIN;
375                 goto out;
376         }
377
378         if (tgt->type->ioctl)
379                 r = tgt->type->ioctl(tgt, cmd, arg);
380
381 out:
382         dm_table_put(map);
383
384         return r;
385 }
386
387 static struct dm_io *alloc_io(struct mapped_device *md)
388 {
389         return mempool_alloc(md->io_pool, GFP_NOIO);
390 }
391
392 static void free_io(struct mapped_device *md, struct dm_io *io)
393 {
394         mempool_free(io, md->io_pool);
395 }
396
397 static struct dm_target_io *alloc_tio(struct mapped_device *md)
398 {
399         return mempool_alloc(md->tio_pool, GFP_NOIO);
400 }
401
402 static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
403 {
404         mempool_free(tio, md->tio_pool);
405 }
406
407 static void start_io_acct(struct dm_io *io)
408 {
409         struct mapped_device *md = io->md;
410         int cpu;
411
412         io->start_time = jiffies;
413
414         cpu = part_stat_lock();
415         part_round_stats(cpu, &dm_disk(md)->part0);
416         part_stat_unlock();
417         dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
418 }
419
420 static void end_io_acct(struct dm_io *io)
421 {
422         struct mapped_device *md = io->md;
423         struct bio *bio = io->bio;
424         unsigned long duration = jiffies - io->start_time;
425         int pending, cpu;
426         int rw = bio_data_dir(bio);
427
428         cpu = part_stat_lock();
429         part_round_stats(cpu, &dm_disk(md)->part0);
430         part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
431         part_stat_unlock();
432
433         dm_disk(md)->part0.in_flight = pending =
434                 atomic_dec_return(&md->pending);
435
436         /* nudge anyone waiting on suspend queue */
437         if (!pending)
438                 wake_up(&md->wait);
439 }
440
441 /*
442  * Add the bio to the list of deferred io.
443  */
444 static int queue_io(struct mapped_device *md, struct bio *bio)
445 {
446         down_write(&md->io_lock);
447
448         if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
449                 up_write(&md->io_lock);
450                 return 1;
451         }
452
453         bio_list_add(&md->deferred, bio);
454
455         up_write(&md->io_lock);
456         return 0;               /* deferred successfully */
457 }
458
459 /*
460  * Everyone (including functions in this file), should use this
461  * function to access the md->map field, and make sure they call
462  * dm_table_put() when finished.
463  */
464 struct dm_table *dm_get_table(struct mapped_device *md)
465 {
466         struct dm_table *t;
467
468         read_lock(&md->map_lock);
469         t = md->map;
470         if (t)
471                 dm_table_get(t);
472         read_unlock(&md->map_lock);
473
474         return t;
475 }
476
477 /*
478  * Get the geometry associated with a dm device
479  */
480 int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
481 {
482         *geo = md->geometry;
483
484         return 0;
485 }
486
487 /*
488  * Set the geometry of a device.
489  */
490 int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
491 {
492         sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
493
494         if (geo->start > sz) {
495                 DMWARN("Start sector is beyond the geometry limits.");
496                 return -EINVAL;
497         }
498
499         md->geometry = *geo;
500
501         return 0;
502 }
503
504 /*-----------------------------------------------------------------
505  * CRUD START:
506  *   A more elegant soln is in the works that uses the queue
507  *   merge fn, unfortunately there are a couple of changes to
508  *   the block layer that I want to make for this.  So in the
509  *   interests of getting something for people to use I give
510  *   you this clearly demarcated crap.
511  *---------------------------------------------------------------*/
512
513 static int __noflush_suspending(struct mapped_device *md)
514 {
515         return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
516 }
517
518 /*
519  * Decrements the number of outstanding ios that a bio has been
520  * cloned into, completing the original io if necc.
521  */
522 static void dec_pending(struct dm_io *io, int error)
523 {
524         unsigned long flags;
525         int io_error;
526         struct bio *bio;
527         struct mapped_device *md = io->md;
528
529         /* Push-back supersedes any I/O errors */
530         if (error && !(io->error > 0 && __noflush_suspending(md)))
531                 io->error = error;
532
533         if (atomic_dec_and_test(&io->io_count)) {
534                 if (io->error == DM_ENDIO_REQUEUE) {
535                         /*
536                          * Target requested pushing back the I/O.
537                          * This must be handled before the sleeper on
538                          * suspend queue merges the pushback list.
539                          */
540                         spin_lock_irqsave(&md->pushback_lock, flags);
541                         if (__noflush_suspending(md))
542                                 bio_list_add(&md->pushback, io->bio);
543                         else
544                                 /* noflush suspend was interrupted. */
545                                 io->error = -EIO;
546                         spin_unlock_irqrestore(&md->pushback_lock, flags);
547                 }
548
549                 end_io_acct(io);
550
551                 io_error = io->error;
552                 bio = io->bio;
553
554                 free_io(md, io);
555
556                 if (io_error != DM_ENDIO_REQUEUE) {
557                         trace_block_bio_complete(md->queue, bio);
558
559                         bio_endio(bio, io_error);
560                 }
561         }
562 }
563
564 static void clone_endio(struct bio *bio, int error)
565 {
566         int r = 0;
567         struct dm_target_io *tio = bio->bi_private;
568         struct dm_io *io = tio->io;
569         struct mapped_device *md = tio->io->md;
570         dm_endio_fn endio = tio->ti->type->end_io;
571
572         if (!bio_flagged(bio, BIO_UPTODATE) && !error)
573                 error = -EIO;
574
575         if (endio) {
576                 r = endio(tio->ti, bio, error, &tio->info);
577                 if (r < 0 || r == DM_ENDIO_REQUEUE)
578                         /*
579                          * error and requeue request are handled
580                          * in dec_pending().
581                          */
582                         error = r;
583                 else if (r == DM_ENDIO_INCOMPLETE)
584                         /* The target will handle the io */
585                         return;
586                 else if (r) {
587                         DMWARN("unimplemented target endio return value: %d", r);
588                         BUG();
589                 }
590         }
591
592         /*
593          * Store md for cleanup instead of tio which is about to get freed.
594          */
595         bio->bi_private = md->bs;
596
597         free_tio(md, tio);
598         bio_put(bio);
599         dec_pending(io, error);
600 }
601
602 static sector_t max_io_len(struct mapped_device *md,
603                            sector_t sector, struct dm_target *ti)
604 {
605         sector_t offset = sector - ti->begin;
606         sector_t len = ti->len - offset;
607
608         /*
609          * Does the target need to split even further ?
610          */
611         if (ti->split_io) {
612                 sector_t boundary;
613                 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
614                            - offset;
615                 if (len > boundary)
616                         len = boundary;
617         }
618
619         return len;
620 }
621
622 static void __map_bio(struct dm_target *ti, struct bio *clone,
623                       struct dm_target_io *tio)
624 {
625         int r;
626         sector_t sector;
627         struct mapped_device *md;
628
629         /*
630          * Sanity checks.
631          */
632         BUG_ON(!clone->bi_size);
633
634         clone->bi_end_io = clone_endio;
635         clone->bi_private = tio;
636
637         /*
638          * Map the clone.  If r == 0 we don't need to do
639          * anything, the target has assumed ownership of
640          * this io.
641          */
642         atomic_inc(&tio->io->io_count);
643         sector = clone->bi_sector;
644         r = ti->type->map(ti, clone, &tio->info);
645         if (r == DM_MAPIO_REMAPPED) {
646                 /* the bio has been remapped so dispatch it */
647
648                 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
649                                     tio->io->bio->bi_bdev->bd_dev,
650                                     clone->bi_sector, sector);
651
652                 generic_make_request(clone);
653         } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
654                 /* error the io and bail out, or requeue it if needed */
655                 md = tio->io->md;
656                 dec_pending(tio->io, r);
657                 /*
658                  * Store bio_set for cleanup.
659                  */
660                 clone->bi_private = md->bs;
661                 bio_put(clone);
662                 free_tio(md, tio);
663         } else if (r) {
664                 DMWARN("unimplemented target map return value: %d", r);
665                 BUG();
666         }
667 }
668
669 struct clone_info {
670         struct mapped_device *md;
671         struct dm_table *map;
672         struct bio *bio;
673         struct dm_io *io;
674         sector_t sector;
675         sector_t sector_count;
676         unsigned short idx;
677 };
678
679 static void dm_bio_destructor(struct bio *bio)
680 {
681         struct bio_set *bs = bio->bi_private;
682
683         bio_free(bio, bs);
684 }
685
686 /*
687  * Creates a little bio that is just does part of a bvec.
688  */
689 static struct bio *split_bvec(struct bio *bio, sector_t sector,
690                               unsigned short idx, unsigned int offset,
691                               unsigned int len, struct bio_set *bs)
692 {
693         struct bio *clone;
694         struct bio_vec *bv = bio->bi_io_vec + idx;
695
696         clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
697         clone->bi_destructor = dm_bio_destructor;
698         *clone->bi_io_vec = *bv;
699
700         clone->bi_sector = sector;
701         clone->bi_bdev = bio->bi_bdev;
702         clone->bi_rw = bio->bi_rw;
703         clone->bi_vcnt = 1;
704         clone->bi_size = to_bytes(len);
705         clone->bi_io_vec->bv_offset = offset;
706         clone->bi_io_vec->bv_len = clone->bi_size;
707         clone->bi_flags |= 1 << BIO_CLONED;
708
709         return clone;
710 }
711
712 /*
713  * Creates a bio that consists of range of complete bvecs.
714  */
715 static struct bio *clone_bio(struct bio *bio, sector_t sector,
716                              unsigned short idx, unsigned short bv_count,
717                              unsigned int len, struct bio_set *bs)
718 {
719         struct bio *clone;
720
721         clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
722         __bio_clone(clone, bio);
723         clone->bi_destructor = dm_bio_destructor;
724         clone->bi_sector = sector;
725         clone->bi_idx = idx;
726         clone->bi_vcnt = idx + bv_count;
727         clone->bi_size = to_bytes(len);
728         clone->bi_flags &= ~(1 << BIO_SEG_VALID);
729
730         return clone;
731 }
732
733 static int __clone_and_map(struct clone_info *ci)
734 {
735         struct bio *clone, *bio = ci->bio;
736         struct dm_target *ti;
737         sector_t len = 0, max;
738         struct dm_target_io *tio;
739
740         ti = dm_table_find_target(ci->map, ci->sector);
741         if (!dm_target_is_valid(ti))
742                 return -EIO;
743
744         max = max_io_len(ci->md, ci->sector, ti);
745
746         /*
747          * Allocate a target io object.
748          */
749         tio = alloc_tio(ci->md);
750         tio->io = ci->io;
751         tio->ti = ti;
752         memset(&tio->info, 0, sizeof(tio->info));
753
754         if (ci->sector_count <= max) {
755                 /*
756                  * Optimise for the simple case where we can do all of
757                  * the remaining io with a single clone.
758                  */
759                 clone = clone_bio(bio, ci->sector, ci->idx,
760                                   bio->bi_vcnt - ci->idx, ci->sector_count,
761                                   ci->md->bs);
762                 __map_bio(ti, clone, tio);
763                 ci->sector_count = 0;
764
765         } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
766                 /*
767                  * There are some bvecs that don't span targets.
768                  * Do as many of these as possible.
769                  */
770                 int i;
771                 sector_t remaining = max;
772                 sector_t bv_len;
773
774                 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
775                         bv_len = to_sector(bio->bi_io_vec[i].bv_len);
776
777                         if (bv_len > remaining)
778                                 break;
779
780                         remaining -= bv_len;
781                         len += bv_len;
782                 }
783
784                 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
785                                   ci->md->bs);
786                 __map_bio(ti, clone, tio);
787
788                 ci->sector += len;
789                 ci->sector_count -= len;
790                 ci->idx = i;
791
792         } else {
793                 /*
794                  * Handle a bvec that must be split between two or more targets.
795                  */
796                 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
797                 sector_t remaining = to_sector(bv->bv_len);
798                 unsigned int offset = 0;
799
800                 do {
801                         if (offset) {
802                                 ti = dm_table_find_target(ci->map, ci->sector);
803                                 if (!dm_target_is_valid(ti))
804                                         return -EIO;
805
806                                 max = max_io_len(ci->md, ci->sector, ti);
807
808                                 tio = alloc_tio(ci->md);
809                                 tio->io = ci->io;
810                                 tio->ti = ti;
811                                 memset(&tio->info, 0, sizeof(tio->info));
812                         }
813
814                         len = min(remaining, max);
815
816                         clone = split_bvec(bio, ci->sector, ci->idx,
817                                            bv->bv_offset + offset, len,
818                                            ci->md->bs);
819
820                         __map_bio(ti, clone, tio);
821
822                         ci->sector += len;
823                         ci->sector_count -= len;
824                         offset += to_bytes(len);
825                 } while (remaining -= len);
826
827                 ci->idx++;
828         }
829
830         return 0;
831 }
832
833 /*
834  * Split the bio into several clones.
835  */
836 static int __split_bio(struct mapped_device *md, struct bio *bio)
837 {
838         struct clone_info ci;
839         int error = 0;
840
841         ci.map = dm_get_table(md);
842         if (unlikely(!ci.map))
843                 return -EIO;
844         if (unlikely(bio_barrier(bio) && !dm_table_barrier_ok(ci.map))) {
845                 dm_table_put(ci.map);
846                 bio_endio(bio, -EOPNOTSUPP);
847                 return 0;
848         }
849         ci.md = md;
850         ci.bio = bio;
851         ci.io = alloc_io(md);
852         ci.io->error = 0;
853         atomic_set(&ci.io->io_count, 1);
854         ci.io->bio = bio;
855         ci.io->md = md;
856         ci.sector = bio->bi_sector;
857         ci.sector_count = bio_sectors(bio);
858         ci.idx = bio->bi_idx;
859
860         start_io_acct(ci.io);
861         while (ci.sector_count && !error)
862                 error = __clone_and_map(&ci);
863
864         /* drop the extra reference count */
865         dec_pending(ci.io, error);
866         dm_table_put(ci.map);
867
868         return 0;
869 }
870 /*-----------------------------------------------------------------
871  * CRUD END
872  *---------------------------------------------------------------*/
873
874 static int dm_merge_bvec(struct request_queue *q,
875                          struct bvec_merge_data *bvm,
876                          struct bio_vec *biovec)
877 {
878         struct mapped_device *md = q->queuedata;
879         struct dm_table *map = dm_get_table(md);
880         struct dm_target *ti;
881         sector_t max_sectors;
882         int max_size = 0;
883
884         if (unlikely(!map))
885                 goto out;
886
887         ti = dm_table_find_target(map, bvm->bi_sector);
888         if (!dm_target_is_valid(ti))
889                 goto out_table;
890
891         /*
892          * Find maximum amount of I/O that won't need splitting
893          */
894         max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
895                           (sector_t) BIO_MAX_SECTORS);
896         max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
897         if (max_size < 0)
898                 max_size = 0;
899
900         /*
901          * merge_bvec_fn() returns number of bytes
902          * it can accept at this offset
903          * max is precomputed maximal io size
904          */
905         if (max_size && ti->type->merge)
906                 max_size = ti->type->merge(ti, bvm, biovec, max_size);
907
908 out_table:
909         dm_table_put(map);
910
911 out:
912         /*
913          * Always allow an entire first page
914          */
915         if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
916                 max_size = biovec->bv_len;
917
918         return max_size;
919 }
920
921 /*
922  * The request function that just remaps the bio built up by
923  * dm_merge_bvec.
924  */
925 static int dm_request(struct request_queue *q, struct bio *bio)
926 {
927         int r = -EIO;
928         int rw = bio_data_dir(bio);
929         struct mapped_device *md = q->queuedata;
930         int cpu;
931
932         down_read(&md->io_lock);
933
934         cpu = part_stat_lock();
935         part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
936         part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
937         part_stat_unlock();
938
939         /*
940          * If we're suspended we have to queue
941          * this io for later.
942          */
943         while (test_bit(DMF_BLOCK_IO, &md->flags)) {
944                 up_read(&md->io_lock);
945
946                 if (bio_rw(bio) != READA)
947                         r = queue_io(md, bio);
948
949                 if (r <= 0)
950                         goto out_req;
951
952                 /*
953                  * We're in a while loop, because someone could suspend
954                  * before we get to the following read lock.
955                  */
956                 down_read(&md->io_lock);
957         }
958
959         r = __split_bio(md, bio);
960         up_read(&md->io_lock);
961
962 out_req:
963         if (r < 0)
964                 bio_io_error(bio);
965
966         return 0;
967 }
968
969 static void dm_unplug_all(struct request_queue *q)
970 {
971         struct mapped_device *md = q->queuedata;
972         struct dm_table *map = dm_get_table(md);
973
974         if (map) {
975                 dm_table_unplug_all(map);
976                 dm_table_put(map);
977         }
978 }
979
980 static int dm_any_congested(void *congested_data, int bdi_bits)
981 {
982         int r = bdi_bits;
983         struct mapped_device *md = congested_data;
984         struct dm_table *map;
985
986         if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
987                 map = dm_get_table(md);
988                 if (map) {
989                         r = dm_table_any_congested(map, bdi_bits);
990                         dm_table_put(map);
991                 }
992         }
993
994         return r;
995 }
996
997 /*-----------------------------------------------------------------
998  * An IDR is used to keep track of allocated minor numbers.
999  *---------------------------------------------------------------*/
1000 static DEFINE_IDR(_minor_idr);
1001
1002 static void free_minor(int minor)
1003 {
1004         spin_lock(&_minor_lock);
1005         idr_remove(&_minor_idr, minor);
1006         spin_unlock(&_minor_lock);
1007 }
1008
1009 /*
1010  * See if the device with a specific minor # is free.
1011  */
1012 static int specific_minor(int minor)
1013 {
1014         int r, m;
1015
1016         if (minor >= (1 << MINORBITS))
1017                 return -EINVAL;
1018
1019         r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1020         if (!r)
1021                 return -ENOMEM;
1022
1023         spin_lock(&_minor_lock);
1024
1025         if (idr_find(&_minor_idr, minor)) {
1026                 r = -EBUSY;
1027                 goto out;
1028         }
1029
1030         r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
1031         if (r)
1032                 goto out;
1033
1034         if (m != minor) {
1035                 idr_remove(&_minor_idr, m);
1036                 r = -EBUSY;
1037                 goto out;
1038         }
1039
1040 out:
1041         spin_unlock(&_minor_lock);
1042         return r;
1043 }
1044
1045 static int next_free_minor(int *minor)
1046 {
1047         int r, m;
1048
1049         r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1050         if (!r)
1051                 return -ENOMEM;
1052
1053         spin_lock(&_minor_lock);
1054
1055         r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
1056         if (r)
1057                 goto out;
1058
1059         if (m >= (1 << MINORBITS)) {
1060                 idr_remove(&_minor_idr, m);
1061                 r = -ENOSPC;
1062                 goto out;
1063         }
1064
1065         *minor = m;
1066
1067 out:
1068         spin_unlock(&_minor_lock);
1069         return r;
1070 }
1071
1072 static struct block_device_operations dm_blk_dops;
1073
1074 /*
1075  * Allocate and initialise a blank device with a given minor.
1076  */
1077 static struct mapped_device *alloc_dev(int minor)
1078 {
1079         int r;
1080         struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
1081         void *old_md;
1082
1083         if (!md) {
1084                 DMWARN("unable to allocate device, out of memory.");
1085                 return NULL;
1086         }
1087
1088         if (!try_module_get(THIS_MODULE))
1089                 goto bad_module_get;
1090
1091         /* get a minor number for the dev */
1092         if (minor == DM_ANY_MINOR)
1093                 r = next_free_minor(&minor);
1094         else
1095                 r = specific_minor(minor);
1096         if (r < 0)
1097                 goto bad_minor;
1098
1099         init_rwsem(&md->io_lock);
1100         mutex_init(&md->suspend_lock);
1101         spin_lock_init(&md->pushback_lock);
1102         rwlock_init(&md->map_lock);
1103         atomic_set(&md->holders, 1);
1104         atomic_set(&md->open_count, 0);
1105         atomic_set(&md->event_nr, 0);
1106         atomic_set(&md->uevent_seq, 0);
1107         INIT_LIST_HEAD(&md->uevent_list);
1108         spin_lock_init(&md->uevent_lock);
1109
1110         md->queue = blk_alloc_queue(GFP_KERNEL);
1111         if (!md->queue)
1112                 goto bad_queue;
1113
1114         md->queue->queuedata = md;
1115         md->queue->backing_dev_info.congested_fn = dm_any_congested;
1116         md->queue->backing_dev_info.congested_data = md;
1117         blk_queue_make_request(md->queue, dm_request);
1118         blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
1119         md->queue->unplug_fn = dm_unplug_all;
1120         blk_queue_merge_bvec(md->queue, dm_merge_bvec);
1121
1122         md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
1123         if (!md->io_pool)
1124                 goto bad_io_pool;
1125
1126         md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
1127         if (!md->tio_pool)
1128                 goto bad_tio_pool;
1129
1130         md->bs = bioset_create(16, 0);
1131         if (!md->bs)
1132                 goto bad_no_bioset;
1133
1134         md->disk = alloc_disk(1);
1135         if (!md->disk)
1136                 goto bad_disk;
1137
1138         atomic_set(&md->pending, 0);
1139         init_waitqueue_head(&md->wait);
1140         init_waitqueue_head(&md->eventq);
1141
1142         md->disk->major = _major;
1143         md->disk->first_minor = minor;
1144         md->disk->fops = &dm_blk_dops;
1145         md->disk->queue = md->queue;
1146         md->disk->private_data = md;
1147         sprintf(md->disk->disk_name, "dm-%d", minor);
1148         add_disk(md->disk);
1149         format_dev_t(md->name, MKDEV(_major, minor));
1150
1151         md->wq = create_singlethread_workqueue("kdmflush");
1152         if (!md->wq)
1153                 goto bad_thread;
1154
1155         /* Populate the mapping, nobody knows we exist yet */
1156         spin_lock(&_minor_lock);
1157         old_md = idr_replace(&_minor_idr, md, minor);
1158         spin_unlock(&_minor_lock);
1159
1160         BUG_ON(old_md != MINOR_ALLOCED);
1161
1162         return md;
1163
1164 bad_thread:
1165         put_disk(md->disk);
1166 bad_disk:
1167         bioset_free(md->bs);
1168 bad_no_bioset:
1169         mempool_destroy(md->tio_pool);
1170 bad_tio_pool:
1171         mempool_destroy(md->io_pool);
1172 bad_io_pool:
1173         blk_cleanup_queue(md->queue);
1174 bad_queue:
1175         free_minor(minor);
1176 bad_minor:
1177         module_put(THIS_MODULE);
1178 bad_module_get:
1179         kfree(md);
1180         return NULL;
1181 }
1182
1183 static void unlock_fs(struct mapped_device *md);
1184
1185 static void free_dev(struct mapped_device *md)
1186 {
1187         int minor = MINOR(disk_devt(md->disk));
1188
1189         if (md->suspended_bdev) {
1190                 unlock_fs(md);
1191                 bdput(md->suspended_bdev);
1192         }
1193         destroy_workqueue(md->wq);
1194         mempool_destroy(md->tio_pool);
1195         mempool_destroy(md->io_pool);
1196         bioset_free(md->bs);
1197         del_gendisk(md->disk);
1198         free_minor(minor);
1199
1200         spin_lock(&_minor_lock);
1201         md->disk->private_data = NULL;
1202         spin_unlock(&_minor_lock);
1203
1204         put_disk(md->disk);
1205         blk_cleanup_queue(md->queue);
1206         module_put(THIS_MODULE);
1207         kfree(md);
1208 }
1209
1210 /*
1211  * Bind a table to the device.
1212  */
1213 static void event_callback(void *context)
1214 {
1215         unsigned long flags;
1216         LIST_HEAD(uevents);
1217         struct mapped_device *md = (struct mapped_device *) context;
1218
1219         spin_lock_irqsave(&md->uevent_lock, flags);
1220         list_splice_init(&md->uevent_list, &uevents);
1221         spin_unlock_irqrestore(&md->uevent_lock, flags);
1222
1223         dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
1224
1225         atomic_inc(&md->event_nr);
1226         wake_up(&md->eventq);
1227 }
1228
1229 static void __set_size(struct mapped_device *md, sector_t size)
1230 {
1231         set_capacity(md->disk, size);
1232
1233         mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
1234         i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1235         mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
1236 }
1237
1238 static int __bind(struct mapped_device *md, struct dm_table *t)
1239 {
1240         struct request_queue *q = md->queue;
1241         sector_t size;
1242
1243         size = dm_table_get_size(t);
1244
1245         /*
1246          * Wipe any geometry if the size of the table changed.
1247          */
1248         if (size != get_capacity(md->disk))
1249                 memset(&md->geometry, 0, sizeof(md->geometry));
1250
1251         if (md->suspended_bdev)
1252                 __set_size(md, size);
1253
1254         if (!size) {
1255                 dm_table_destroy(t);
1256                 return 0;
1257         }
1258
1259         dm_table_event_callback(t, event_callback, md);
1260
1261         write_lock(&md->map_lock);
1262         md->map = t;
1263         dm_table_set_restrictions(t, q);
1264         write_unlock(&md->map_lock);
1265
1266         return 0;
1267 }
1268
1269 static void __unbind(struct mapped_device *md)
1270 {
1271         struct dm_table *map = md->map;
1272
1273         if (!map)
1274                 return;
1275
1276         dm_table_event_callback(map, NULL, NULL);
1277         write_lock(&md->map_lock);
1278         md->map = NULL;
1279         write_unlock(&md->map_lock);
1280         dm_table_destroy(map);
1281 }
1282
1283 /*
1284  * Constructor for a new device.
1285  */
1286 int dm_create(int minor, struct mapped_device **result)
1287 {
1288         struct mapped_device *md;
1289
1290         md = alloc_dev(minor);
1291         if (!md)
1292                 return -ENXIO;
1293
1294         dm_sysfs_init(md);
1295
1296         *result = md;
1297         return 0;
1298 }
1299
1300 static struct mapped_device *dm_find_md(dev_t dev)
1301 {
1302         struct mapped_device *md;
1303         unsigned minor = MINOR(dev);
1304
1305         if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1306                 return NULL;
1307
1308         spin_lock(&_minor_lock);
1309
1310         md = idr_find(&_minor_idr, minor);
1311         if (md && (md == MINOR_ALLOCED ||
1312                    (MINOR(disk_devt(dm_disk(md))) != minor) ||
1313                    test_bit(DMF_FREEING, &md->flags))) {
1314                 md = NULL;
1315                 goto out;
1316         }
1317
1318 out:
1319         spin_unlock(&_minor_lock);
1320
1321         return md;
1322 }
1323
1324 struct mapped_device *dm_get_md(dev_t dev)
1325 {
1326         struct mapped_device *md = dm_find_md(dev);
1327
1328         if (md)
1329                 dm_get(md);
1330
1331         return md;
1332 }
1333
1334 void *dm_get_mdptr(struct mapped_device *md)
1335 {
1336         return md->interface_ptr;
1337 }
1338
1339 void dm_set_mdptr(struct mapped_device *md, void *ptr)
1340 {
1341         md->interface_ptr = ptr;
1342 }
1343
1344 void dm_get(struct mapped_device *md)
1345 {
1346         atomic_inc(&md->holders);
1347 }
1348
1349 const char *dm_device_name(struct mapped_device *md)
1350 {
1351         return md->name;
1352 }
1353 EXPORT_SYMBOL_GPL(dm_device_name);
1354
1355 void dm_put(struct mapped_device *md)
1356 {
1357         struct dm_table *map;
1358
1359         BUG_ON(test_bit(DMF_FREEING, &md->flags));
1360
1361         if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
1362                 map = dm_get_table(md);
1363                 idr_replace(&_minor_idr, MINOR_ALLOCED,
1364                             MINOR(disk_devt(dm_disk(md))));
1365                 set_bit(DMF_FREEING, &md->flags);
1366                 spin_unlock(&_minor_lock);
1367                 if (!dm_suspended(md)) {
1368                         dm_table_presuspend_targets(map);
1369                         dm_table_postsuspend_targets(map);
1370                 }
1371                 dm_sysfs_exit(md);
1372                 dm_table_put(map);
1373                 __unbind(md);
1374                 free_dev(md);
1375         }
1376 }
1377 EXPORT_SYMBOL_GPL(dm_put);
1378
1379 static int dm_wait_for_completion(struct mapped_device *md)
1380 {
1381         int r = 0;
1382
1383         while (1) {
1384                 set_current_state(TASK_INTERRUPTIBLE);
1385
1386                 smp_mb();
1387                 if (!atomic_read(&md->pending))
1388                         break;
1389
1390                 if (signal_pending(current)) {
1391                         r = -EINTR;
1392                         break;
1393                 }
1394
1395                 io_schedule();
1396         }
1397         set_current_state(TASK_RUNNING);
1398
1399         return r;
1400 }
1401
1402 /*
1403  * Process the deferred bios
1404  */
1405 static void __flush_deferred_io(struct mapped_device *md)
1406 {
1407         struct bio *c;
1408
1409         while ((c = bio_list_pop(&md->deferred))) {
1410                 if (__split_bio(md, c))
1411                         bio_io_error(c);
1412         }
1413
1414         clear_bit(DMF_BLOCK_IO, &md->flags);
1415 }
1416
1417 static void __merge_pushback_list(struct mapped_device *md)
1418 {
1419         unsigned long flags;
1420
1421         spin_lock_irqsave(&md->pushback_lock, flags);
1422         clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1423         bio_list_merge_head(&md->deferred, &md->pushback);
1424         bio_list_init(&md->pushback);
1425         spin_unlock_irqrestore(&md->pushback_lock, flags);
1426 }
1427
1428 static void dm_wq_work(struct work_struct *work)
1429 {
1430         struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1431         struct mapped_device *md = req->md;
1432
1433         down_write(&md->io_lock);
1434         __flush_deferred_io(md);
1435         up_write(&md->io_lock);
1436 }
1437
1438 static void dm_wq_queue(struct mapped_device *md, void *context,
1439                         struct dm_wq_req *req)
1440 {
1441         req->md = md;
1442         req->context = context;
1443         INIT_WORK(&req->work, dm_wq_work);
1444         queue_work(md->wq, &req->work);
1445 }
1446
1447 static void dm_queue_flush(struct mapped_device *md, void *context)
1448 {
1449         struct dm_wq_req req;
1450
1451         dm_wq_queue(md, context, &req);
1452         flush_workqueue(md->wq);
1453 }
1454
1455 /*
1456  * Swap in a new table (destroying old one).
1457  */
1458 int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1459 {
1460         int r = -EINVAL;
1461
1462         mutex_lock(&md->suspend_lock);
1463
1464         /* device must be suspended */
1465         if (!dm_suspended(md))
1466                 goto out;
1467
1468         /* without bdev, the device size cannot be changed */
1469         if (!md->suspended_bdev)
1470                 if (get_capacity(md->disk) != dm_table_get_size(table))
1471                         goto out;
1472
1473         __unbind(md);
1474         r = __bind(md, table);
1475
1476 out:
1477         mutex_unlock(&md->suspend_lock);
1478         return r;
1479 }
1480
1481 /*
1482  * Functions to lock and unlock any filesystem running on the
1483  * device.
1484  */
1485 static int lock_fs(struct mapped_device *md)
1486 {
1487         int r;
1488
1489         WARN_ON(md->frozen_sb);
1490
1491         md->frozen_sb = freeze_bdev(md->suspended_bdev);
1492         if (IS_ERR(md->frozen_sb)) {
1493                 r = PTR_ERR(md->frozen_sb);
1494                 md->frozen_sb = NULL;
1495                 return r;
1496         }
1497
1498         set_bit(DMF_FROZEN, &md->flags);
1499
1500         /* don't bdput right now, we don't want the bdev
1501          * to go away while it is locked.
1502          */
1503         return 0;
1504 }
1505
1506 static void unlock_fs(struct mapped_device *md)
1507 {
1508         if (!test_bit(DMF_FROZEN, &md->flags))
1509                 return;
1510
1511         thaw_bdev(md->suspended_bdev, md->frozen_sb);
1512         md->frozen_sb = NULL;
1513         clear_bit(DMF_FROZEN, &md->flags);
1514 }
1515
1516 /*
1517  * We need to be able to change a mapping table under a mounted
1518  * filesystem.  For example we might want to move some data in
1519  * the background.  Before the table can be swapped with
1520  * dm_bind_table, dm_suspend must be called to flush any in
1521  * flight bios and ensure that any further io gets deferred.
1522  */
1523 int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
1524 {
1525         struct dm_table *map = NULL;
1526         DECLARE_WAITQUEUE(wait, current);
1527         int r = 0;
1528         int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
1529         int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
1530
1531         mutex_lock(&md->suspend_lock);
1532
1533         if (dm_suspended(md)) {
1534                 r = -EINVAL;
1535                 goto out_unlock;
1536         }
1537
1538         map = dm_get_table(md);
1539
1540         /*
1541          * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1542          * This flag is cleared before dm_suspend returns.
1543          */
1544         if (noflush)
1545                 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1546
1547         /* This does not get reverted if there's an error later. */
1548         dm_table_presuspend_targets(map);
1549
1550         /* bdget() can stall if the pending I/Os are not flushed */
1551         if (!noflush) {
1552                 md->suspended_bdev = bdget_disk(md->disk, 0);
1553                 if (!md->suspended_bdev) {
1554                         DMWARN("bdget failed in dm_suspend");
1555                         r = -ENOMEM;
1556                         goto out;
1557                 }
1558
1559                 /*
1560                  * Flush I/O to the device. noflush supersedes do_lockfs,
1561                  * because lock_fs() needs to flush I/Os.
1562                  */
1563                 if (do_lockfs) {
1564                         r = lock_fs(md);
1565                         if (r)
1566                                 goto out;
1567                 }
1568         }
1569
1570         /*
1571          * First we set the BLOCK_IO flag so no more ios will be mapped.
1572          */
1573         down_write(&md->io_lock);
1574         set_bit(DMF_BLOCK_IO, &md->flags);
1575
1576         add_wait_queue(&md->wait, &wait);
1577         up_write(&md->io_lock);
1578
1579         /* unplug */
1580         if (map)
1581                 dm_table_unplug_all(map);
1582
1583         /*
1584          * Wait for the already-mapped ios to complete.
1585          */
1586         r = dm_wait_for_completion(md);
1587
1588         down_write(&md->io_lock);
1589         remove_wait_queue(&md->wait, &wait);
1590
1591         if (noflush)
1592                 __merge_pushback_list(md);
1593         up_write(&md->io_lock);
1594
1595         /* were we interrupted ? */
1596         if (r < 0) {
1597                 dm_queue_flush(md, NULL);
1598
1599                 unlock_fs(md);
1600                 goto out; /* pushback list is already flushed, so skip flush */
1601         }
1602
1603         dm_table_postsuspend_targets(map);
1604
1605         set_bit(DMF_SUSPENDED, &md->flags);
1606
1607 out:
1608         if (r && md->suspended_bdev) {
1609                 bdput(md->suspended_bdev);
1610                 md->suspended_bdev = NULL;
1611         }
1612
1613         dm_table_put(map);
1614
1615 out_unlock:
1616         mutex_unlock(&md->suspend_lock);
1617         return r;
1618 }
1619
1620 int dm_resume(struct mapped_device *md)
1621 {
1622         int r = -EINVAL;
1623         struct dm_table *map = NULL;
1624
1625         mutex_lock(&md->suspend_lock);
1626         if (!dm_suspended(md))
1627                 goto out;
1628
1629         map = dm_get_table(md);
1630         if (!map || !dm_table_get_size(map))
1631                 goto out;
1632
1633         r = dm_table_resume_targets(map);
1634         if (r)
1635                 goto out;
1636
1637         dm_queue_flush(md, NULL);
1638
1639         unlock_fs(md);
1640
1641         if (md->suspended_bdev) {
1642                 bdput(md->suspended_bdev);
1643                 md->suspended_bdev = NULL;
1644         }
1645
1646         clear_bit(DMF_SUSPENDED, &md->flags);
1647
1648         dm_table_unplug_all(map);
1649
1650         dm_kobject_uevent(md);
1651
1652         r = 0;
1653
1654 out:
1655         dm_table_put(map);
1656         mutex_unlock(&md->suspend_lock);
1657
1658         return r;
1659 }
1660
1661 /*-----------------------------------------------------------------
1662  * Event notification.
1663  *---------------------------------------------------------------*/
1664 void dm_kobject_uevent(struct mapped_device *md)
1665 {
1666         kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
1667 }
1668
1669 uint32_t dm_next_uevent_seq(struct mapped_device *md)
1670 {
1671         return atomic_add_return(1, &md->uevent_seq);
1672 }
1673
1674 uint32_t dm_get_event_nr(struct mapped_device *md)
1675 {
1676         return atomic_read(&md->event_nr);
1677 }
1678
1679 int dm_wait_event(struct mapped_device *md, int event_nr)
1680 {
1681         return wait_event_interruptible(md->eventq,
1682                         (event_nr != atomic_read(&md->event_nr)));
1683 }
1684
1685 void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1686 {
1687         unsigned long flags;
1688
1689         spin_lock_irqsave(&md->uevent_lock, flags);
1690         list_add(elist, &md->uevent_list);
1691         spin_unlock_irqrestore(&md->uevent_lock, flags);
1692 }
1693
1694 /*
1695  * The gendisk is only valid as long as you have a reference
1696  * count on 'md'.
1697  */
1698 struct gendisk *dm_disk(struct mapped_device *md)
1699 {
1700         return md->disk;
1701 }
1702
1703 struct kobject *dm_kobject(struct mapped_device *md)
1704 {
1705         return &md->kobj;
1706 }
1707
1708 /*
1709  * struct mapped_device should not be exported outside of dm.c
1710  * so use this check to verify that kobj is part of md structure
1711  */
1712 struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
1713 {
1714         struct mapped_device *md;
1715
1716         md = container_of(kobj, struct mapped_device, kobj);
1717         if (&md->kobj != kobj)
1718                 return NULL;
1719
1720         dm_get(md);
1721         return md;
1722 }
1723
1724 int dm_suspended(struct mapped_device *md)
1725 {
1726         return test_bit(DMF_SUSPENDED, &md->flags);
1727 }
1728
1729 int dm_noflush_suspending(struct dm_target *ti)
1730 {
1731         struct mapped_device *md = dm_table_get_md(ti->table);
1732         int r = __noflush_suspending(md);
1733
1734         dm_put(md);
1735
1736         return r;
1737 }
1738 EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1739
1740 static struct block_device_operations dm_blk_dops = {
1741         .open = dm_blk_open,
1742         .release = dm_blk_close,
1743         .ioctl = dm_blk_ioctl,
1744         .getgeo = dm_blk_getgeo,
1745         .owner = THIS_MODULE
1746 };
1747
1748 EXPORT_SYMBOL(dm_get_mapinfo);
1749
1750 /*
1751  * module hooks
1752  */
1753 module_init(dm_init);
1754 module_exit(dm_exit);
1755
1756 module_param(major, uint, 0);
1757 MODULE_PARM_DESC(major, "The major number of the device mapper");
1758 MODULE_DESCRIPTION(DM_NAME " driver");
1759 MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1760 MODULE_LICENSE("GPL");