summaryrefslogtreecommitdiffhomepage
path: root/pkg/cpuid/cpuid_parse_test.go
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2019-02-19 16:31:18 -0800
committerShentubot <shentubot@google.com>2019-02-19 16:32:22 -0800
commit0b310ada5b7f79bc629bb98aab14faeeec1af25b (patch)
tree1b8e32f6229305d2a38081c207653d5883d4c6ee /pkg/cpuid/cpuid_parse_test.go
parent2840f7c1b12c88f47f7c3c8df659ca436f5901b6 (diff)
Rename "perfctr_l2" to "perfctr_llc"
910448bbed066ab1082b510eef1ae61bb792d854 ("perf/x86/amd/uncore: Rename cpufeatures macro for cache counters") in 4.14 changed the name. We change both the internal and cpuinfo name. As the upstream commit states, "In Family 17h, L3 is the last level cache as opposed to L2 in previous families. Avoid this name confusion ..." PiperOrigin-RevId: 234698034 Change-Id: Ibf2efd4c0b83c1a8b5bb123da65ea1d7c6acd778
Diffstat (limited to 'pkg/cpuid/cpuid_parse_test.go')
-rw-r--r--pkg/cpuid/cpuid_parse_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/cpuid/cpuid_parse_test.go b/pkg/cpuid/cpuid_parse_test.go
index 17cd43a1e..e8f87a10e 100644
--- a/pkg/cpuid/cpuid_parse_test.go
+++ b/pkg/cpuid/cpuid_parse_test.go
@@ -124,6 +124,11 @@ func TestHostFeatureFlags(t *testing.T) {
// XSAVES only exposed in
// b8be15d588060a03569ac85dc4a0247460988f5b (4.8).
continue
+ // Block 5.
+ case f == X86FeaturePERFCTR_LLC && (major < 4 || major == 4 && minor < 14):
+ // PERFCTR_LLC renamed in
+ // 910448bbed066ab1082b510eef1ae61bb792d854 (4.14).
+ continue
}
hidden := f.flagString(true) == ""