summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-20 16:40:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-02 09:53:15 +0100
commit2b10b3cf214887037c57fe285cbb8b754bc49d76 (patch)
tree795c4f15327ff8c2b11dfbcee155578a34a5a80d /scripts/pybootchartgui
parent52c71f8a28f0b4cb2cb9d2f76f09defe215c4538 (diff)
downloadpoky-2b10b3cf214887037c57fe285cbb8b754bc49d76.tar.gz
pybootchart: Avoid divide by zero
Avoid a rare divide by zero error if there isn't data point spread. [YOCTO #14547] (From OE-Core rev: af8a9ecacc00e9166a7b754c25e55334c65af82d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit d7e36d01e87ddf89f76f164a0b7d98f597a53fa5) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/pybootchartgui')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/draw.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index 29eb7505bc..fc708b55c3 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -267,7 +267,10 @@ def draw_chart(ctx, color, fill, chart_bounds, data, proc_tree, data_range):
267 # avoid divide by zero 267 # avoid divide by zero
268 if max_y == 0: 268 if max_y == 0:
269 max_y = 1.0 269 max_y = 1.0
270 xscale = float (chart_bounds[2]) / (max_x - x_shift) 270 if (max_x - x_shift):
271 xscale = float (chart_bounds[2]) / (max_x - x_shift)
272 else:
273 xscale = float (chart_bounds[2])
271 # If data_range is given, scale the chart so that the value range in 274 # If data_range is given, scale the chart so that the value range in
272 # data_range matches the chart bounds exactly. 275 # data_range matches the chart bounds exactly.
273 # Otherwise, scale so that the actual data matches the chart bounds. 276 # Otherwise, scale so that the actual data matches the chart bounds.