diff options
author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2012-04-24 09:24:44 +0200 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2012-04-30 21:55:52 -0300 |
commit | 8c3f61e2ddb6c1845704fd8ef1b999ecd2e4725c (patch) | |
tree | 0a2c2375f75ae52b879afe1cbfb770ef5ce53394 /arch/s390/kvm/intercept.c | |
parent | 8733ac36fc37fe055a7d7daadf5451b4231f0214 (diff) | |
download | talos-obmc-linux-8c3f61e2ddb6c1845704fd8ef1b999ecd2e4725c.tar.gz talos-obmc-linux-8c3f61e2ddb6c1845704fd8ef1b999ecd2e4725c.zip |
KVM: s390: Handle sckpf instruction
Handle the mandatory intercept SET CLOCK PROGRAMMABLE FIELD
instruction.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/s390/kvm/intercept.c')
-rw-r--r-- | arch/s390/kvm/intercept.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/kvm/intercept.c b/arch/s390/kvm/intercept.c index 361456577c6f..979cbe55bf5e 100644 --- a/arch/s390/kvm/intercept.c +++ b/arch/s390/kvm/intercept.c @@ -101,6 +101,7 @@ static int handle_lctl(struct kvm_vcpu *vcpu) } static intercept_handler_t instruction_handlers[256] = { + [0x01] = kvm_s390_handle_01, [0x83] = kvm_s390_handle_diag, [0xae] = kvm_s390_handle_sigp, [0xb2] = kvm_s390_handle_b2, |