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

docs: block: fix pdf output

Add an extra blank line and use a markup for the enumberated
list, in order to make it possible to build the block book
on pdf format.

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

+5 -4
+5 -4
Documentation/block/biodoc.rst
··· 9 9 here might still be useful. 10 10 11 11 Notes Written on Jan 15, 2002: 12 + 12 13 - Jens Axboe <jens.axboe@oracle.com> 13 14 - Suparna Bhattacharya <suparna@in.ibm.com> 14 15 ··· 173 172 174 173 New queue flags: 175 174 176 - QUEUE_FLAG_CLUSTER (see 3.2.2) 177 - QUEUE_FLAG_QUEUED (see 3.2.4) 175 + - QUEUE_FLAG_CLUSTER (see 3.2.2) 176 + - QUEUE_FLAG_QUEUED (see 3.2.4) 178 177 179 178 180 179 ii. High-mem i/o capabilities are now considered the default ··· 479 478 - Splitting of an i/o request across multiple devices (as in the case of 480 479 lvm or raid) is achieved by cloning the bio (where the clone points to 481 480 the same bi_io_vec array, but with the index and size accordingly modified) 482 - - A linked list of bios is used as before for unrelated merges [*]_ - this 481 + - A linked list of bios is used as before for unrelated merges [#]_ - this 483 482 avoids reallocs and makes independent completions easier to handle. 484 483 - Code that traverses the req list can find all the segments of a bio 485 484 by using rq_for_each_segment. This handles the fact that a request ··· 490 489 [TBD: Should preferably also have a bi_voffset and bi_vlen to avoid modifying 491 490 bi_offset an len fields] 492 491 493 - .. [*] 492 + .. [#] 494 493 495 494 unrelated merges -- a request ends up containing two or more bios that 496 495 didn't originate from the same place.