lkml.org 
[lkml]   [2016]   [Feb]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [patch V2 11/28] x86/topology: Create logical package id
Date
Thomas Gleixner <tglx@linutronix.de> writes:


> +
> + if (c->cpuid_level >= 0x00000001) {
> + u32 eax, ebx, ecx, edx;
> +
> + cpuid(0x00000001, &eax, &ebx, &ecx, &edx);

Use cpuid_edx()

> + /*
> + * If HTT (EDX[28]) is set EBX[16:23] contain the number of
> + * apicids which are reserved per package. Store the resulting
> + * shift value for the package management code.
> + */
> + if (edx & (1U << 28))
> + c->x86_coreid_bits = get_count_order((ebx >> 16) & 0xff);
> + }
> +++ b/arch/x86/kernel/cpu/proc.c
> @@ -12,6 +12,7 @@ static void show_cpuinfo_core(struct seq
> {
> #ifdef CONFIG_SMP
> seq_printf(m, "physical id\t: %d\n", c->phys_proc_id);
> + seq_printf(m, "logical id\t: %d\n", c->logical_proc_id);


I'm not sure it makes sense to export this. What good would it be for
the user?

If it was it would need to be documented somewhere. But I would
just drop it and keep it kernel internal.

FWIW every time something is added to this file it usually breaks
some (dumb) programs.

> + /*
> + * Today neither Intel nor AMD support heterogenous systems. That
> + * might change in the future....
> + */
> + ncpus = boot_cpu_data.x86_max_cores * smp_num_siblings;
> + __max_logical_packages = DIV_ROUND_UP(nr_cpu_ids, ncpus);

FWIW Hypervisors can do nearly everything today.

I assume your code handles it.

Let's hope that the Hypervisors always set up the correct CPUID now
for their sibling configuration. If they don't with this change
some CPUs would be suddenly lost.

Would it be worth to have a kernel option where the maximum can be overriden
in case this happens?


-Andi
--
ak@linux.intel.com -- Speaking for myself only

\
 
 \ /
  Last update: 2016-02-22 20:21    [W:0.294 / U:1.300 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site