]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0007-qapi-modify-query-machines.patch
bump version to 2.11.1-1
[pve-qemu.git] / debian / patches / pve / 0007-qapi-modify-query-machines.patch
CommitLineData
23102ed6 1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
95259824
WB
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Wed, 9 Dec 2015 14:31:18 +0100
23102ed6 4Subject: [PATCH] qapi: modify query machines
95259824
WB
5
6provide '*is-current' in MachineInfo struct
7---
8 qapi-schema.json | 4 +++-
9 vl.c | 5 +++++
10 2 files changed, 8 insertions(+), 1 deletion(-)
11
12diff --git a/qapi-schema.json b/qapi-schema.json
6838f038 13index ebc22fe5a6..8f436ba1f3 100644
95259824
WB
14--- a/qapi-schema.json
15+++ b/qapi-schema.json
6838f038 16@@ -1914,6 +1914,8 @@
95259824 17 #
a544966d 18 # @is-default: whether the machine is default
95259824 19 #
a544966d 20+# @is-current: whether this machine is currently used
95259824
WB
21+#
22 # @cpu-max: maximum number of CPUs supported by the machine type
23 # (since 1.5.0)
24 #
6838f038 25@@ -1923,7 +1925,7 @@
95259824
WB
26 ##
27 { 'struct': 'MachineInfo',
28 'data': { 'name': 'str', '*alias': 'str',
29- '*is-default': 'bool', 'cpu-max': 'int',
30+ '*is-default': 'bool', '*is-current': 'bool', 'cpu-max': 'int',
31 'hotpluggable-cpus': 'bool'} }
32
33 ##
34diff --git a/vl.c b/vl.c
6838f038 35index 1ad1c04637..2e0fe15978 100644
95259824
WB
36--- a/vl.c
37+++ b/vl.c
6838f038 38@@ -1604,6 +1604,11 @@ MachineInfoList *qmp_query_machines(Error **errp)
95259824 39 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
a544966d 40 info->hotpluggable_cpus = mc->has_hotpluggable_cpus;
95259824
WB
41
42+ if (strcmp(mc->name, MACHINE_GET_CLASS(current_machine)->name) == 0) {
43+ info->has_is_current = true;
44+ info->is_current = true;
45+ }
46+
47 entry = g_malloc0(sizeof(*entry));
48 entry->value = info;
49 entry->next = mach_list;
50--
45169293 512.11.0
95259824 52