aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorjianchunfu <chunfu.jian@shingroup.cn>2023-07-21 15:37:34 +0800
committerCédric Le Goater <clg@kaod.org>2023-09-06 11:19:33 +0200
commit76d93e146768dde7e38b6e5e43c27e478ccb580e (patch)
tree63c4ace577fa527e9845af19facf782eb37a294f /target
parent6ec65b69ba17c954414fa23a397fb8a3fcfb4a43 (diff)
downloadqemu-76d93e146768dde7e38b6e5e43c27e478ccb580e.zip
qemu-76d93e146768dde7e38b6e5e43c27e478ccb580e.tar.gz
qemu-76d93e146768dde7e38b6e5e43c27e478ccb580e.tar.bz2
target/ppc: Fix the order of kvm_enable judgment about kvmppc_set_interrupt()
It's unnecessary for non-KVM accelerators(TCG, for example), to call this function, so change the order of kvm_enable() judgment. The static inline function that returns -1 directly does not work in TCG's situation. Signed-off-by: jianchunfu <chunfu.jian@shingroup.cn> Tested-by: Gautam Menghani <gautam@linux.ibm.com> Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'target')
-rw-r--r--target/ppc/kvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/ppc/kvm.c b/target/ppc/kvm.c
index 7698501..51112bd 100644
--- a/target/ppc/kvm.c
+++ b/target/ppc/kvm.c
@@ -1320,7 +1320,7 @@ int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level)
return 0;
}
- if (!kvm_enabled() || !cap_interrupt_unset) {
+ if (!cap_interrupt_unset) {
return 0;
}