diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2013-05-17 08:41:35 -0400 |
---|---|---|
committer | Gleb Natapov <gleb@redhat.com> | 2013-05-21 04:55:23 -0400 |
commit | 49b99e1e0dedbd6cc93b2d2776b60fb7151ff3d7 (patch) | |
tree | 204052379d35e6459207571b3e2bb1d460e2cef2 /arch/s390/include | |
parent | 95d38fd0bcf1996082f5f8762e6f1c849755e0c6 (diff) |
s390/kvm: Provide a way to prevent reentering SIE
Lets provide functions to prevent KVM from reentering SIE and
to kick cpus out of SIE. We cannot use the common kvm_vcpu_kick code,
since we need to kick out guests in places that hold architecture
specific locks (e.g. pgste lock) which might be necessary on the
other cpus - so no waiting possible.
So lets provide a bit in a private field of the sie control block
that acts as a gate keeper, after we claimed we are in SIE.
Please note that we do not reuse prog0c, since we want to access
that bit without atomic ops.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Diffstat (limited to 'arch/s390/include')
-rw-r--r-- | arch/s390/include/asm/kvm_host.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/s390/include/asm/kvm_host.h b/arch/s390/include/asm/kvm_host.h index 962b92e6cf00..9a809f935580 100644 --- a/arch/s390/include/asm/kvm_host.h +++ b/arch/s390/include/asm/kvm_host.h | |||
@@ -71,7 +71,10 @@ struct kvm_s390_sie_block { | |||
71 | __u8 reserved08[4]; /* 0x0008 */ | 71 | __u8 reserved08[4]; /* 0x0008 */ |
72 | #define PROG_IN_SIE (1<<0) | 72 | #define PROG_IN_SIE (1<<0) |
73 | __u32 prog0c; /* 0x000c */ | 73 | __u32 prog0c; /* 0x000c */ |
74 | __u8 reserved10[24]; /* 0x0010 */ | 74 | __u8 reserved10[16]; /* 0x0010 */ |
75 | #define PROG_BLOCK_SIE 0x00000001 | ||
76 | atomic_t prog20; /* 0x0020 */ | ||
77 | __u8 reserved24[4]; /* 0x0024 */ | ||
75 | __u64 cputm; /* 0x0028 */ | 78 | __u64 cputm; /* 0x0028 */ |
76 | __u64 ckc; /* 0x0030 */ | 79 | __u64 ckc; /* 0x0030 */ |
77 | __u64 epoch; /* 0x0038 */ | 80 | __u64 epoch; /* 0x0038 */ |