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

docs: device-mapper: fix typos in delay.rst and vdo-design.rst

Fixed the following typos in device-mapper documentation:
- explicitely -> explicitly
- approriate -> appropriate

Signed-off-by: Shubham Sharma <slopixelz@gmail.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>

authored by

Shubham Sharma and committed by
Mikulas Patocka
5d1c8294 c17b750b

+2 -2
+1 -1
Documentation/admin-guide/device-mapper/delay.rst
··· 18 18 to write and flush operations on optionally different write_device with 19 19 optionally different sector offset 20 20 21 - 9: same as 6 arguments plus define flush_offset and flush_delay explicitely 21 + 9: same as 6 arguments plus define flush_offset and flush_delay explicitly 22 22 on/with optionally different flush_device/flush_offset. 23 23 24 24 Offsets are specified in sectors.
+1 -1
Documentation/admin-guide/device-mapper/vdo-design.rst
··· 600 600 All storage within vdo is managed as 4KB blocks, but it can accept writes 601 601 as small as 512 bytes. Processing a write that is smaller than 4K requires 602 602 a read-modify-write operation that reads the relevant 4K block, copies the 603 - new data over the approriate sectors of the block, and then launches a 603 + new data over the appropriate sectors of the block, and then launches a 604 604 write operation for the modified data block. The read and write stages of 605 605 this operation are nearly identical to the normal read and write 606 606 operations, and a single data_vio is used throughout this operation.