From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] graphs: Fix rendering CPU graphs after number of cores decreased Date: Fri, 18 Sep 2020 07:44:37 +0000 Message-ID: <20200918074437.5237-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7059189769900386034==" List-Id: --===============7059189769900386034== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Fixes: #12193 - cpu graphs cannot created if smt is disabled Signed-off-by: Michael Tremer --- config/cfgroot/graphs.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cfgroot/graphs.pl b/config/cfgroot/graphs.pl index a7b82fed3..f6e6e25a3 100644 --- a/config/cfgroot/graphs.pl +++ b/config/cfgroot/graphs.pl @@ -172,7 +172,7 @@ sub updatecpugraph { } =09 for(my $i =3D 2; $i < $cpucount; $i++) { - $addstring .=3D "+,"; + $addstring .=3D "ADDNAN,"; } =20 if ( $cpucount > 1){ @@ -190,7 +190,7 @@ sub updatecpugraph { push(@command,$nice,$interrupt,$steal,$user,$system,$idle,$iowait,$irq); } =20 - push(@command,"CDEF:total=3Duser,system,idle,iowait,irq,nice,interrupt,stea= l,+,+,+,+,+,+,+" + push(@command,"CDEF:total=3Duser,system,idle,iowait,irq,nice,interrupt,stea= l,ADDNAN,ADDNAN,ADDNAN,ADDNAN,ADDNAN,ADDNAN,ADDNAN" ,"CDEF:userpct=3D100,user,total,/,*" ,"CDEF:nicepct=3D100,nice,total,/,*" ,"CDEF:interruptpct=3D100,interrupt,total,/,*" --=20 2.20.1 --===============7059189769900386034==--