]> git.proxmox.com Git - pve-qemu-kvm.git/blobdiff - debian/patches/modify-query-machines.patch
refresh and enable debian/patches/modify-query-machines.patch
[pve-qemu-kvm.git] / debian / patches / modify-query-machines.patch
index 58c6cc0bef6d1ed7eae1512da0f012272b2b1041..adf78693ce72e776cf0b068ab078a6ab423ef9e4 100644 (file)
@@ -1,8 +1,8 @@
 Index: new/qapi-schema.json
 ===================================================================
---- new.orig/qapi-schema.json  2013-11-27 11:35:03.000000000 +0100
-+++ new/qapi-schema.json       2013-11-27 11:41:45.000000000 +0100
-@@ -3180,6 +3180,8 @@
+--- new.orig/qapi-schema.json  2014-05-05 07:54:16.000000000 +0200
++++ new/qapi-schema.json       2014-05-05 08:09:23.000000000 +0200
+@@ -3431,6 +3431,8 @@
  #
  # @default: #optional whether the machine is default
  #
@@ -11,7 +11,7 @@ Index: new/qapi-schema.json
  # @cpu-max: maximum number of CPUs supported by the machine type
  #           (since 1.5.0)
  #
-@@ -3187,7 +3189,7 @@
+@@ -3438,7 +3440,7 @@
  ##
  { 'type': 'MachineInfo',
    'data': { 'name': 'str', '*alias': 'str',
@@ -22,13 +22,13 @@ Index: new/qapi-schema.json
  # @query-machines:
 Index: new/vl.c
 ===================================================================
---- new.orig/vl.c      2013-11-27 11:27:31.000000000 +0100
-+++ new/vl.c   2013-11-27 11:38:27.000000000 +0100
-@@ -1643,6 +1643,11 @@
+--- new.orig/vl.c      2014-05-05 07:54:16.000000000 +0200
++++ new/vl.c   2014-05-05 08:14:33.000000000 +0200
+@@ -1673,6 +1673,11 @@
          info->name = g_strdup(m->name);
          info->cpu_max = !m->max_cpus ? 1 : m->max_cpus;
  
-+        if (strcmp(m->name, current_machine->name) == 0) {
++        if (strcmp(m->name, MACHINE_GET_CLASS(current_machine)->qemu_machine->name) == 0) {
 +            info->has_is_current = true;
 +            info->is_current = true;
 +        }