diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/redhat-support-check.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/redhat-support-check.c b/src/redhat-support-check.c index 1d41fdb0..93ea9154 100644 --- a/src/redhat-support-check.c +++ b/src/redhat-support-check.c @@ -83,6 +83,14 @@ unsigned int get_num_cpus() { return ncpus / nsibs; } } + if (ebx==0x68747541 && edx==0x69746e65 && ecx==0x444d4163) { + cpuid(1, &eax, &ebx, &ecx, &edx); + if (edx & (1 << 28)) { /* has HT */ + int nsibs = (ebx & 0xff0000) >> 16; + if (nsibs == 0) nsibs = 1; + return ncpus / nsibs; + } + } #endif return ncpus; } |