diff options
author | Janakarajan Natarajan <Janakarajan.Natarajan@amd.com> | 2017-06-14 12:26:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-08-10 06:08:38 -0400 |
commit | 910448bbed066ab1082b510eef1ae61bb792d854 (patch) | |
tree | 633664f0725075e9892eee286aff91c7d5f8ba24 | |
parent | 1ccb2f4e8e435a53bb378e8b092087f091754aa6 (diff) |
perf/x86/amd/uncore: Rename cpufeatures macro for cache counters
In Family 17h, L3 is the last level cache as opposed to L2 in previous
families. Avoid this name confusion and rename X86_FEATURE_PERFCTR_L2 to
X86_FEATURE_PERFCTR_LLC to indicate the performance counter on the last
level of cache.
Signed-off-by: Janakarajan Natarajan <Janakarajan.Natarajan@amd.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Borislav Petkov <bp@suse.de>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/016311029fdecdc3fdc13b7ed865c6cbf48b2f15.1497452002.git.Janakarajan.Natarajan@amd.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/events/amd/uncore.c | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/cpufeatures.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/events/amd/uncore.c b/arch/x86/events/amd/uncore.c index ad44af0dd667..e34f8a6b4440 100644 --- a/arch/x86/events/amd/uncore.c +++ b/arch/x86/events/amd/uncore.c | |||
@@ -555,7 +555,7 @@ static int __init amd_uncore_init(void) | |||
555 | ret = 0; | 555 | ret = 0; |
556 | } | 556 | } |
557 | 557 | ||
558 | if (boot_cpu_has(X86_FEATURE_PERFCTR_L2)) { | 558 | if (boot_cpu_has(X86_FEATURE_PERFCTR_LLC)) { |
559 | amd_uncore_llc = alloc_percpu(struct amd_uncore *); | 559 | amd_uncore_llc = alloc_percpu(struct amd_uncore *); |
560 | if (!amd_uncore_llc) { | 560 | if (!amd_uncore_llc) { |
561 | ret = -ENOMEM; | 561 | ret = -ENOMEM; |
diff --git a/arch/x86/include/asm/cpufeatures.h b/arch/x86/include/asm/cpufeatures.h index ca3c48c0872f..73a712736e2c 100644 --- a/arch/x86/include/asm/cpufeatures.h +++ b/arch/x86/include/asm/cpufeatures.h | |||
@@ -177,7 +177,7 @@ | |||
177 | #define X86_FEATURE_PERFCTR_NB ( 6*32+24) /* NB performance counter extensions */ | 177 | #define X86_FEATURE_PERFCTR_NB ( 6*32+24) /* NB performance counter extensions */ |
178 | #define X86_FEATURE_BPEXT (6*32+26) /* data breakpoint extension */ | 178 | #define X86_FEATURE_BPEXT (6*32+26) /* data breakpoint extension */ |
179 | #define X86_FEATURE_PTSC ( 6*32+27) /* performance time-stamp counter */ | 179 | #define X86_FEATURE_PTSC ( 6*32+27) /* performance time-stamp counter */ |
180 | #define X86_FEATURE_PERFCTR_L2 ( 6*32+28) /* L2 performance counter extensions */ | 180 | #define X86_FEATURE_PERFCTR_LLC ( 6*32+28) /* Last Level Cache performance counter extensions */ |
181 | #define X86_FEATURE_MWAITX ( 6*32+29) /* MWAIT extension (MONITORX/MWAITX) */ | 181 | #define X86_FEATURE_MWAITX ( 6*32+29) /* MWAIT extension (MONITORX/MWAITX) */ |
182 | 182 | ||
183 | /* | 183 | /* |