提交 109d71c6 编写于 作者: F Frank Rowand 提交者: Ingo Molnar

lockstat: Fix min, max times in /proc/lock_stats

Fix min, max times in /proc/lock_stats

(1) When collecting lock hold and wait times, if the current minimum
    time is zero, it will be replaced by the next time.

(2) When aggregating minimum and maximum lock hold and wait times
    accross cpus, the values are added, instead of selecting the
    minimum and maximum.
Signed-off-by: NFrank Rowand <frank.rowand@am.sony.com>
Signed-off-by: NPeter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <4B05BBAE.2050005@am.sony.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 6ec22f9b
...@@ -168,7 +168,7 @@ static void lock_time_inc(struct lock_time *lt, u64 time) ...@@ -168,7 +168,7 @@ static void lock_time_inc(struct lock_time *lt, u64 time)
if (time > lt->max) if (time > lt->max)
lt->max = time; lt->max = time;
if (time < lt->min || !lt->min) if (time < lt->min || !lt->nr)
lt->min = time; lt->min = time;
lt->total += time; lt->total += time;
...@@ -177,8 +177,15 @@ static void lock_time_inc(struct lock_time *lt, u64 time) ...@@ -177,8 +177,15 @@ static void lock_time_inc(struct lock_time *lt, u64 time)
static inline void lock_time_add(struct lock_time *src, struct lock_time *dst) static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
{ {
dst->min += src->min; if (!src->nr)
dst->max += src->max; return;
if (src->max > dst->max)
dst->max = src->max;
if (src->min < dst->min || !dst->nr)
dst->min = src->min;
dst->total += src->total; dst->total += src->total;
dst->nr += src->nr; dst->nr += src->nr;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册