summaryrefslogtreecommitdiffstats
path: root/isys/smp.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-03-03 18:38:53 +0000
committerJeremy Katz <katzj@redhat.com>2004-03-03 18:38:53 +0000
commitf6ee4aa2a42ab82596020ab899087a3e588e311a (patch)
tree65d40493832b5773e8b23e3d0126598f1a7b2724 /isys/smp.c
parent87cd7ca35755a55430957d2d8cafbcccfc4abc57 (diff)
downloadanaconda-f6ee4aa2a42ab82596020ab899087a3e588e311a.tar.gz
anaconda-f6ee4aa2a42ab82596020ab899087a3e588e311a.tar.xz
anaconda-f6ee4aa2a42ab82596020ab899087a3e588e311a.zip
also, if we have 2 or more siblings, we're HT
Diffstat (limited to 'isys/smp.c')
-rw-r--r--isys/smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/smp.c b/isys/smp.c
index 068d72354..b6c2589e1 100644
--- a/isys/smp.c
+++ b/isys/smp.c
@@ -609,7 +609,7 @@ int detectHT(void)
ebx = cpuid_ebx(1);
smp_num_siblings = (ebx & 0xff0000) >> 16;
- if (smp_num_siblings == 2)
+ if (smp_num_siblings >= 2)
return 1;
return 0;
}