Limit active CPU count under LXC as well

Fixes the initial htoprc not being configured to amount for the host CPU count
This commit is contained in:
Daniel Lange 2022-05-07 16:05:11 +02:00
parent 0d53245cf9
commit 33973f7e40
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ static void LinuxProcessList_updateCPUcount(ProcessList* super) {
if (Running_containerized) {
/* LXC munges /proc/cpuinfo but not the /sys/devices/system/cpu/ files,
* so limit the visible CPUs to what the guest has been configured to see: */
currExisting = scanAvailableCPUsFromCPUinfo(this);
currExisting = active = scanAvailableCPUsFromCPUinfo(this);
}
#ifdef HAVE_SENSORS_SENSORS_H