diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2022-07-11 23:30:52 +0300 |
---|---|---|
committer | Mike Snitzer <snitzer@kernel.org> | 2022-07-14 22:52:32 +0300 |
commit | 2c6e755b49d273243431f5f1184654e71221fc78 (patch) | |
tree | 2b2e5d478aa4a6ab6989f96b5bd4048326aa1bb6 /Documentation/admin-guide | |
parent | 9bc0c92e4b82adb017026dbb2aa816b1ac2bef31 (diff) | |
download | linux-2c6e755b49d273243431f5f1184654e71221fc78.tar.xz |
dm writecache: count number of blocks read, not number of read bios
Change dm-writecache, so that it counts the number of blocks read
instead of the number of read bios. Bios can be split and requeued
using the dm_accept_partial_bio function, so counting bios caused
inaccurate results.
Fixes: e3a35d03407c ("dm writecache: add event counters")
Reported-by: Yu Kuai <yukuai1@huaweicloud.com>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'Documentation/admin-guide')
-rw-r--r-- | Documentation/admin-guide/device-mapper/writecache.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/admin-guide/device-mapper/writecache.rst b/Documentation/admin-guide/device-mapper/writecache.rst index 2104812f0281..1fab82408ef1 100644 --- a/Documentation/admin-guide/device-mapper/writecache.rst +++ b/Documentation/admin-guide/device-mapper/writecache.rst @@ -80,8 +80,8 @@ Status: 2. the number of blocks 3. the number of free blocks 4. the number of blocks under writeback -5. the number of read requests -6. the number of read requests that hit the cache +5. the number of read blocks +6. the number of read blocks that hit the cache 7. the number of write requests 8. the number of write requests that hit uncommitted block 9. the number of write requests that hit committed block |