mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-24 05:01:03 +02:00
KVM: selftests: Guard struct kvm_vcpu_events with __KVM_HAVE_VCPU_EVENTS
The struct kvm_vcpu_events code is only available on certain architectures (arm, arm64 and x86). To be able to compile kvm_util.c also for other architectures, we have to fence the code with __KVM_HAVE_VCPU_EVENTS. Reviewed-by: David Hildenbrand <david@redhat.com> Reviewed-by: Andrew Jones <drjones@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20190523164309.13345-3-thuth@redhat.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
This commit is contained in:
committed by
Christian Borntraeger
parent
f2c7c76c5d
commit
a9c788f073
@@ -114,10 +114,12 @@ void vcpu_sregs_set(struct kvm_vm *vm, uint32_t vcpuid,
|
|||||||
struct kvm_sregs *sregs);
|
struct kvm_sregs *sregs);
|
||||||
int _vcpu_sregs_set(struct kvm_vm *vm, uint32_t vcpuid,
|
int _vcpu_sregs_set(struct kvm_vm *vm, uint32_t vcpuid,
|
||||||
struct kvm_sregs *sregs);
|
struct kvm_sregs *sregs);
|
||||||
|
#ifdef __KVM_HAVE_VCPU_EVENTS
|
||||||
void vcpu_events_get(struct kvm_vm *vm, uint32_t vcpuid,
|
void vcpu_events_get(struct kvm_vm *vm, uint32_t vcpuid,
|
||||||
struct kvm_vcpu_events *events);
|
struct kvm_vcpu_events *events);
|
||||||
void vcpu_events_set(struct kvm_vm *vm, uint32_t vcpuid,
|
void vcpu_events_set(struct kvm_vm *vm, uint32_t vcpuid,
|
||||||
struct kvm_vcpu_events *events);
|
struct kvm_vcpu_events *events);
|
||||||
|
#endif
|
||||||
#ifdef __x86_64__
|
#ifdef __x86_64__
|
||||||
void vcpu_nested_state_get(struct kvm_vm *vm, uint32_t vcpuid,
|
void vcpu_nested_state_get(struct kvm_vm *vm, uint32_t vcpuid,
|
||||||
struct kvm_nested_state *state);
|
struct kvm_nested_state *state);
|
||||||
|
@@ -1222,6 +1222,7 @@ void vcpu_regs_set(struct kvm_vm *vm, uint32_t vcpuid, struct kvm_regs *regs)
|
|||||||
ret, errno);
|
ret, errno);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __KVM_HAVE_VCPU_EVENTS
|
||||||
void vcpu_events_get(struct kvm_vm *vm, uint32_t vcpuid,
|
void vcpu_events_get(struct kvm_vm *vm, uint32_t vcpuid,
|
||||||
struct kvm_vcpu_events *events)
|
struct kvm_vcpu_events *events)
|
||||||
{
|
{
|
||||||
@@ -1247,6 +1248,7 @@ void vcpu_events_set(struct kvm_vm *vm, uint32_t vcpuid,
|
|||||||
TEST_ASSERT(ret == 0, "KVM_SET_VCPU_EVENTS, failed, rc: %i errno: %i",
|
TEST_ASSERT(ret == 0, "KVM_SET_VCPU_EVENTS, failed, rc: %i errno: %i",
|
||||||
ret, errno);
|
ret, errno);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __x86_64__
|
#ifdef __x86_64__
|
||||||
void vcpu_nested_state_get(struct kvm_vm *vm, uint32_t vcpuid,
|
void vcpu_nested_state_get(struct kvm_vm *vm, uint32_t vcpuid,
|
||||||
|
Reference in New Issue
Block a user