mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04:00
Start creating a VGICv3 by default unless explicitly opted-out by the test. While having an interrupt controller is nice, the real benefit here is clearing a hurdle for EL2 VMs which mandate the presence of a VGIC. Signed-off-by: Oliver Upton <oliver.upton@linux.dev> Signed-off-by: Marc Zyngier <maz@kernel.org>
11 lines
200 B
C
11 lines
200 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef SELFTEST_KVM_UTIL_ARCH_H
|
|
#define SELFTEST_KVM_UTIL_ARCH_H
|
|
|
|
struct kvm_vm_arch {
|
|
bool has_gic;
|
|
int gic_fd;
|
|
};
|
|
|
|
#endif // SELFTEST_KVM_UTIL_ARCH_H
|