1 From 61f4a666499f781e6441dab84993a635c43ddb58 Mon Sep 17 00:00:00 2001
2 From: Michael Zoran <mzoran@crowfest.net>
3 Date: Sat, 11 Feb 2017 01:18:31 -0800
4 Subject: [PATCH] ARM64: Force hardware emulation of deprecated
8 arch/arm64/kernel/armv8_deprecated.c | 5 +++++
9 1 file changed, 5 insertions(+)
11 --- a/arch/arm64/kernel/armv8_deprecated.c
12 +++ b/arch/arm64/kernel/armv8_deprecated.c
13 @@ -185,10 +185,15 @@ static void __init register_insn_emulati
15 switch (ops->status) {
18 insn->current_mode = INSN_EMULATE;
19 /* Disable the HW mode if it was turned on at early boot time */
20 run_all_cpu_set_hw_mode(insn, false);
22 + insn->current_mode = INSN_HW;
23 + run_all_cpu_set_hw_mode(insn, true);
28 insn->current_mode = INSN_UNDEF;