diff options
| author | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
|---|---|---|
| committer | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
| commit | c74a7469f97c0f40b46e82ee979f9fb1bb6e847c (patch) | |
| tree | f2690a1a916b73ef94657fbf0e0141ae57701825 /arch/arm64/include/asm/topology.h | |
| parent | 6f15a7de86c8cf2dc09fc9e6d07047efa40ef809 (diff) | |
| parent | 500775074f88d9cf5416bed2ca19592812d62c41 (diff) | |
Merge drm/drm-next into drm-intel-next-queued
We need a backmerge to get DP_DPCD_REV_14 before we push other
i915 changes to dinq that could break compilation.
Signed-off-by: Rodrigo Vivi <[email protected]>
Diffstat (limited to 'arch/arm64/include/asm/topology.h')
| -rw-r--r-- | arch/arm64/include/asm/topology.h | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/arch/arm64/include/asm/topology.h b/arch/arm64/include/asm/topology.h index c4f2d50491eb..df48212f767b 100644 --- a/arch/arm64/include/asm/topology.h +++ b/arch/arm64/include/asm/topology.h @@ -7,14 +7,16 @@  struct cpu_topology {  	int thread_id;  	int core_id; -	int cluster_id; +	int package_id; +	int llc_id;  	cpumask_t thread_sibling;  	cpumask_t core_sibling; +	cpumask_t llc_siblings;  };  extern struct cpu_topology cpu_topology[NR_CPUS]; -#define topology_physical_package_id(cpu)	(cpu_topology[cpu].cluster_id) +#define topology_physical_package_id(cpu)	(cpu_topology[cpu].package_id)  #define topology_core_id(cpu)		(cpu_topology[cpu].core_id)  #define topology_core_cpumask(cpu)	(&cpu_topology[cpu].core_sibling)  #define topology_sibling_cpumask(cpu)	(&cpu_topology[cpu].thread_sibling) |