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

block: fix spelling and grammar for in writeback_cache_control.rst

Suggested-by: Damien Le Moal <dlemoal@kernel.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Link: https://lore.kernel.org/r/20240619154623.450048-3-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by

Christoph Hellwig and committed by
Jens Axboe
4e54ea72 f6860b60

+3 -3
+3 -3
Documentation/block/writeback_cache_control.rst
··· 70 70 Implementation details for bio based block drivers 71 71 -------------------------------------------------- 72 72 73 - For bio based drivers the REQ_PREFLUSH and REQ_FUA bit are simplify passed on 74 - to the driver if the drivers sets the BLK_FEAT_WRITE_CACHE flag and the drivers 73 + For bio based drivers the REQ_PREFLUSH and REQ_FUA bit are simply passed on to 74 + the driver if the driver sets the BLK_FEAT_WRITE_CACHE flag and the driver 75 75 needs to handle them. 76 76 77 77 *NOTE*: The REQ_FUA bit also gets passed on when the BLK_FEAT_FUA flags is ··· 89 89 with a payload are automatically turned into a sequence of a REQ_OP_FLUSH 90 90 request followed by the actual write by the block layer. 91 91 92 - When the BLK_FEAT_FUA flags is set, the REQ_FUA bit simplify passed on for the 92 + When the BLK_FEAT_FUA flags is set, the REQ_FUA bit is simply passed on for the 93 93 REQ_OP_WRITE request, else a REQ_OP_FLUSH request is sent by the block layer 94 94 after the completion of the write request for bio submissions with the REQ_FUA 95 95 bit set.