2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
4 * This file is released under the GPL.
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/blkdev.h>
12 #include <linux/bio.h>
13 #include <linux/slab.h>
16 * Linear: maps a linear range of a device.
24 * Construct a linear mapping: <dev_path> <offset>
26 static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
29 unsigned long long tmp;
32 ti->error = "dm-linear: Invalid argument count";
36 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
38 ti->error = "dm-linear: Cannot allocate linear context";
42 if (sscanf(argv[1], "%llu", &tmp) != 1) {
43 ti->error = "dm-linear: Invalid device sector";
48 if (dm_get_device(ti, argv[0], lc->start, ti->len,
49 dm_table_get_mode(ti->table), &lc->dev)) {
50 ti->error = "dm-linear: Device lookup failed";
62 static void linear_dtr(struct dm_target *ti)
64 struct linear_c *lc = (struct linear_c *) ti->private;
66 dm_put_device(ti, lc->dev);
70 static int linear_map(struct dm_target *ti, struct bio *bio,
71 union map_info *map_context)
73 struct linear_c *lc = (struct linear_c *) ti->private;
75 bio->bi_bdev = lc->dev->bdev;
76 bio->bi_sector = lc->start + (bio->bi_sector - ti->begin);
81 static int linear_status(struct dm_target *ti, status_type_t type,
82 char *result, unsigned int maxlen)
84 struct linear_c *lc = (struct linear_c *) ti->private;
91 case STATUSTYPE_TABLE:
92 snprintf(result, maxlen, "%s %llu", lc->dev->name,
93 (unsigned long long)lc->start);
99 static struct target_type linear_target = {
102 .module = THIS_MODULE,
106 .status = linear_status,
109 int __init dm_linear_init(void)
111 int r = dm_register_target(&linear_target);
114 DMERR("linear: register failed %d", r);
119 void dm_linear_exit(void)
121 int r = dm_unregister_target(&linear_target);
124 DMERR("linear: unregister failed %d", r);