diff mbox series

[RFC,05/13] cpu: Add boolean mirror_vcpu field to CPUState

Message ID eeae2e7593c7ab5771158f9552d6c08a0823c115.1629118207.git.ashish.kalra@amd.com (mailing list archive)
State New, archived
Headers show
Series Add support for Mirror VM. | expand

Commit Message

Kalra, Ashish Aug. 16, 2021, 1:28 p.m. UTC
From: Dov Murik <dovmurik@linux.vnet.ibm.com>

The mirror field indicates mirror VCPUs.  This will allow QEMU to act
differently on mirror VCPUs.

Signed-off-by: Dov Murik <dovmurik@linux.vnet.ibm.com>
Co-developed-by: Ashish Kalra <ashish.kalra@amd.com>
Signed-off-by: Ashish Kalra <ashish.kalra@amd.com>
---
 hw/core/cpu-common.c  | 1 +
 include/hw/core/cpu.h | 3 +++
 2 files changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/hw/core/cpu-common.c b/hw/core/cpu-common.c
index e2f5a64604..99298f3a79 100644
--- a/hw/core/cpu-common.c
+++ b/hw/core/cpu-common.c
@@ -269,6 +269,7 @@  static Property cpu_common_props[] = {
                      MemoryRegion *),
 #endif
     DEFINE_PROP_BOOL("start-powered-off", CPUState, start_powered_off, false),
+    DEFINE_PROP_BOOL("mirror_vcpu", CPUState, mirror_vcpu, false),
     DEFINE_PROP_END_OF_LIST(),
 };
 
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h
index bc864564ce..a8f5f7862d 100644
--- a/include/hw/core/cpu.h
+++ b/include/hw/core/cpu.h
@@ -402,6 +402,9 @@  struct CPUState {
     /* shared by kvm, hax and hvf */
     bool vcpu_dirty;
 
+    /* does this cpu belong to mirror VM */
+    bool mirror_vcpu;
+
     /* Used to keep track of an outstanding cpu throttle thread for migration
      * autoconverge
      */