]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/pve/0037-qapi-qmp_marshal_-renames-for-pve-monitor-commands.patch
adding 2.5 pve patches and left-over extra fixes
[pve-qemu-kvm.git] / debian / patches / pve / 0037-qapi-qmp_marshal_-renames-for-pve-monitor-commands.patch
1 From 6c9fa84fe9a676616fc9bdbf148c255c79f37f99 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Thu, 10 Dec 2015 15:19:42 +0100
4 Subject: [PATCH 37/41] qapi: qmp_marshal_* renames for pve monitor commands
5
6 As per 7fad30f0:
7 qapi: Rename qmp_marshal_input_FOO() to qmp_marshal_FOO()
8
9 For-patch: backup: add pve monitor commands
10 ---
11 qmp-commands.hx | 6 +++---
12 1 file changed, 3 insertions(+), 3 deletions(-)
13
14 diff --git a/qmp-commands.hx b/qmp-commands.hx
15 index de07f54..478de38 100644
16 --- a/qmp-commands.hx
17 +++ b/qmp-commands.hx
18 @@ -1256,19 +1256,19 @@ EQMP
19 {
20 .name = "backup",
21 .args_type = "backup-file:s,format:s?,config-file:F?,firewall-file:F?,speed:o?,devlist:s?",
22 - .mhandler.cmd_new = qmp_marshal_input_backup,
23 + .mhandler.cmd_new = qmp_marshal_backup,
24 },
25
26 {
27 .name = "backup-cancel",
28 .args_type = "",
29 - .mhandler.cmd_new = qmp_marshal_input_backup_cancel,
30 + .mhandler.cmd_new = qmp_marshal_backup_cancel,
31 },
32
33 {
34 .name = "query-backup",
35 .args_type = "",
36 - .mhandler.cmd_new = qmp_marshal_input_query_backup,
37 + .mhandler.cmd_new = qmp_marshal_query_backup,
38 },
39
40 {
41 --
42 2.1.4
43