[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v4 14/14] kvm: remove kvm specific functions from global includes
From: |
Claudio Fontana |
Subject: |
[RFC v4 14/14] kvm: remove kvm specific functions from global includes |
Date: |
Tue, 11 Aug 2020 23:03:26 +0200 |
Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
accel/kvm/kvm-all.c | 1 +
accel/kvm/kvm-cpus.c | 1 +
accel/kvm/kvm-int.h | 23 +++++++++++++++++++++++
accel/stubs/kvm-stub.c | 22 ----------------------
include/sysemu/kvm.h | 7 -------
5 files changed, 25 insertions(+), 29 deletions(-)
create mode 100644 accel/kvm/kvm-int.h
diff --git a/accel/kvm/kvm-all.c b/accel/kvm/kvm-all.c
index fbd82cb444..75e8c60d0b 100644
--- a/accel/kvm/kvm-all.c
+++ b/accel/kvm/kvm-all.c
@@ -47,6 +47,7 @@
#include "qemu/guest-random.h"
#include "sysemu/hw_accel.h"
#include "kvm-cpus.h"
+#include "kvm-int.h"
#include "hw/boards.h"
diff --git a/accel/kvm/kvm-cpus.c b/accel/kvm/kvm-cpus.c
index 7866a2e9c3..28762acdc1 100644
--- a/accel/kvm/kvm-cpus.c
+++ b/accel/kvm/kvm-cpus.c
@@ -22,6 +22,7 @@
#include "qemu/guest-random.h"
#include "kvm-cpus.h"
+#include "kvm-int.h"
static void *kvm_vcpu_thread_fn(void *arg)
{
diff --git a/accel/kvm/kvm-int.h b/accel/kvm/kvm-int.h
new file mode 100644
index 0000000000..46e54437cf
--- /dev/null
+++ b/accel/kvm/kvm-int.h
@@ -0,0 +1,23 @@
+/*
+ * QEMU KVM support
+ *
+ * Copyright IBM, Corp. 2008
+ *
+ * Authors:
+ * Anthony Liguori <aliguori@us.ibm.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ *
+ */
+#ifndef KVM_INT_H
+#define KVM_INT_H
+
+int kvm_init_vcpu(CPUState *cpu);
+int kvm_cpu_exec(CPUState *cpu);
+void kvm_destroy_vcpu(CPUState *cpu);
+void kvm_cpu_synchronize_post_reset(CPUState *cpu);
+void kvm_cpu_synchronize_post_init(CPUState *cpu);
+void kvm_cpu_synchronize_pre_loadvm(CPUState *cpu);
+
+#endif /* KVM_INT_H */
diff --git a/accel/stubs/kvm-stub.c b/accel/stubs/kvm-stub.c
index 69f8a842da..680e099463 100644
--- a/accel/stubs/kvm-stub.c
+++ b/accel/stubs/kvm-stub.c
@@ -32,15 +32,6 @@ bool kvm_readonly_mem_allowed;
bool kvm_ioeventfd_any_length_allowed;
bool kvm_msi_use_devid;
-void kvm_destroy_vcpu(CPUState *cpu)
-{
-}
-
-int kvm_init_vcpu(CPUState *cpu)
-{
- return -ENOSYS;
-}
-
void kvm_flush_coalesced_mmio_buffer(void)
{
}
@@ -49,19 +40,6 @@ void kvm_cpu_synchronize_state(CPUState *cpu)
{
}
-void kvm_cpu_synchronize_post_reset(CPUState *cpu)
-{
-}
-
-void kvm_cpu_synchronize_post_init(CPUState *cpu)
-{
-}
-
-int kvm_cpu_exec(CPUState *cpu)
-{
- abort();
-}
-
bool kvm_has_sync_mmu(void)
{
return false;
diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h
index 7a5f973b6f..bb03e0c68b 100644
--- a/include/sysemu/kvm.h
+++ b/include/sysemu/kvm.h
@@ -216,10 +216,6 @@ int kvm_has_many_ioeventfds(void);
int kvm_has_gsi_routing(void);
int kvm_has_intx_set_mask(void);
-int kvm_init_vcpu(CPUState *cpu);
-int kvm_cpu_exec(CPUState *cpu);
-void kvm_destroy_vcpu(CPUState *cpu);
-
/**
* kvm_arm_supports_user_irq
*
@@ -479,9 +475,6 @@ int kvm_physical_memory_addr_from_host(KVMState *s, void
*ram_addr,
#endif /* NEED_CPU_H */
void kvm_cpu_synchronize_state(CPUState *cpu);
-void kvm_cpu_synchronize_post_reset(CPUState *cpu);
-void kvm_cpu_synchronize_post_init(CPUState *cpu);
-void kvm_cpu_synchronize_pre_loadvm(CPUState *cpu);
void kvm_init_cpu_signals(CPUState *cpu);
--
2.16.4
- [RFC v4 05/14] cpus: extract out kvm-specific code to accel/kvm, (continued)
- [RFC v4 05/14] cpus: extract out kvm-specific code to accel/kvm, Claudio Fontana, 2020/08/11
- [RFC v4 09/14] cpus: cleanup now unneeded includes, Claudio Fontana, 2020/08/11
- [RFC v4 07/14] cpus: extract out whpx-specific code to target/i386/, Claudio Fontana, 2020/08/11
- [RFC v4 06/14] cpus: extract out hax-specific code to target/i386/, Claudio Fontana, 2020/08/11
- [RFC v4 08/14] cpus: extract out hvf-specific code to target/i386/hvf/, Claudio Fontana, 2020/08/11
- [RFC v4 10/14] cpus: add handle_interrupt to the CpusAccel interface, Claudio Fontana, 2020/08/11
- [RFC v4 11/14] hvf: remove hvf specific functions from global includes, Claudio Fontana, 2020/08/11
- [RFC v4 14/14] kvm: remove kvm specific functions from global includes,
Claudio Fontana <=
- [RFC v4 12/14] whpx: remove whpx specific functions from global includes, Claudio Fontana, 2020/08/11
- [RFC v4 13/14] hax: remove hax specific functions from global includes, Claudio Fontana, 2020/08/11