]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit - block/blk-stat.c
blk-stat: convert to callback-based statistics reporting
authorOmar Sandoval <osandov@fb.com>
Tue, 21 Mar 2017 15:56:08 +0000 (08:56 -0700)
committerJens Axboe <axboe@fb.com>
Tue, 21 Mar 2017 16:03:11 +0000 (10:03 -0600)
commit34dbad5d26e2f4b88e60f0e9ad03f99480802812
tree07aa5a1c8c06fd114cbf6f03716eb4080c7acc82
parent4875253fddd7b6d322f028ad023d44b6efb7f73b
blk-stat: convert to callback-based statistics reporting

Currently, statistics are gathered in ~0.13s windows, and users grab the
statistics whenever they need them. This is not ideal for both in-tree
users:

1. Writeback throttling wants its own dynamically sized window of
   statistics. Since the blk-stats statistics are reset after every
   window and the wbt windows don't line up with the blk-stats windows,
   wbt doesn't see every I/O.
2. Polling currently grabs the statistics on every I/O. Again, depending
   on how the window lines up, we may miss some I/Os. It's also
   unnecessary overhead to get the statistics on every I/O; the hybrid
   polling heuristic would be just as happy with the statistics from the
   previous full window.

This reworks the blk-stats infrastructure to be callback-based: users
register a callback that they want called at a given time with all of
the statistics from the window during which the callback was active.
Users can dynamically bucketize the statistics. wbt and polling both
currently use read vs. write, but polling can be extended to further
subdivide based on request size.

The callbacks are kept on an RCU list, and each callback has percpu
stats buffers. There will only be a few users, so the overhead on the
I/O completion side is low. The stats flushing is also simplified
considerably: since the timer function is responsible for clearing the
statistics, we don't have to worry about stale statistics.

wbt is a trivial conversion. After the conversion, the windowing problem
mentioned above is fixed.

For polling, we register an extra callback that caches the previous
window's statistics in the struct request_queue for the hybrid polling
heuristic to use.

Since we no longer have a single stats buffer for the request queue,
this also removes the sysfs and debugfs stats entries. To replace those,
we add a debugfs entry for the poll statistics.

Signed-off-by: Omar Sandoval <osandov@fb.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
block/blk-core.c
block/blk-mq-debugfs.c
block/blk-mq.c
block/blk-mq.h
block/blk-stat.c
block/blk-stat.h
block/blk-sysfs.c
block/blk-wbt.c
block/blk-wbt.h
include/linux/blk_types.h
include/linux/blkdev.h