mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
kvm: Add kvm_has_pit_state2 helper
To be used for in-kernel PIT emulation. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
10
kvm-all.c
10
kvm-all.c
@@ -76,6 +76,7 @@ struct KVMState
|
||||
struct kvm_sw_breakpoint_head kvm_sw_breakpoints;
|
||||
#endif
|
||||
int pit_in_kernel;
|
||||
int pit_state2;
|
||||
int xsave, xcrs;
|
||||
int many_ioeventfds;
|
||||
int irqchip_inject_ioctl;
|
||||
@@ -1058,6 +1059,10 @@ int kvm_init(void)
|
||||
s->xcrs = kvm_check_extension(s, KVM_CAP_XCRS);
|
||||
#endif
|
||||
|
||||
#ifdef KVM_CAP_PIT_STATE2
|
||||
s->pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
|
||||
#endif
|
||||
|
||||
ret = kvm_arch_init(s);
|
||||
if (ret < 0) {
|
||||
goto err;
|
||||
@@ -1390,6 +1395,11 @@ int kvm_has_xcrs(void)
|
||||
return kvm_state->xcrs;
|
||||
}
|
||||
|
||||
int kvm_has_pit_state2(void)
|
||||
{
|
||||
return kvm_state->pit_state2;
|
||||
}
|
||||
|
||||
int kvm_has_many_ioeventfds(void)
|
||||
{
|
||||
if (!kvm_enabled()) {
|
||||
|
||||
Reference in New Issue
Block a user