]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/pve/0038-qapi-qmp_mashal_-renames-for-async-snapshot.patch
adding 2.5 pve patches and left-over extra fixes
[pve-qemu-kvm.git] / debian / patches / pve / 0038-qapi-qmp_mashal_-renames-for-async-snapshot.patch
1 From 610ba269757b48a75efce7a05cfd2bc4d9016da7 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Thu, 10 Dec 2015 15:21:10 +0100
4 Subject: [PATCH 38/41] qapi: qmp_mashal_* renames for async snapshot
5
6 As per 7fad30f0:
7 qapi: Rename qmp_marshal_input_FOO() to qmp_marshal_FOO()
8
9 For-patch: internal snapshot async
10 ---
11 qmp-commands.hx | 10 +++++-----
12 1 file changed, 5 insertions(+), 5 deletions(-)
13
14 diff --git a/qmp-commands.hx b/qmp-commands.hx
15 index 478de38..129e1b3 100644
16 --- a/qmp-commands.hx
17 +++ b/qmp-commands.hx
18 @@ -4700,31 +4700,31 @@ EQMP
19 {
20 .name = "savevm-start",
21 .args_type = "statefile:s?",
22 - .mhandler.cmd_new = qmp_marshal_input_savevm_start,
23 + .mhandler.cmd_new = qmp_marshal_savevm_start,
24 },
25
26 {
27 .name = "snapshot-drive",
28 .args_type = "device:s,name:s",
29 - .mhandler.cmd_new = qmp_marshal_input_snapshot_drive,
30 + .mhandler.cmd_new = qmp_marshal_snapshot_drive,
31 },
32
33 {
34 .name = "delete-drive-snapshot",
35 .args_type = "device:s,name:s",
36 - .mhandler.cmd_new = qmp_marshal_input_delete_drive_snapshot,
37 + .mhandler.cmd_new = qmp_marshal_delete_drive_snapshot,
38 },
39
40 {
41 .name = "savevm-end",
42 .args_type = "",
43 - .mhandler.cmd_new = qmp_marshal_input_savevm_end,
44 + .mhandler.cmd_new = qmp_marshal_savevm_end,
45 },
46
47 {
48 .name = "query-savevm",
49 .args_type = "",
50 - .mhandler.cmd_new = qmp_marshal_input_query_savevm,
51 + .mhandler.cmd_new = qmp_marshal_query_savevm,
52 },
53
54 {
55 --
56 2.1.4
57