diff options
author | Janosch Frank <frankja@linux.vnet.ibm.com> | 2016-05-09 14:14:01 +0200 |
---|---|---|
committer | Christian Borntraeger <borntraeger@de.ibm.com> | 2016-06-10 12:07:11 +0200 |
commit | a011eeb2a3d6cd778eb63bea0bf149ebbe658ab5 (patch) | |
tree | 9e0ef8496b793e205fb96efbdacab329f1ad9bcc /arch/s390/include/asm/kvm_host.h | |
parent | s390: Make diag224 public (diff) | |
download | linux-a011eeb2a3d6cd778eb63bea0bf149ebbe658ab5.tar.xz linux-a011eeb2a3d6cd778eb63bea0bf149ebbe658ab5.zip |
KVM: s390: Add operation exception interception handler
This commit introduces code that handles operation exception
interceptions. With this handler we can emulate instructions by using
illegal opcodes.
Signed-off-by: Janosch Frank <frankja@linux.vnet.ibm.com>
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/kvm_host.h')
-rw-r--r-- | arch/s390/include/asm/kvm_host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/include/asm/kvm_host.h b/arch/s390/include/asm/kvm_host.h index 37b9017c6a96..093ea14109e2 100644 --- a/arch/s390/include/asm/kvm_host.h +++ b/arch/s390/include/asm/kvm_host.h @@ -255,6 +255,7 @@ struct kvm_vcpu_stat { u32 instruction_stctg; u32 exit_program_interruption; u32 exit_instr_and_program; + u32 exit_operation_exception; u32 deliver_external_call; u32 deliver_emergency_signal; u32 deliver_service_signal; |