Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / Documentation / admin-guide / device-mapper / dm-flakey.rst
blob86138735879d023a68c115e2a970e2325d452fa1
1 =========
2 dm-flakey
3 =========
5 This target is the same as the linear target except that it exhibits
6 unreliable behaviour periodically.  It's been found useful in simulating
7 failing devices for testing purposes.
9 Starting from the time the table is loaded, the device is available for
10 <up interval> seconds, then exhibits unreliable behaviour for <down
11 interval> seconds, and then this cycle repeats.
13 Also, consider using this in combination with the dm-delay target too,
14 which can delay reads and writes and/or send them to different
15 underlying devices.
17 Table parameters
18 ----------------
22   <dev path> <offset> <up interval> <down interval> \
23     [<num_features> [<feature arguments>]]
25 Mandatory parameters:
27     <dev path>:
28         Full pathname to the underlying block-device, or a
29         "major:minor" device-number.
30     <offset>:
31         Starting sector within the device.
32     <up interval>:
33         Number of seconds device is available.
34     <down interval>:
35         Number of seconds device returns errors.
37 Optional feature parameters:
39   If no feature parameters are present, during the periods of
40   unreliability, all I/O returns errors.
42   drop_writes:
43         All write I/O is silently ignored.
44         Read I/O is handled correctly.
46   error_writes:
47         All write I/O is failed with an error signalled.
48         Read I/O is handled correctly.
50   corrupt_bio_byte <Nth_byte> <direction> <value> <flags>:
51         During <down interval>, replace <Nth_byte> of the data of
52         each matching bio with <value>.
54     <Nth_byte>:
55         The offset of the byte to replace.
56         Counting starts at 1, to replace the first byte.
57     <direction>:
58         Either 'r' to corrupt reads or 'w' to corrupt writes.
59         'w' is incompatible with drop_writes.
60     <value>:
61         The value (from 0-255) to write.
62     <flags>:
63         Perform the replacement only if bio->bi_opf has all the
64         selected flags set.
66 Examples:
68 Replaces the 32nd byte of READ bios with the value 1::
70   corrupt_bio_byte 32 r 1 0
72 Replaces the 224th byte of REQ_META (=32) bios with the value 0::
74   corrupt_bio_byte 224 w 0 32