Btrfs: fix enospc error caused by wrong checks of the chunk
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / md / dm-linear.c
blob3921e3bb43c15a107c90e4769fa682b1041d9a7a
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;
33 if (argc != 2) {
34 ti->error = "Invalid argument count";
35 return -EINVAL;
38 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
39 if (lc == NULL) {
40 ti->error = "dm-linear: Cannot allocate linear context";
41 return -ENOMEM;
44 if (sscanf(argv[1], "%llu", &tmp) != 1) {
45 ti->error = "dm-linear: Invalid device sector";
46 goto bad;
48 lc->start = tmp;
50 if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev)) {
51 ti->error = "dm-linear: Device lookup failed";
52 goto bad;
55 ti->num_flush_requests = 1;
56 ti->num_discard_requests = 1;
57 ti->private = lc;
58 return 0;
60 bad:
61 kfree(lc);
62 return -EINVAL;
65 static void linear_dtr(struct dm_target *ti)
67 struct linear_c *lc = (struct linear_c *) ti->private;
69 dm_put_device(ti, lc->dev);
70 kfree(lc);
73 static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
75 struct linear_c *lc = ti->private;
77 return lc->start + dm_target_offset(ti, bi_sector);
80 static void linear_map_bio(struct dm_target *ti, struct bio *bio)
82 struct linear_c *lc = ti->private;
84 bio->bi_bdev = lc->dev->bdev;
85 if (bio_sectors(bio))
86 bio->bi_sector = linear_map_sector(ti, bio->bi_sector);
89 static int linear_map(struct dm_target *ti, struct bio *bio,
90 union map_info *map_context)
92 linear_map_bio(ti, bio);
94 return DM_MAPIO_REMAPPED;
97 static int linear_status(struct dm_target *ti, status_type_t type,
98 char *result, unsigned int maxlen)
100 struct linear_c *lc = (struct linear_c *) ti->private;
102 switch (type) {
103 case STATUSTYPE_INFO:
104 result[0] = '\0';
105 break;
107 case STATUSTYPE_TABLE:
108 snprintf(result, maxlen, "%s %llu", lc->dev->name,
109 (unsigned long long)lc->start);
110 break;
112 return 0;
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 return __blkdev_driver_ioctl(lc->dev->bdev, lc->dev->mode, cmd, arg);
122 static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
123 struct bio_vec *biovec, int max_size)
125 struct linear_c *lc = ti->private;
126 struct request_queue *q = bdev_get_queue(lc->dev->bdev);
128 if (!q->merge_bvec_fn)
129 return max_size;
131 bvm->bi_bdev = lc->dev->bdev;
132 bvm->bi_sector = linear_map_sector(ti, bvm->bi_sector);
134 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
137 static int linear_iterate_devices(struct dm_target *ti,
138 iterate_devices_callout_fn fn, void *data)
140 struct linear_c *lc = ti->private;
142 return fn(ti, lc->dev, lc->start, ti->len, data);
145 static struct target_type linear_target = {
146 .name = "linear",
147 .version = {1, 1, 0},
148 .module = THIS_MODULE,
149 .ctr = linear_ctr,
150 .dtr = linear_dtr,
151 .map = linear_map,
152 .status = linear_status,
153 .ioctl = linear_ioctl,
154 .merge = linear_merge,
155 .iterate_devices = linear_iterate_devices,
158 int __init dm_linear_init(void)
160 int r = dm_register_target(&linear_target);
162 if (r < 0)
163 DMERR("register failed %d", r);
165 return r;
168 void dm_linear_exit(void)
170 dm_unregister_target(&linear_target);