diff options
author | Hollis Blanchard <hollisb@us.ibm.com> | 2007-12-03 17:15:26 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 10:53:17 -0500 |
commit | 53e0aa7b65ec0d66e34e4d356a641c725cc2e519 (patch) | |
tree | 3964471dba10c506407370aefacdfce2cab3086f /drivers/kvm/x86.h | |
parent | e01a1b570f66ad318239517adbcc2cbe368d0a46 (diff) |
KVM: Portability: Create kvm_arch_vcpu_runnable() function
This abstracts the detail of x86 hlt and INIT modes into a function.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Acked-by: Carsten Otte <cotte@de.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/x86.h')
-rw-r--r-- | drivers/kvm/x86.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/kvm/x86.h b/drivers/kvm/x86.h index 4b7acc76bb34..eed796402e3b 100644 --- a/drivers/kvm/x86.h +++ b/drivers/kvm/x86.h | |||
@@ -471,4 +471,11 @@ static inline u32 get_rdx_init_val(void) | |||
471 | #define TSS_IOPB_SIZE (65536 / 8) | 471 | #define TSS_IOPB_SIZE (65536 / 8) |
472 | #define TSS_REDIRECTION_SIZE (256 / 8) | 472 | #define TSS_REDIRECTION_SIZE (256 / 8) |
473 | #define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1) | 473 | #define RMODE_TSS_SIZE (TSS_BASE_SIZE + TSS_REDIRECTION_SIZE + TSS_IOPB_SIZE + 1) |
474 | |||
475 | static inline int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) | ||
476 | { | ||
477 | return vcpu->mp_state == VCPU_MP_STATE_RUNNABLE | ||
478 | || vcpu->mp_state == VCPU_MP_STATE_SIPI_RECEIVED; | ||
479 | } | ||
480 | |||
474 | #endif | 481 | #endif |