top: whack a label & branch in 'summary_show' function
If there are zero numa nodes then the View_CPUNOD flag cannot possibly be set. So it was unnecessary to check both the numa total and View_CPUNOD in 'summary_show'. Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
6a8d8ff80b
commit
1c1dd02862
@ -5574,7 +5574,6 @@ static void summary_show (void) {
|
|||||||
|
|
||||||
cpus_refresh();
|
cpus_refresh();
|
||||||
|
|
||||||
if (!Numa_node_tot) goto numa_nope;
|
|
||||||
if (CHKw(w, View_CPUNOD)) {
|
if (CHKw(w, View_CPUNOD)) {
|
||||||
if (Numa_node_sel < 0) {
|
if (Numa_node_sel < 0) {
|
||||||
numa_oops:
|
numa_oops:
|
||||||
@ -5612,12 +5611,11 @@ numa_oops:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else
|
|
||||||
|
|
||||||
numa_nope:
|
} else if (CHKw(w, View_CPUSUM)) {
|
||||||
if (CHKw(w, View_CPUSUM)) {
|
|
||||||
// display just the 1st /proc/stat line
|
// display just the 1st /proc/stat line
|
||||||
Msg_row += cpu_tics(Stat_reap->summary, N_txt(WORD_allcpus_txt), 1);
|
Msg_row += cpu_tics(Stat_reap->summary, N_txt(WORD_allcpus_txt), 1);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// display each cpu's states separately, screen height permitting...
|
// display each cpu's states separately, screen height permitting...
|
||||||
#ifdef PRETEND48CPU
|
#ifdef PRETEND48CPU
|
||||||
|
Loading…
Reference in New Issue
Block a user