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

Documentation: block/diskstats: update function names

__make_request() and end_that_request_last() do no longer exist. Replace
them with the current call-site.

Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviwed-by: Jens Axboe <axboe@kernel.dk>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20220222012751.1933194-1-naohiro.aota@wdc.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Naohiro Aota and committed by
Jonathan Corbet
b089f167 024314d6

+3 -3
+3 -3
Documentation/admin-guide/iostats.rst
··· 76 76 77 77 Field 4 -- # of milliseconds spent reading (unsigned int) 78 78 This is the total number of milliseconds spent by all reads (as 79 - measured from __make_request() to end_that_request_last()). 79 + measured from blk_mq_alloc_request() to __blk_mq_end_request()). 80 80 81 81 Field 5 -- # of writes completed (unsigned long) 82 82 This is the total number of writes completed successfully. ··· 89 89 90 90 Field 8 -- # of milliseconds spent writing (unsigned int) 91 91 This is the total number of milliseconds spent by all writes (as 92 - measured from __make_request() to end_that_request_last()). 92 + measured from blk_mq_alloc_request() to __blk_mq_end_request()). 93 93 94 94 Field 9 -- # of I/Os currently in progress (unsigned int) 95 95 The only field that should go to zero. Incremented as requests are ··· 120 120 121 121 Field 15 -- # of milliseconds spent discarding (unsigned int) 122 122 This is the total number of milliseconds spent by all discards (as 123 - measured from __make_request() to end_that_request_last()). 123 + measured from blk_mq_alloc_request() to __blk_mq_end_request()). 124 124 125 125 Field 16 -- # of flush requests completed 126 126 This is the total number of flush requests completed successfully.