mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
4246a0b63b
Currently we have two different ways to signal an I/O error on a BIO: (1) by clearing the BIO_UPTODATE flag (2) by returning a Linux errno value to the bi_end_io callback The first one has the drawback of only communicating a single possible error (-EIO), and the second one has the drawback of not beeing persistent when bios are queued up, and are not passed along from child to parent bio in the ever more popular chaining scenario. Having both mechanisms available has the additional drawback of utterly confusing driver authors and introducing bugs where various I/O submitters only deal with one of them, and the others have to add boilerplate code to deal with both kinds of error returns. So add a new bi_error field to store an errno value directly in struct bio and remove the existing mechanisms to clean all this up. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Hannes Reinecke <hare@suse.de> Reviewed-by: NeilBrown <neilb@suse.com> Signed-off-by: Jens Axboe <axboe@fb.com>
85 lines
1.5 KiB
C
85 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2003 Jana Saout <jana@saout.de>
|
|
*
|
|
* This file is released under the GPL.
|
|
*/
|
|
|
|
#include <linux/device-mapper.h>
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/bio.h>
|
|
|
|
#define DM_MSG_PREFIX "zero"
|
|
|
|
/*
|
|
* Construct a dummy mapping that only returns zeros
|
|
*/
|
|
static int zero_ctr(struct dm_target *ti, unsigned int argc, char **argv)
|
|
{
|
|
if (argc != 0) {
|
|
ti->error = "No arguments required";
|
|
return -EINVAL;
|
|
}
|
|
|
|
/*
|
|
* Silently drop discards, avoiding -EOPNOTSUPP.
|
|
*/
|
|
ti->num_discard_bios = 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Return zeros only on reads
|
|
*/
|
|
static int zero_map(struct dm_target *ti, struct bio *bio)
|
|
{
|
|
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;
|
|
}
|
|
|
|
bio_endio(bio);
|
|
|
|
/* accepted bio, don't make new request */
|
|
return DM_MAPIO_SUBMITTED;
|
|
}
|
|
|
|
static struct target_type zero_target = {
|
|
.name = "zero",
|
|
.version = {1, 1, 0},
|
|
.module = THIS_MODULE,
|
|
.ctr = zero_ctr,
|
|
.map = zero_map,
|
|
};
|
|
|
|
static int __init dm_zero_init(void)
|
|
{
|
|
int r = dm_register_target(&zero_target);
|
|
|
|
if (r < 0)
|
|
DMERR("register failed %d", r);
|
|
|
|
return r;
|
|
}
|
|
|
|
static void __exit dm_zero_exit(void)
|
|
{
|
|
dm_unregister_target(&zero_target);
|
|
}
|
|
|
|
module_init(dm_zero_init)
|
|
module_exit(dm_zero_exit)
|
|
|
|
MODULE_AUTHOR("Jana Saout <jana@saout.de>");
|
|
MODULE_DESCRIPTION(DM_NAME " dummy target returning zeros");
|
|
MODULE_LICENSE("GPL");
|