[SCSI] lpfc 8.3.43: Fixed spinlock inversion problem.
[linux-2.6/btrfs-unstable.git] / drivers / md / dm-linear.c
blob4f99d267340cdb48c3a7b64edcdd4ed9a7fd48ea
1 /*
2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
4 * This file is released under the GPL.
5 */
7 #include "dm.h"
8 #include <linux/module.h>
9 #include <linux/init.h>
10 #include <linux/blkdev.h>
11 #include <linux/bio.h>
12 #include <linux/slab.h>
13 #include <linux/device-mapper.h>
15 #define DM_MSG_PREFIX "linear"
18 * Linear: maps a linear range of a device.
20 struct linear_c {
21 struct dm_dev *dev;
22 sector_t start;
26 * Construct a linear mapping: <dev_path> <offset>
28 static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
30 struct linear_c *lc;
31 unsigned long long tmp;
32 char dummy;
34 if (argc != 2) {
35 ti->error = "Invalid argument count";
36 return -EINVAL;
39 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
40 if (lc == NULL) {
41 ti->error = "dm-linear: Cannot allocate linear context";
42 return -ENOMEM;
45 if (sscanf(argv[1], "%llu%c", &tmp, &dummy) != 1) {
46 ti->error = "dm-linear: Invalid device sector";
47 goto bad;
49 lc->start = tmp;
51 if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev)) {
52 ti->error = "dm-linear: Device lookup failed";
53 goto bad;
56 ti->num_flush_bios = 1;
57 ti->num_discard_bios = 1;
58 ti->num_write_same_bios = 1;
59 ti->private = lc;
60 return 0;
62 bad:
63 kfree(lc);
64 return -EINVAL;
67 static void linear_dtr(struct dm_target *ti)
69 struct linear_c *lc = (struct linear_c *) ti->private;
71 dm_put_device(ti, lc->dev);
72 kfree(lc);
75 static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
77 struct linear_c *lc = ti->private;
79 return lc->start + dm_target_offset(ti, bi_sector);
82 static void linear_map_bio(struct dm_target *ti, struct bio *bio)
84 struct linear_c *lc = ti->private;
86 bio->bi_bdev = lc->dev->bdev;
87 if (bio_sectors(bio))
88 bio->bi_sector = linear_map_sector(ti, bio->bi_sector);
91 static int linear_map(struct dm_target *ti, struct bio *bio)
93 linear_map_bio(ti, bio);
95 return DM_MAPIO_REMAPPED;
98 static void linear_status(struct dm_target *ti, status_type_t type,
99 unsigned status_flags, char *result, unsigned maxlen)
101 struct linear_c *lc = (struct linear_c *) ti->private;
103 switch (type) {
104 case STATUSTYPE_INFO:
105 result[0] = '\0';
106 break;
108 case STATUSTYPE_TABLE:
109 snprintf(result, maxlen, "%s %llu", lc->dev->name,
110 (unsigned long long)lc->start);
111 break;
115 static int linear_ioctl(struct dm_target *ti, unsigned int cmd,
116 unsigned long arg)
118 struct linear_c *lc = (struct linear_c *) ti->private;
119 struct dm_dev *dev = lc->dev;
120 int r = 0;
123 * Only pass ioctls through if the device sizes match exactly.
125 if (lc->start ||
126 ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT)
127 r = scsi_verify_blk_ioctl(NULL, cmd);
129 return r ? : __blkdev_driver_ioctl(dev->bdev, dev->mode, cmd, arg);
132 static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
133 struct bio_vec *biovec, int max_size)
135 struct linear_c *lc = ti->private;
136 struct request_queue *q = bdev_get_queue(lc->dev->bdev);
138 if (!q->merge_bvec_fn)
139 return max_size;
141 bvm->bi_bdev = lc->dev->bdev;
142 bvm->bi_sector = linear_map_sector(ti, bvm->bi_sector);
144 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
147 static int linear_iterate_devices(struct dm_target *ti,
148 iterate_devices_callout_fn fn, void *data)
150 struct linear_c *lc = ti->private;
152 return fn(ti, lc->dev, lc->start, ti->len, data);
155 static struct target_type linear_target = {
156 .name = "linear",
157 .version = {1, 2, 1},
158 .module = THIS_MODULE,
159 .ctr = linear_ctr,
160 .dtr = linear_dtr,
161 .map = linear_map,
162 .status = linear_status,
163 .ioctl = linear_ioctl,
164 .merge = linear_merge,
165 .iterate_devices = linear_iterate_devices,
168 int __init dm_linear_init(void)
170 int r = dm_register_target(&linear_target);
172 if (r < 0)
173 DMERR("register failed %d", r);
175 return r;
178 void dm_linear_exit(void)
180 dm_unregister_target(&linear_target);