Re: [patch 5/7] fault-injection capability for disk IO

From: Andrew Morton
Date: Thu Oct 12 2006 - 17:09:13 EST


On Thu, 12 Oct 2006 16:43:10 +0900
Akinobu Mita <akinobu.mita@xxxxxxxxx> wrote:

> @@ -3134,6 +3174,9 @@ end_io:
> if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
> goto end_io;
>
> + if (should_fail_request(bio))
> + goto end_io;
> +

hm, so we simulate IO errors by failing at make_request() time rather than
at end_that_request_last()-time, which is where IO errors would usually be
reported.

If we're testing the filesystem/VFS/etc layers then that's pretty much
equivalent. But perhaps there's an argument for doing both.

Jens, could you have a think about it please?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/