Files
linux-apfs/drivers/md/dm-linear.c
T

173 lines
3.5 KiB
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/*
* Copyright (C) 2001-2003 Sistina Software (UK) Limited.
*
* This file is released under the GPL.
*/
#include "dm.h"
#include <linux/module.h>
#include <linux/init.h>
#include <linux/blkdev.h>
#include <linux/bio.h>
#include <linux/slab.h>
#define DM_MSG_PREFIX "linear"
2005-04-16 15:20:36 -07:00
/*
* Linear: maps a linear range of a device.
*/
struct linear_c {
struct dm_dev *dev;
sector_t start;
};
/*
* Construct a linear mapping: <dev_path> <offset>
*/
static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
{
struct linear_c *lc;
2006-03-27 01:17:48 -08:00
unsigned long long tmp;
2005-04-16 15:20:36 -07:00
if (argc != 2) {
ti->error = "Invalid argument count";
2005-04-16 15:20:36 -07:00
return -EINVAL;
}
lc = kmalloc(sizeof(*lc), GFP_KERNEL);
if (lc == NULL) {
ti->error = "dm-linear: Cannot allocate linear context";
return -ENOMEM;
}
2006-03-27 01:17:48 -08:00
if (sscanf(argv[1], "%llu", &tmp) != 1) {
2005-04-16 15:20:36 -07:00
ti->error = "dm-linear: Invalid device sector";
goto bad;
}
2006-03-27 01:17:48 -08:00
lc->start = tmp;
2005-04-16 15:20:36 -07:00
if (dm_get_device(ti, argv[0], lc->start, ti->len,
dm_table_get_mode(ti->table), &lc->dev)) {
ti->error = "dm-linear: Device lookup failed";
goto bad;
}
ti->private = lc;
return 0;
bad:
kfree(lc);
return -EINVAL;
}
static void linear_dtr(struct dm_target *ti)
{
struct linear_c *lc = (struct linear_c *) ti->private;
dm_put_device(ti, lc->dev);
kfree(lc);
}
2008-07-21 12:00:38 +01:00
static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
{
struct linear_c *lc = ti->private;
return lc->start + (bi_sector - ti->begin);
}
static void linear_map_bio(struct dm_target *ti, struct bio *bio)
{
struct linear_c *lc = ti->private;
bio->bi_bdev = lc->dev->bdev;
bio->bi_sector = linear_map_sector(ti, bio->bi_sector);
}
2005-04-16 15:20:36 -07:00
static int linear_map(struct dm_target *ti, struct bio *bio,
union map_info *map_context)
{
2008-07-21 12:00:38 +01:00
linear_map_bio(ti, bio);
2005-04-16 15:20:36 -07:00
return DM_MAPIO_REMAPPED;
2005-04-16 15:20:36 -07:00
}
static int linear_status(struct dm_target *ti, status_type_t type,
char *result, unsigned int maxlen)
{
struct linear_c *lc = (struct linear_c *) ti->private;
switch (type) {
case STATUSTYPE_INFO:
result[0] = '\0';
break;
case STATUSTYPE_TABLE:
2006-03-27 01:17:48 -08:00
snprintf(result, maxlen, "%s %llu", lc->dev->name,
(unsigned long long)lc->start);
2005-04-16 15:20:36 -07:00
break;
}
return 0;
}
2006-10-03 01:15:18 -07:00
static int linear_ioctl(struct dm_target *ti, struct inode *inode,
struct file *filp, unsigned int cmd,
unsigned long arg)
{
struct linear_c *lc = (struct linear_c *) ti->private;
struct block_device *bdev = lc->dev->bdev;
struct file fake_file = {};
struct dentry fake_dentry = {};
2006-10-03 01:15:18 -07:00
fake_file.f_mode = lc->dev->mode;
2006-12-08 02:37:19 -08:00
fake_file.f_path.dentry = &fake_dentry;
fake_dentry.d_inode = bdev->bd_inode;
return blkdev_driver_ioctl(bdev->bd_inode, &fake_file, bdev->bd_disk, cmd, arg);
2006-10-03 01:15:18 -07:00
}
2008-07-21 12:00:38 +01:00
static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
struct bio_vec *biovec, int max_size)
{
struct linear_c *lc = ti->private;
struct request_queue *q = bdev_get_queue(lc->dev->bdev);
if (!q->merge_bvec_fn)
return max_size;
bvm->bi_bdev = lc->dev->bdev;
bvm->bi_sector = linear_map_sector(ti, bvm->bi_sector);
return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
}
2005-04-16 15:20:36 -07:00
static struct target_type linear_target = {
.name = "linear",
2008-07-21 12:00:38 +01:00
.version= {1, 0, 3},
2005-04-16 15:20:36 -07:00
.module = THIS_MODULE,
.ctr = linear_ctr,
.dtr = linear_dtr,
.map = linear_map,
.status = linear_status,
2006-10-03 01:15:18 -07:00
.ioctl = linear_ioctl,
2008-07-21 12:00:38 +01:00
.merge = linear_merge,
2005-04-16 15:20:36 -07:00
};
int __init dm_linear_init(void)
{
int r = dm_register_target(&linear_target);
if (r < 0)
DMERR("register failed %d", r);
2005-04-16 15:20:36 -07:00
return r;
}
void dm_linear_exit(void)
{
int r = dm_unregister_target(&linear_target);
if (r < 0)
DMERR("unregister failed %d", r);
2005-04-16 15:20:36 -07:00
}