[PATCH] x86: fix stack trace facility level
[linux-2.6/kvm.git] / drivers / md / dm-zero.c
blob51c0639b248770e25405af6b07fbade900318df7
1 /*
2 * Copyright (C) 2003 Christophe Saout <christophe@saout.de>
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/bio.h>
14 * Construct a dummy mapping that only returns zeros
16 static int zero_ctr(struct dm_target *ti, unsigned int argc, char **argv)
18 if (argc != 0) {
19 ti->error = "dm-zero: No arguments required";
20 return -EINVAL;
23 return 0;
27 * Return zeros only on reads
29 static int zero_map(struct dm_target *ti, struct bio *bio,
30 union map_info *map_context)
32 switch(bio_rw(bio)) {
33 case READ:
34 zero_fill_bio(bio);
35 break;
36 case READA:
37 /* readahead of null bytes only wastes buffer cache */
38 return -EIO;
39 case WRITE:
40 /* writes get silently dropped */
41 break;
44 bio_endio(bio, bio->bi_size, 0);
46 /* accepted bio, don't make new request */
47 return 0;
50 static struct target_type zero_target = {
51 .name = "zero",
52 .version = {1, 0, 0},
53 .module = THIS_MODULE,
54 .ctr = zero_ctr,
55 .map = zero_map,
58 static int __init dm_zero_init(void)
60 int r = dm_register_target(&zero_target);
62 if (r < 0)
63 DMERR("zero: register failed %d", r);
65 return r;
68 static void __exit dm_zero_exit(void)
70 int r = dm_unregister_target(&zero_target);
72 if (r < 0)
73 DMERR("zero: unregister failed %d", r);
76 module_init(dm_zero_init)
77 module_exit(dm_zero_exit)
79 MODULE_AUTHOR("Christophe Saout <christophe@saout.de>");
80 MODULE_DESCRIPTION(DM_NAME " dummy target returning zeros");
81 MODULE_LICENSE("GPL");