aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Tetlow <gordon@FreeBSD.org>2019-07-24 12:50:46 +0000
committerGordon Tetlow <gordon@FreeBSD.org>2019-07-24 12:50:46 +0000
commitd837cbc6760511d427e7328595758e3ee92bd84a (patch)
treeadb1d7659495e067b95d8f7c6fbe72db4389af02
parent163b32cc030068026f62047993593596475b36ee (diff)
Notes
-rw-r--r--sys/x86/x86/cpu_machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/cpu_machdep.c b/sys/x86/x86/cpu_machdep.c
index 0604054c2134..54b22d9ee6d6 100644
--- a/sys/x86/x86/cpu_machdep.c
+++ b/sys/x86/x86/cpu_machdep.c
@@ -946,7 +946,6 @@ int hw_mds_disable;
* architectural state except possibly %rflags. Also, it is always
* called with interrupts disabled.
*/
-void (*mds_handler)(void);
void mds_handler_void(void);
void mds_handler_verw(void);
void mds_handler_ivb(void);
@@ -955,6 +954,7 @@ void mds_handler_skl_sse(void);
void mds_handler_skl_avx(void);
void mds_handler_skl_avx512(void);
void mds_handler_silvermont(void);
+void (*mds_handler)(void) = mds_handler_void;
static int
sysctl_hw_mds_disable_state_handler(SYSCTL_HANDLER_ARGS)