2 * Copyright (C) 2003 Jana Saout <jana@saout.de>
4 * This file is released under the GPL.
7 #include <linux/device-mapper.h>
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/bio.h>
13 #define DM_MSG_PREFIX "zero"
16 * Construct a dummy mapping that only returns zeros
18 static int zero_ctr(struct dm_target
*ti
, unsigned int argc
, char **argv
)
21 ti
->error
= "No arguments required";
26 * Silently drop discards, avoiding -EOPNOTSUPP.
28 ti
->num_discard_bios
= 1;
34 * Return zeros only on reads
36 static int zero_map(struct dm_target
*ti
, struct bio
*bio
)
38 switch (bio_op(bio
)) {
40 if (bio
->bi_opf
& REQ_RAHEAD
) {
41 /* readahead of null bytes only wastes buffer cache */
47 /* writes get silently dropped */
55 /* accepted bio, don't make new request */
56 return DM_MAPIO_SUBMITTED
;
59 static struct target_type zero_target
= {
62 .features
= DM_TARGET_NOWAIT
,
63 .module
= THIS_MODULE
,
68 static int __init
dm_zero_init(void)
70 int r
= dm_register_target(&zero_target
);
73 DMERR("register failed %d", r
);
78 static void __exit
dm_zero_exit(void)
80 dm_unregister_target(&zero_target
);
83 module_init(dm_zero_init
)
84 module_exit(dm_zero_exit
)
86 MODULE_AUTHOR("Jana Saout <jana@saout.de>");
87 MODULE_DESCRIPTION(DM_NAME
" dummy target returning zeros");
88 MODULE_LICENSE("GPL");