All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] block: consolidate struct request timestamp fields
@ 2018-05-02 17:34 Omar Sandoval
  2018-05-02 17:34 ` [PATCH 1/7] block: move some wbt helpers to blk-wbt.c Omar Sandoval
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Omar Sandoval @ 2018-05-02 17:34 UTC (permalink / raw)
  To: linux-block; +Cc: Jens Axboe, kernel-team

From: Omar Sandoval <osandov@fb.com>

Currently, struct request has four timestamp fields:

- start_time (jiffies), marked at get_request() time and used for
  iostats
- issue_stat (ktime nanoseconds, with some bits shared with wbt and
  io.low), marked at start_request() time and used for accounting the
  time spent in the device for blk-stats (i.e., wbt, kyber, hybrid
  polling)
- start_time_ns (sched_clock nanoseconds), also marked at get_request()
  time, used for CFQ and BFQ cgroups support
- io_start_time_ns (sched_clock nanoseconds), also marked at
  start_request() time and also used for CFQ and BFQ

Clearly, there's some redundancy here. This patch series consolidates
these four timestamps into two, both of which are in ktime nanoseconds.
This shaves off up to 16 bytes from struct request, gets rid of the
usage of sched_clock(), and actually removes lines of code.

Patches 1 and 2 do some prep in wbt. Patch 3 does some prep in io.low.
Patch 4 splits up issue_stat into just a timestamp and separate fields
to fill a hole in struct request. Patch 5 does some prep in CFQ and BFQ.
Patch 6 allows us to save a call to ktime_get(). Patch 7 does the final
consolidation.

Please take a look. I added a blktest (block/018) to sanity check
iostats, but other stuff is harder to test so it could use some eyes.
Thanks!

Omar Sandoval (7):
  block: move some wbt helpers to blk-wbt.c
  block: pass struct request instead of struct blk_issue_stat to wbt
  block: replace bio->bi_issue_stat with u64
  block: get rid of struct blk_issue_stat
  block: use ktime_get_ns() instead of sched_clock() for cfq and bfq
  block: move blk_stat_add() to __blk_mq_end_request()
  block: consolidate struct request timestamp fields

 block/bfq-cgroup.c        | 40 ++++++++++++------------
 block/bfq-iosched.c       |  4 +--
 block/bfq-iosched.h       | 10 +++---
 block/blk-core.c          | 32 +++++++++++---------
 block/blk-merge.c         | 11 +++----
 block/blk-mq.c            | 33 +++++++++++---------
 block/blk-stat.c          | 10 ++----
 block/blk-stat.h          | 45 +--------------------------
 block/blk-throttle.c      | 53 ++++++++++++++++++++++++--------
 block/blk-wbt.c           | 59 +++++++++++++++++++++++-------------
 block/blk-wbt.h           | 47 +++++++++-------------------
 block/blk.h               |  2 +-
 block/cfq-iosched.c       | 64 ++++++++++++++++++---------------------
 block/kyber-iosched.c     |  6 ++--
 drivers/md/dm-rq.c        |  2 +-
 include/linux/blk_types.h |  6 +---
 include/linux/blkdev.h    | 61 +++++++++----------------------------
 17 files changed, 214 insertions(+), 271 deletions(-)

-- 
2.17.0

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-05-02 17:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-02 17:34 [PATCH 0/7] block: consolidate struct request timestamp fields Omar Sandoval
2018-05-02 17:34 ` [PATCH 1/7] block: move some wbt helpers to blk-wbt.c Omar Sandoval
2018-05-02 17:34 ` [PATCH 2/7] block: pass struct request instead of struct blk_issue_stat to wbt Omar Sandoval
2018-05-02 17:34 ` [PATCH 3/7] block: replace bio->bi_issue_stat with u64 Omar Sandoval
2018-05-02 17:34 ` [PATCH 4/7] block: get rid of struct blk_issue_stat Omar Sandoval
2018-05-02 17:34 ` [PATCH 5/7] block: use ktime_get_ns() instead of sched_clock() for cfq and bfq Omar Sandoval
2018-05-02 17:34 ` [PATCH 6/7] block: move blk_stat_add() to __blk_mq_end_request() Omar Sandoval
2018-05-02 17:34 ` [PATCH 7/7] block: consolidate struct request timestamp fields Omar Sandoval

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.