Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2003 Christophe Saout <christophe@saout.de> |
| 3 | * |
| 4 | * This file is released under the GPL. |
| 5 | */ |
| 6 | |
Mikulas Patocka | 586e80e | 2008-10-21 17:44:59 +0100 | [diff] [blame] | 7 | #include <linux/device-mapper.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/bio.h> |
| 12 | |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 13 | #define DM_MSG_PREFIX "zero" |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | /* |
| 16 | * Construct a dummy mapping that only returns zeros |
| 17 | */ |
| 18 | static int zero_ctr(struct dm_target *ti, unsigned int argc, char **argv) |
| 19 | { |
| 20 | if (argc != 0) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 21 | ti->error = "No arguments required"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | return -EINVAL; |
| 23 | } |
| 24 | |
| 25 | return 0; |
| 26 | } |
| 27 | |
| 28 | /* |
| 29 | * Return zeros only on reads |
| 30 | */ |
| 31 | static int zero_map(struct dm_target *ti, struct bio *bio, |
| 32 | union map_info *map_context) |
| 33 | { |
| 34 | switch(bio_rw(bio)) { |
| 35 | case READ: |
| 36 | zero_fill_bio(bio); |
| 37 | break; |
| 38 | case READA: |
| 39 | /* readahead of null bytes only wastes buffer cache */ |
| 40 | return -EIO; |
| 41 | case WRITE: |
| 42 | /* writes get silently dropped */ |
| 43 | break; |
| 44 | } |
| 45 | |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 46 | bio_endio(bio, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* accepted bio, don't make new request */ |
Kiyoshi Ueda | d2a7ad2 | 2006-12-08 02:41:06 -0800 | [diff] [blame] | 49 | return DM_MAPIO_SUBMITTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | static struct target_type zero_target = { |
| 53 | .name = "zero", |
| 54 | .version = {1, 0, 0}, |
| 55 | .module = THIS_MODULE, |
| 56 | .ctr = zero_ctr, |
| 57 | .map = zero_map, |
| 58 | }; |
| 59 | |
Alasdair G Kergon | 5e198d9 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 60 | static int __init dm_zero_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | int r = dm_register_target(&zero_target); |
| 63 | |
| 64 | if (r < 0) |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 65 | DMERR("register failed %d", r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | return r; |
| 68 | } |
| 69 | |
Alasdair G Kergon | 5e198d9 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 70 | static void __exit dm_zero_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
Mikulas Patocka | 10d3bd0 | 2009-01-06 03:04:58 +0000 | [diff] [blame] | 72 | dm_unregister_target(&zero_target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | module_init(dm_zero_init) |
| 76 | module_exit(dm_zero_exit) |
| 77 | |
| 78 | MODULE_AUTHOR("Christophe Saout <christophe@saout.de>"); |
| 79 | MODULE_DESCRIPTION(DM_NAME " dummy target returning zeros"); |
| 80 | MODULE_LICENSE("GPL"); |