2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
4 * This file is released under the GPL.
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.
26 * Construct a linear mapping: <dev_path> <offset>
28 static int linear_ctr(struct dm_target
*ti
, unsigned int argc
, char **argv
)
31 unsigned long long tmp
;
36 ti
->error
= "Invalid argument count";
40 lc
= kmalloc(sizeof(*lc
), GFP_KERNEL
);
42 ti
->error
= "Cannot allocate linear context";
47 if (sscanf(argv
[1], "%llu%c", &tmp
, &dummy
) != 1) {
48 ti
->error
= "Invalid device sector";
53 ret
= dm_get_device(ti
, argv
[0], dm_table_get_mode(ti
->table
), &lc
->dev
);
55 ti
->error
= "Device lookup failed";
59 ti
->num_flush_bios
= 1;
60 ti
->num_discard_bios
= 1;
61 ti
->num_write_same_bios
= 1;
70 static void linear_dtr(struct dm_target
*ti
)
72 struct linear_c
*lc
= (struct linear_c
*) ti
->private;
74 dm_put_device(ti
, lc
->dev
);
78 static sector_t
linear_map_sector(struct dm_target
*ti
, sector_t bi_sector
)
80 struct linear_c
*lc
= ti
->private;
82 return lc
->start
+ dm_target_offset(ti
, bi_sector
);
85 static void linear_map_bio(struct dm_target
*ti
, struct bio
*bio
)
87 struct linear_c
*lc
= ti
->private;
89 bio
->bi_bdev
= lc
->dev
->bdev
;
91 bio
->bi_iter
.bi_sector
=
92 linear_map_sector(ti
, bio
->bi_iter
.bi_sector
);
95 static int linear_map(struct dm_target
*ti
, struct bio
*bio
)
97 linear_map_bio(ti
, bio
);
99 return DM_MAPIO_REMAPPED
;
102 static void linear_status(struct dm_target
*ti
, status_type_t type
,
103 unsigned status_flags
, char *result
, unsigned maxlen
)
105 struct linear_c
*lc
= (struct linear_c
*) ti
->private;
108 case STATUSTYPE_INFO
:
112 case STATUSTYPE_TABLE
:
113 snprintf(result
, maxlen
, "%s %llu", lc
->dev
->name
,
114 (unsigned long long)lc
->start
);
119 static int linear_prepare_ioctl(struct dm_target
*ti
,
120 struct block_device
**bdev
, fmode_t
*mode
)
122 struct linear_c
*lc
= (struct linear_c
*) ti
->private;
123 struct dm_dev
*dev
= lc
->dev
;
128 * Only pass ioctls through if the device sizes match exactly.
131 ti
->len
!= i_size_read(dev
->bdev
->bd_inode
) >> SECTOR_SHIFT
)
136 static int linear_iterate_devices(struct dm_target
*ti
,
137 iterate_devices_callout_fn fn
, void *data
)
139 struct linear_c
*lc
= ti
->private;
141 return fn(ti
, lc
->dev
, lc
->start
, ti
->len
, data
);
144 static struct target_type linear_target
= {
146 .version
= {1, 2, 1},
147 .module
= THIS_MODULE
,
151 .status
= linear_status
,
152 .prepare_ioctl
= linear_prepare_ioctl
,
153 .iterate_devices
= linear_iterate_devices
,
156 int __init
dm_linear_init(void)
158 int r
= dm_register_target(&linear_target
);
161 DMERR("register failed %d", r
);
166 void dm_linear_exit(void)
168 dm_unregister_target(&linear_target
);