You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
999 B
25 lines
999 B
From db9b47e9f996bbdb831580ff7343542a017c80ee Mon Sep 17 00:00:00 2001 |
|
From: DJ Delorie <dj@redhat.com> |
|
Date: Thu, 9 Mar 2023 22:32:54 -0500 |
|
Subject: x86: Don't check PREFETCHWT1 in tst-cpu-features-cpuinfo.c |
|
|
|
Don't check PREFETCHWT1 against /proc/cpuinfo since kernel doesn't report |
|
PREFETCHWT1 in /proc/cpuinfo. |
|
|
|
Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com> |
|
|
|
diff --git a/sysdeps/x86/tst-cpu-features-cpuinfo.c b/sysdeps/x86/tst-cpu-features-cpuinfo.c |
|
index c25240774e..e963592c4b 100644 |
|
--- a/sysdeps/x86/tst-cpu-features-cpuinfo.c |
|
+++ b/sysdeps/x86/tst-cpu-features-cpuinfo.c |
|
@@ -217,7 +217,10 @@ do_test (int argc, char **argv) |
|
fails += CHECK_PROC (pku, PKU); |
|
fails += CHECK_PROC (popcnt, POPCNT); |
|
fails += CHECK_PROC (3dnowprefetch, PREFETCHW); |
|
+#if 0 |
|
+ /* NB: /proc/cpuinfo doesn't report this feature. */ |
|
fails += CHECK_PROC (prefetchwt1, PREFETCHWT1); |
|
+#endif |
|
#if 0 |
|
/* NB: /proc/cpuinfo doesn't report this feature. */ |
|
fails += CHECK_PROC (ptwrite, PTWRITE);
|
|
|