From: Doug Smythies Date: Thu, 26 Mar 2020 16:20:07 +0000 (-0700) Subject: tools/power/x86/intel_pstate_tracer: fix a broken y-axis scale X-Git-Tag: baikal/mips/sdk5.9~14048^2~5 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=096e58a5855e616890910dd0e8e5bd6d38212547;p=kernel.git tools/power/x86/intel_pstate_tracer: fix a broken y-axis scale A fixed y-axis scale was missed during a change to autoscale. Correct it. Fixes: 99f7bb5625349 ("tools/power/x86/intel_pstate_tracer: change several graphs to autoscale y-axis") Signed-off-by: Doug Smythies Signed-off-by: Rafael J. Wysocki --- diff --git a/tools/power/x86/intel_pstate_tracer/intel_pstate_tracer.py b/tools/power/x86/intel_pstate_tracer/intel_pstate_tracer.py index 256199c7a182e..3c47865bb247a 100755 --- a/tools/power/x86/intel_pstate_tracer/intel_pstate_tracer.py +++ b/tools/power/x86/intel_pstate_tracer/intel_pstate_tracer.py @@ -235,7 +235,6 @@ def plot_duration_cpu(): output_png = 'all_cpu_durations.png' g_plot = common_all_gnuplot_settings(output_png) # autoscale this one, no set y range - g_plot('set ytics 0, 500') g_plot('set ylabel "Timer Duration (MilliSeconds)"') g_plot('set title "{} : cpu durations : {:%F %H:%M}"'.format(testname, datetime.now()))