Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

docs: device-mapper: fixed spelling mistakes in documentation

found/fixed the following typos

- flushs -> flushes

in `Documentation/admin-guide/device-mapper/delay.rst`

Signed-off-by: Soham Metha <sohammetha01@gmail.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>

authored by

Soham Metha and committed by
Mikulas Patocka
a86f1b40 31a9403b

+3 -3
+3 -3
Documentation/admin-guide/device-mapper/delay.rst
··· 3 3 ======== 4 4 5 5 Device-Mapper's "delay" target delays reads and/or writes 6 - and/or flushs and optionally maps them to different devices. 6 + and/or flushes and optionally maps them to different devices. 7 7 8 8 Arguments:: 9 9 ··· 40 40 #!/bin/sh 41 41 # 42 42 # Create mapped device delaying write and flush operations for 400ms and 43 - # splitting reads to device $1 but writes and flushs to different device $2 43 + # splitting reads to device $1 but writes and flushes to different device $2 44 44 # to different offsets of 2048 and 4096 sectors respectively. 45 45 # 46 46 dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 2048 0 $2 4096 400" ··· 48 48 :: 49 49 #!/bin/sh 50 50 # 51 - # Create mapped device delaying reads for 50ms, writes for 100ms and flushs for 333ms 51 + # Create mapped device delaying reads for 50ms, writes for 100ms and flushes for 333ms 52 52 # onto the same backing device at offset 0 sectors. 53 53 # 54 54 dmsetup create delayed --table "0 `blockdev --getsz $1` delay $1 0 50 $2 0 100 $1 0 333"