We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c707ae9 commit 9b7f60aCopy full SHA for 9b7f60a
1 file changed
kernel/src/arch/aarch64/virt/exit.rs
@@ -116,10 +116,6 @@ pub fn handle_vm_exit(vcpu: &mut Vcpu) -> bool {
116
VmExitReason::InstructionAbortLowerEL => {
117
let iss = esr & 0x1FFFFFF;
118
let ifsc = iss & 0x3F;
119
-
120
- if (ifsc & 0x3C) == 0x14 {
121
- semihosting::println!("[EXIT] Stage-2 Translation Fault (Instruction)!");
122
- }
123
false
124
}
125
VmExitReason::TrappedWfiWfe => {
0 commit comments