[PATCH] kprobes: Allow multiple kprobes at the same address
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / md / dm-linear.c
blob6a2cd5dc8a6352879d396e6a977b6508730ba0d2
1 /*
2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
4 * This file is released under the GPL.
5 */
7 #include "dm.h"
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.
18 struct linear_c {
19 struct dm_dev *dev;
20 sector_t start;
24 * Construct a linear mapping: <dev_path> <offset>
26 static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
28 struct linear_c *lc;
30 if (argc != 2) {
31 ti->error = "dm-linear: Invalid argument count";
32 return -EINVAL;
35 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
36 if (lc == NULL) {
37 ti->error = "dm-linear: Cannot allocate linear context";
38 return -ENOMEM;
41 if (sscanf(argv[1], SECTOR_FORMAT, &lc->start) != 1) {
42 ti->error = "dm-linear: Invalid device sector";
43 goto bad;
46 if (dm_get_device(ti, argv[0], lc->start, ti->len,
47 dm_table_get_mode(ti->table), &lc->dev)) {
48 ti->error = "dm-linear: Device lookup failed";
49 goto bad;
52 ti->private = lc;
53 return 0;
55 bad:
56 kfree(lc);
57 return -EINVAL;
60 static void linear_dtr(struct dm_target *ti)
62 struct linear_c *lc = (struct linear_c *) ti->private;
64 dm_put_device(ti, lc->dev);
65 kfree(lc);
68 static int linear_map(struct dm_target *ti, struct bio *bio,
69 union map_info *map_context)
71 struct linear_c *lc = (struct linear_c *) ti->private;
73 bio->bi_bdev = lc->dev->bdev;
74 bio->bi_sector = lc->start + (bio->bi_sector - ti->begin);
76 return 1;
79 static int linear_status(struct dm_target *ti, status_type_t type,
80 char *result, unsigned int maxlen)
82 struct linear_c *lc = (struct linear_c *) ti->private;
84 switch (type) {
85 case STATUSTYPE_INFO:
86 result[0] = '\0';
87 break;
89 case STATUSTYPE_TABLE:
90 snprintf(result, maxlen, "%s " SECTOR_FORMAT, lc->dev->name,
91 lc->start);
92 break;
94 return 0;
97 static struct target_type linear_target = {
98 .name = "linear",
99 .version= {1, 0, 1},
100 .module = THIS_MODULE,
101 .ctr = linear_ctr,
102 .dtr = linear_dtr,
103 .map = linear_map,
104 .status = linear_status,
107 int __init dm_linear_init(void)
109 int r = dm_register_target(&linear_target);
111 if (r < 0)
112 DMERR("linear: register failed %d", r);
114 return r;
117 void dm_linear_exit(void)
119 int r = dm_unregister_target(&linear_target);
121 if (r < 0)
122 DMERR("linear: unregister failed %d", r);