From: Daniel Henrique Barboza Date: Tue, 19 Nov 2024 19:17:05 +0000 (-0300) Subject: target/riscv/kvm: remove irqchip_split() restriction X-Git-Tag: v10.0.0-rc0~110^2~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce7320bf5641bfcf864c2ad9a31358c41a686c10;p=thirdparty%2Fqemu.git target/riscv/kvm: remove irqchip_split() restriction Remove the 'irqchip_split()' restriction in kvm_arch_init() now that we have support for "-accel kvm,kernel-irqchip=split". Signed-off-by: Daniel Henrique Barboza Reviewed-by: Alistair Francis Message-ID: <20241119191706.718860-8-dbarboza@ventanamicro.com> Signed-off-by: Alistair Francis --- diff --git a/target/riscv/kvm/kvm-cpu.c b/target/riscv/kvm/kvm-cpu.c index a9680f24476..aaff4a0f429 100644 --- a/target/riscv/kvm/kvm-cpu.c +++ b/target/riscv/kvm/kvm-cpu.c @@ -1408,11 +1408,6 @@ int kvm_arch_init(MachineState *ms, KVMState *s) int kvm_arch_irqchip_create(KVMState *s) { - if (kvm_kernel_irqchip_split()) { - error_report("-machine kernel_irqchip=split is not supported on RISC-V."); - exit(1); - } - /* * We can create the VAIA using the newer device control API. */