diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-10-20 20:22:50 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-11 13:28:56 +0200 |
commit | 5daa40454b63c4eb04ab5caeb339eddc95c94bb1 (patch) | |
tree | f541d54a2f0842572db81a16db095b6fff658ed4 /src/common | |
parent | NEWS: Omit the extra copy of 5.2.5 NEWS. (diff) | |
download | xz-5daa40454b63c4eb04ab5caeb339eddc95c94bb1.tar.xz |
tuklib_cpucores: Use HW_NCPUONLINE on OpenBSD.
On OpenBSD the number of cores online is often less
than what HW_NCPU would return because OpenBSD disables
simultaneous multi-threading (SMT) by default.
Thanks to Christian Weisgerber.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tuklib_cpucores.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/common/tuklib_cpucores.c b/src/common/tuklib_cpucores.c index cc968dd2..bb3f2f75 100644 --- a/src/common/tuklib_cpucores.c +++ b/src/common/tuklib_cpucores.c @@ -72,7 +72,16 @@ tuklib_cpucores(void) } #elif defined(TUKLIB_CPUCORES_SYSCTL) + // On OpenBSD HW_NCPUONLINE tells the number of processor cores that + // are online so it is preferred over HW_NCPU which also counts cores + // that aren't currently available. The number of cores online is + // often less than HW_NCPU because OpenBSD disables simultaneous + // multi-threading (SMT) by default. +# ifdef HW_NCPUONLINE + int name[2] = { CTL_HW, HW_NCPUONLINE }; +# else int name[2] = { CTL_HW, HW_NCPU }; +# endif int cpus; size_t cpus_size = sizeof(cpus); if (sysctl(name, 2, &cpus, &cpus_size, NULL, 0) != -1 |