Fix some boolean logic errors. && vs & and other sillyness. *blush*

This would prevent it from skipping non-present cpus in -P output.

Submitted by:  Pieter de Goeje <pieter@degoeje.nl>
This commit is contained in:
Peter Wemm 2008-01-18 22:09:44 +00:00
parent f8a134ac63
commit 248e52ada8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175465

View File

@ -739,7 +739,7 @@ printhdr(int ncpus, u_long cpumask)
(void)printf(" faults ");
if (Pflag) {
for (i = 0; i < ncpus; i++) {
if (cpumask && (1ul << i))
if (cpumask & (1ul << i))
printf("cpu%-2d ", i);
}
printf("\n");
@ -976,7 +976,7 @@ pcpustats(int ncpus, u_long cpumask, int maxid)
/* devstats does this for cp_time */
for (i = 0; i <= maxid; i++) {
if (cpumask && (1ul << i) == 0)
if ((cpumask & (1ul << i)) == 0)
continue;
for (state = 0; state < CPUSTATES; ++state) {
tmp = cur_cp_times[i * CPUSTATES + state];
@ -987,7 +987,7 @@ pcpustats(int ncpus, u_long cpumask, int maxid)
over = 0;
for (i = 0; i <= maxid; i++) {
if (cpumask && (1ul << i) == 0)
if ((cpumask & (1ul << i)) == 0)
continue;
total = 0;
for (state = 0; state < CPUSTATES; ++state)