diff mbox series

Documentation: block/diskstats: update function names

Message ID 20220222012751.1933194-1-naohiro.aota@wdc.com (mailing list archive)
State New, archived
Headers show
Series Documentation: block/diskstats: update function names | expand

Commit Message

Naohiro Aota Feb. 22, 2022, 1:27 a.m. UTC
__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>
---
 Documentation/admin-guide/iostats.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Christoph Hellwig Feb. 22, 2022, 8:20 a.m. UTC | #1
Looks good,

Reviewed-by: Christoph Hellwig <hch@lst.de>
Jens Axboe Feb. 22, 2022, 2:01 p.m. UTC | #2
On 2/21/22 6:27 PM, Naohiro Aota wrote:
> __make_request() and end_that_request_last() do no longer exist. Replace
> them with the current call-site.

Reviwed-by: Jens Axboe <axboe@kernel.dk>

Jon, will you pick this one up?
Chaitanya Kulkarni Feb. 22, 2022, 2:18 p.m. UTC | #3
On 2/21/22 17:27, Naohiro Aota wrote:
> __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>
> ---

Looks good.

Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Jonathan Corbet Feb. 22, 2022, 3:10 p.m. UTC | #4
Jens Axboe <axboe@kernel.dk> writes:

> On 2/21/22 6:27 PM, Naohiro Aota wrote:
>> __make_request() and end_that_request_last() do no longer exist. Replace
>> them with the current call-site.
>
> Reviwed-by: Jens Axboe <axboe@kernel.dk>
>
> Jon, will you pick this one up?

Will do.

Thanks,

jon
diff mbox series

Patch

diff --git a/Documentation/admin-guide/iostats.rst b/Documentation/admin-guide/iostats.rst
index 9b14b0c2c9c4..609a3201fd4e 100644
--- a/Documentation/admin-guide/iostats.rst
+++ b/Documentation/admin-guide/iostats.rst
@@ -76,7 +76,7 @@  Field  3 -- # of sectors read (unsigned long)
 
 Field  4 -- # of milliseconds spent reading (unsigned int)
     This is the total number of milliseconds spent by all reads (as
-    measured from __make_request() to end_that_request_last()).
+    measured from blk_mq_alloc_request() to __blk_mq_end_request()).
 
 Field  5 -- # of writes completed (unsigned long)
     This is the total number of writes completed successfully.
@@ -89,7 +89,7 @@  Field  7 -- # of sectors written (unsigned long)
 
 Field  8 -- # of milliseconds spent writing (unsigned int)
     This is the total number of milliseconds spent by all writes (as
-    measured from __make_request() to end_that_request_last()).
+    measured from blk_mq_alloc_request() to __blk_mq_end_request()).
 
 Field  9 -- # of I/Os currently in progress (unsigned int)
     The only field that should go to zero. Incremented as requests are
@@ -120,7 +120,7 @@  Field 14 -- # of sectors discarded (unsigned long)
 
 Field 15 -- # of milliseconds spent discarding (unsigned int)
     This is the total number of milliseconds spent by all discards (as
-    measured from __make_request() to end_that_request_last()).
+    measured from blk_mq_alloc_request() to __blk_mq_end_request()).
 
 Field 16 -- # of flush requests completed
     This is the total number of flush requests completed successfully.