summaryrefslogtreecommitdiffstats
path: root/include/linux/blk_types.h
diff options
context:
space:
mode:
authorShaohua Li <shli@fb.com>2017-03-27 15:19:41 -0700
committerJens Axboe <axboe@fb.com>2017-03-28 08:02:20 -0600
commit88eeca495ba7de749ff253376ec6be19bb05368d (patch)
treee2ff562f879d0b581028ba71a028cda9319039e5 /include/linux/blk_types.h
parentec80991d6fc2cb17abfc5427ac1512d2ccd40589 (diff)
downloadlinux-0-day-88eeca495ba7de749ff253376ec6be19bb05368d.tar.gz
linux-0-day-88eeca495ba7de749ff253376ec6be19bb05368d.tar.xz
block: track request size in blk_issue_stat
Currently there is no way to know the request size when the request is finished. Next patch will need this info. We could add extra field to record the size, but blk_issue_stat has enough space to record it, so this patch just overloads blk_issue_stat. With this, we will have 49bits to track time, which still is very long time. Signed-off-by: Shaohua Li <shli@fb.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/blk_types.h')
-rw-r--r--include/linux/blk_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blk_types.h b/include/linux/blk_types.h
index 07a9e9607909f..3ad5673476715 100644
--- a/include/linux/blk_types.h
+++ b/include/linux/blk_types.h
@@ -287,7 +287,7 @@ static inline bool blk_qc_t_is_internal(blk_qc_t cookie)
}
struct blk_issue_stat {
- u64 time;
+ u64 stat;
};
struct blk_rq_stat {