diff options
| author | Ramkumar Ramachandra <[email protected]> | 2013-12-30 13:04:18 +0530 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2014-01-13 10:46:39 -0300 |
| commit | f77c6e9c8f9c444cd44423df0c2708e86a06a696 (patch) | |
| tree | f159da4879b94073e30a40ad55844f531c862867 | |
| parent | 741a0c59032faeddac80a6237f3d7846231a3740 (diff) | |
perf tools: Generalize percent_color_snprintf()
Make percent_color_snprintf() handle negative values correctly.
Signed-off-by: Ramkumar Ramachandra <[email protected]>
Acked-by: Jiri Olsa <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
| -rw-r--r-- | tools/perf/util/color.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/perf/util/color.c b/tools/perf/util/color.c index 66e44a5019d5..8cda46c43e74 100644 --- a/tools/perf/util/color.c +++ b/tools/perf/util/color.c @@ -1,6 +1,7 @@ #include <linux/kernel.h> #include "cache.h" #include "color.h" +#include <math.h> int perf_use_color_default = -1; @@ -298,10 +299,10 @@ const char *get_percent_color(double percent) * entries in green - and keep the low overhead places * normal: */ - if (percent >= MIN_RED) + if (fabs(percent) >= MIN_RED) color = PERF_COLOR_RED; else { - if (percent > MIN_GREEN) + if (fabs(percent) > MIN_GREEN) color = PERF_COLOR_GREEN; } return color; |