diff options
author | Matt Wilson <msw@redhat.com> | 1999-10-07 19:47:26 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-10-07 19:47:26 +0000 |
commit | 2bc4e56ae1a773e0c2e2d7125c5436884fe1503e (patch) | |
tree | ecaceefc6bb749199560cb2089c3cc0c7ed35cda /isys/smp.c | |
parent | a79cc686d043b9eddac07e88a1818d7f98dbd244 (diff) | |
download | anaconda-2bc4e56ae1a773e0c2e2d7125c5436884fe1503e.tar.gz anaconda-2bc4e56ae1a773e0c2e2d7125c5436884fe1503e.tar.xz anaconda-2bc4e56ae1a773e0c2e2d7125c5436884fe1503e.zip |
smp depends on number _probed_, not active
Diffstat (limited to 'isys/smp.c')
-rw-r--r-- | isys/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/smp.c b/isys/smp.c index 08b2b0a7c..38822a839 100644 --- a/isys/smp.c +++ b/isys/smp.c @@ -50,7 +50,7 @@ int sparcDetectSMP(void) char buff[1024]; while (fgets (buff, 1024, f) != NULL) { - if (!strncmp (buff, "ncpus active\t: ", 15)) { + if (!strncmp (buff, "ncpus probed\t: ", 15)) { if (strtoul (buff + 15, NULL, 0) > 1) issmp = 1; break; |