public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] x86: Correct bit_cpu_CLFLUSHOPT [BZ #26128]
@ 2020-06-17 12:43 H.J. Lu
  0 siblings, 0 replies; only message in thread
From: H.J. Lu @ 2020-06-17 12:43 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b7c9bb183b799b10c09ec32e98d1843546ea4324

commit b7c9bb183b799b10c09ec32e98d1843546ea4324
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed Jun 17 05:32:37 2020 -0700

    x86: Correct bit_cpu_CLFLUSHOPT [BZ #26128]
    
    bit_cpu_CLFLUSHOPT should be (1u << 23), not (1u << 22).

Diff:
---
 sysdeps/x86/cpu-features.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/cpu-features.h b/sysdeps/x86/cpu-features.h
index f05d5ce158..a5cc55d8b6 100644
--- a/sysdeps/x86/cpu-features.h
+++ b/sysdeps/x86/cpu-features.h
@@ -465,7 +465,7 @@ extern const struct cpu_features *__get_cpu_features (void)
 #define bit_cpu_ADX		(1u << 19)
 #define bit_cpu_SMAP		(1u << 20)
 #define bit_cpu_AVX512_IFMA	(1u << 21)
-#define bit_cpu_CLFLUSHOPT	(1u << 22)
+#define bit_cpu_CLFLUSHOPT	(1u << 23)
 #define bit_cpu_CLWB		(1u << 24)
 #define bit_cpu_TRACE		(1u << 25)
 #define bit_cpu_AVX512PF	(1u << 26)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-06-17 12:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-17 12:43 [glibc] x86: Correct bit_cpu_CLFLUSHOPT [BZ #26128] H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).