summaryrefslogtreecommitdiffstats
path: root/block/blk-stat.c
diff options
context:
space:
mode:
authorOmar Sandoval <osandov@fb.com>2017-03-16 09:46:14 -0600
committerJens Axboe <axboe@fb.com>2017-03-16 09:46:14 -0600
commitefd4b81abbe1ac753717f2f10cd3dab8bed6c103 (patch)
tree2bba3ec40209e5ef9db3c083c39a941290cdfcb6 /block/blk-stat.c
parent69eea5a4ab9c705496e912b55a9d312325de19e6 (diff)
downloadlinux-0-day-efd4b81abbe1ac753717f2f10cd3dab8bed6c103.tar.gz
linux-0-day-efd4b81abbe1ac753717f2f10cd3dab8bed6c103.tar.xz
blk-stat: fix blk_stat_sum() if all samples are batched
We need to flush the batch _before_ we check the number of samples, otherwise we'll miss all of the batched samples. Fixes: cf43e6b ("block: add scalable completion tracking of requests") Signed-off-by: Omar Sandoval <osandov@fb.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block/blk-stat.c')
-rw-r--r--block/blk-stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blk-stat.c b/block/blk-stat.c
index 9b43efb8933fb..186fcb981e9b1 100644
--- a/block/blk-stat.c
+++ b/block/blk-stat.c
@@ -30,11 +30,11 @@ static void blk_stat_flush_batch(struct blk_rq_stat *stat)
static void blk_stat_sum(struct blk_rq_stat *dst, struct blk_rq_stat *src)
{
+ blk_stat_flush_batch(src);
+
if (!src->nr_samples)
return;
- blk_stat_flush_batch(src);
-
dst->min = min(dst->min, src->min);
dst->max = max(dst->max, src->max);