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