qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [multiprocess RFC PATCH 19/37] multi-process: store info about the remote process
@ 2019-03-07  7:22 elena.ufimtseva
  0 siblings, 0 replies; only message in thread
From: elena.ufimtseva @ 2019-03-07  7:22 UTC (permalink / raw)
  To: qemu-devel
  Cc: elena.ufimtseva, ross.lagerwall, stefanha, liran.alon,
	kanth.ghatraju, john.g.johnson, jag.raman, konrad.wilk,
	sstabellini, mst, marcel.apfelbaum, pbonzini, rth, ehabkost

From: Elena Ufimtseva <elena.ufimtseva@oracle.com>

Store info about the remote process in a hash table, so that
it could be used later for QMP/HMP commands.

Signed-off-by: John G Johnson <john.g.johnson@oracle.com>
Signed-off-by: Elena Ufimtseva <elena.ufimtseva@oracle.com>
Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
---
 hw/i386/pc.c          | 1 +
 hw/proxy/qemu-proxy.c | 7 +++++++
 include/hw/i386/pc.h  | 3 +++
 3 files changed, 11 insertions(+)

diff --git a/hw/i386/pc.c b/hw/i386/pc.c
index 4212818..9f569cf 100644
--- a/hw/i386/pc.c
+++ b/hw/i386/pc.c
@@ -2643,6 +2643,7 @@ static void pc_machine_initfn(Object *obj)
     pcms->smbus_enabled = true;
     pcms->sata_enabled = true;
     pcms->pit_enabled = true;
+    pcms->remote_devs = g_hash_table_new(g_str_hash, g_str_equal);
 }
 
 static void pc_machine_reset(void)
diff --git a/hw/proxy/qemu-proxy.c b/hw/proxy/qemu-proxy.c
index d525344..d1560d9 100644
--- a/hw/proxy/qemu-proxy.c
+++ b/hw/proxy/qemu-proxy.c
@@ -50,6 +50,8 @@
 #include "qemu/event_notifier.h"
 #include "sysemu/kvm.h"
 #include "util/event_notifier-posix.c"
+#include "hw/i386/pc.h"
+#include "hw/boards.h"
 
 /*
  * TODO: kvm_vm_ioctl is only available for per-target objects (NEED_CPU_H).
@@ -234,6 +236,7 @@ static void init_emulation_process(PCIProxyDev *pdev, char *command, Error **err
     }
 
     pdev->proxy_link = proxy_link_create();
+    pdev->remote_pid = rpid;
 
     if (!pdev->proxy_link) {
         error_setg(errp, "Failed to create proxy link");
@@ -252,9 +255,13 @@ static void pci_proxy_dev_realize(PCIDevice *device, Error **errp)
     PCIProxyDev *dev = PCI_PROXY_DEV(device);
     PCIProxyDevClass *k = PCI_PROXY_DEV_GET_CLASS(dev);
     Error *local_err = NULL;
+    PCMachineState *pcms = PC_MACHINE(current_machine);
+    DeviceState *d = DEVICE(dev);
 
     init_emulation_process(dev, k->command, errp);
 
+    (void)g_hash_table_insert(pcms->remote_devs, (gpointer)d->id, (gpointer)dev);
+
     if (k->realize) {
         k->realize(dev, &local_err);
         if (local_err) {
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
index 54222a2..ded7cf0 100644
--- a/include/hw/i386/pc.h
+++ b/include/hw/i386/pc.h
@@ -1,6 +1,8 @@
 #ifndef HW_PC_H
 #define HW_PC_H
 
+#include <gmodule.h>
+
 #include "qemu-common.h"
 #include "exec/memory.h"
 #include "hw/boards.h"
@@ -39,6 +41,7 @@ struct PCMachineState {
     PCIBus *bus;
     FWCfgState *fw_cfg;
     qemu_irq *gsi;
+    GHashTable *remote_devs;
 
     /* Configuration options: */
     uint64_t max_ram_below_4g;
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-03-07  7:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-07  7:22 [Qemu-devel] [multiprocess RFC PATCH 19/37] multi-process: store info about the remote process elena.ufimtseva

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).