Commit 947b8972 authored by Farhan Ali's avatar Farhan Ali Committed by Christian Borntraeger

KVM: s390: Use defines for intercept code

Let's use #define values for better readability.
Signed-off-by: default avatarFarhan Ali <alifm@linux.vnet.ibm.com>
Reviewed-by: default avatarCornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: default avatarChristian Borntraeger <borntraeger@de.ibm.com>
parent 0c9d8683
...@@ -175,7 +175,10 @@ struct kvm_s390_sie_block { ...@@ -175,7 +175,10 @@ struct kvm_s390_sie_block {
#define ICPT_INST 0x04 #define ICPT_INST 0x04
#define ICPT_PROGI 0x08 #define ICPT_PROGI 0x08
#define ICPT_INSTPROGI 0x0C #define ICPT_INSTPROGI 0x0C
#define ICPT_EXTREQ 0x10
#define ICPT_EXTINT 0x14 #define ICPT_EXTINT 0x14
#define ICPT_IOREQ 0x18
#define ICPT_WAIT 0x1c
#define ICPT_VALIDITY 0x20 #define ICPT_VALIDITY 0x20
#define ICPT_STOP 0x28 #define ICPT_STOP 0x28
#define ICPT_OPEREXC 0x2C #define ICPT_OPEREXC 0x2C
......
...@@ -403,26 +403,26 @@ int kvm_handle_sie_intercept(struct kvm_vcpu *vcpu) ...@@ -403,26 +403,26 @@ int kvm_handle_sie_intercept(struct kvm_vcpu *vcpu)
return -EOPNOTSUPP; return -EOPNOTSUPP;
switch (vcpu->arch.sie_block->icptcode) { switch (vcpu->arch.sie_block->icptcode) {
case 0x10: case ICPT_EXTREQ:
case 0x18: case ICPT_IOREQ:
return handle_noop(vcpu); return handle_noop(vcpu);
case 0x04: case ICPT_INST:
rc = handle_instruction(vcpu); rc = handle_instruction(vcpu);
break; break;
case 0x08: case ICPT_PROGI:
return handle_prog(vcpu); return handle_prog(vcpu);
case 0x14: case ICPT_EXTINT:
return handle_external_interrupt(vcpu); return handle_external_interrupt(vcpu);
case 0x1c: case ICPT_WAIT:
return kvm_s390_handle_wait(vcpu); return kvm_s390_handle_wait(vcpu);
case 0x20: case ICPT_VALIDITY:
return handle_validity(vcpu); return handle_validity(vcpu);
case 0x28: case ICPT_STOP:
return handle_stop(vcpu); return handle_stop(vcpu);
case 0x2c: case ICPT_OPEREXC:
rc = handle_operexc(vcpu); rc = handle_operexc(vcpu);
break; break;
case 0x38: case ICPT_PARTEXEC:
rc = handle_partial_execution(vcpu); rc = handle_partial_execution(vcpu);
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment