dm-zero.c 1.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * Copyright (C) 2003 Christophe Saout <christophe@saout.de>
 *
 * This file is released under the GPL.
 */

7
#include <linux/device-mapper.h>
L
Linus Torvalds 已提交
8 9 10 11 12

#include <linux/module.h>
#include <linux/init.h>
#include <linux/bio.h>

13 14
#define DM_MSG_PREFIX "zero"

L
Linus Torvalds 已提交
15 16 17 18 19 20
/*
 * Construct a dummy mapping that only returns zeros
 */
static int zero_ctr(struct dm_target *ti, unsigned int argc, char **argv)
{
	if (argc != 0) {
21
		ti->error = "No arguments required";
L
Linus Torvalds 已提交
22 23 24
		return -EINVAL;
	}

M
Mike Snitzer 已提交
25 26 27 28 29
	/*
	 * Silently drop discards, avoiding -EOPNOTSUPP.
	 */
	ti->num_discard_requests = 1;

L
Linus Torvalds 已提交
30 31 32 33 34 35
	return 0;
}

/*
 * Return zeros only on reads
 */
M
Mikulas Patocka 已提交
36
static int zero_map(struct dm_target *ti, struct bio *bio)
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49
{
	switch(bio_rw(bio)) {
	case READ:
		zero_fill_bio(bio);
		break;
	case READA:
		/* readahead of null bytes only wastes buffer cache */
		return -EIO;
	case WRITE:
		/* writes get silently dropped */
		break;
	}

50
	bio_endio(bio, 0);
L
Linus Torvalds 已提交
51 52

	/* accepted bio, don't make new request */
53
	return DM_MAPIO_SUBMITTED;
L
Linus Torvalds 已提交
54 55 56 57
}

static struct target_type zero_target = {
	.name   = "zero",
M
Mikulas Patocka 已提交
58
	.version = {1, 1, 0},
L
Linus Torvalds 已提交
59 60 61 62 63
	.module = THIS_MODULE,
	.ctr    = zero_ctr,
	.map    = zero_map,
};

64
static int __init dm_zero_init(void)
L
Linus Torvalds 已提交
65 66 67 68
{
	int r = dm_register_target(&zero_target);

	if (r < 0)
69
		DMERR("register failed %d", r);
L
Linus Torvalds 已提交
70 71 72 73

	return r;
}

74
static void __exit dm_zero_exit(void)
L
Linus Torvalds 已提交
75
{
76
	dm_unregister_target(&zero_target);
L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84
}

module_init(dm_zero_init)
module_exit(dm_zero_exit)

MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
MODULE_DESCRIPTION(DM_NAME " dummy target returning zeros");
MODULE_LICENSE("GPL");