[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 19/41] hvf: Move HVFState typedef to hvf.h
From: |
Eduardo Habkost |
Subject: |
[PATCH 19/41] hvf: Move HVFState typedef to hvf.h |
Date: |
Thu, 13 Aug 2020 18:26:03 -0400 |
Move typedef closer to the type check macros, to make it easier
to convert the code to OBJECT_DEFINE_TYPE() in the future.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
include/sysemu/hvf.h | 1 +
target/i386/hvf/hvf-i386.h | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/sysemu/hvf.h b/include/sysemu/hvf.h
index d3bed80ea8..760d6c79a2 100644
--- a/include/sysemu/hvf.h
+++ b/include/sysemu/hvf.h
@@ -35,6 +35,7 @@ void hvf_vcpu_destroy(CPUState *);
#define TYPE_HVF_ACCEL ACCEL_CLASS_NAME("hvf")
+typedef struct HVFState HVFState;
#define HVF_STATE(obj) \
OBJECT_CHECK(HVFState, (obj), TYPE_HVF_ACCEL)
diff --git a/target/i386/hvf/hvf-i386.h b/target/i386/hvf/hvf-i386.h
index ef20c73eca..e0edffd077 100644
--- a/target/i386/hvf/hvf-i386.h
+++ b/target/i386/hvf/hvf-i386.h
@@ -57,13 +57,13 @@ typedef struct hvf_vcpu_caps {
uint64_t vmx_cap_preemption_timer;
} hvf_vcpu_caps;
-typedef struct HVFState {
+struct HVFState {
AccelState parent;
hvf_slot slots[32];
int num_slots;
hvf_vcpu_caps *hvf_caps;
-} HVFState;
+};
extern HVFState *hvf_state;
void hvf_set_phys_mem(MemoryRegionSection *, bool);
--
2.26.2
- Re: [PATCH 16/41] throttle-groups: Move ThrottleGroup typedef to header, (continued)
- [PATCH 14/41] hcd-dwc2: Rename USB_*CLASS macros for consistency, Eduardo Habkost, 2020/08/13
- [PATCH 15/41] tulip: Move TulipState typedef to header, Eduardo Habkost, 2020/08/13
- [PATCH 18/41] i8254: Move PITCommonState/PITCommonClass typedefs to i8254.h, Eduardo Habkost, 2020/08/13
- [PATCH 19/41] hvf: Move HVFState typedef to hvf.h,
Eduardo Habkost <=
- [PATCH 17/41] pci: Move PCIBusClass typedef to pci.h, Eduardo Habkost, 2020/08/13
- [PATCH 21/41] s390_flic: Move KVMS390FLICState typedef to header, Eduardo Habkost, 2020/08/13
- [PATCH 22/41] can_emu: Delete macros for non-existing typedef, Eduardo Habkost, 2020/08/13
- [PATCH 24/41] platform-bus: Delete macros for non-existing typedef, Eduardo Habkost, 2020/08/13