tools/power/x86/intel-speed-select: Increase max CPUs in one request

JIRA: https://issues.redhat.com/browse/RHEL-17865

commit bc5370cca03ba9d1634fecd85e0cf99a0a3c0483
Author: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Date:   Fri Oct 13 11:20:56 2023 -0700

    tools/power/x86/intel-speed-select: Increase max CPUs in one request

    With the increase in the CPU count, this count needs to be updated.
    Increase max CPU count to 512.

    Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>

Signed-off-by: Steve Best <sbest@redhat.com>
This commit is contained in:
Steve Best 2023-12-05 05:28:16 -05:00
parent fb56f8c456
commit 22f9533a93
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ static FILE *outf;
static int cpu_model;
static int cpu_stepping;
#define MAX_CPUS_IN_ONE_REQ 256
#define MAX_CPUS_IN_ONE_REQ 512
static short max_target_cpus;
static unsigned short target_cpus[MAX_CPUS_IN_ONE_REQ];