diff options
| author | Markus Armbruster <armbru@redhat.com> | 2019-06-19 22:10:41 +0200 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2019-07-02 13:37:00 +0200 |
| commit | 8ac25c84429031695a8b57727e2b518f5c3d8137 (patch) | |
| tree | 2bc7c4f7331b2170a4219d96b4b2139f53beb611 /include | |
| parent | 2dd02587a94a323def785074b42476f9a887bdd0 (diff) | |
| download | focaccia-qemu-8ac25c84429031695a8b57727e2b518f5c3d8137.tar.gz focaccia-qemu-8ac25c84429031695a8b57727e2b518f5c3d8137.zip | |
qapi: Split machine.json off misc.json
Move commands cpu-add, query-cpus, query-cpus-fast, query-current-machine, query-hotpluggable-cpus, query-machines, query-memdev, and set-numa-node with their types from misc.json to new machine.json. Also move types X86CPURegister32 and X86CPUFeatureWordInfo. Add machine.json to MAINTAINERS section "Machine core". Cc: Eduardo Habkost <ehabkost@redhat.com> Cc: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190619201050.19040-9-armbru@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/boards.h | 1 | ||||
| -rw-r--r-- | include/sysemu/hostmem.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index eaa050a7ab..c6ad196b14 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -6,6 +6,7 @@ #include "sysemu/blockdev.h" #include "sysemu/accel.h" #include "hw/qdev.h" +#include "qapi/qapi-types-machine.h" #include "qemu/module.h" #include "qom/object.h" #include "qom/cpu.h" diff --git a/include/sysemu/hostmem.h b/include/sysemu/hostmem.h index a023b372a4..92fa0e458c 100644 --- a/include/sysemu/hostmem.h +++ b/include/sysemu/hostmem.h @@ -14,7 +14,7 @@ #define SYSEMU_HOSTMEM_H #include "sysemu/sysemu.h" /* for MAX_NODES */ -#include "qapi/qapi-types-misc.h" +#include "qapi/qapi-types-machine.h" #include "qom/object.h" #include "exec/memory.h" #include "qemu/bitmap.h" |