]> git.proxmox.com Git - pve-qemu-kvm.git/blame - debian/patches/pve/0038-qapi-qmp_mashal_-renames-for-async-snapshot.patch
bump version to 2.6.2-2
[pve-qemu-kvm.git] / debian / patches / pve / 0038-qapi-qmp_mashal_-renames-for-async-snapshot.patch
CommitLineData
6fb04df7 1From 6eeadc56b6dac81222e595fd4d95daac4cac3333 Mon Sep 17 00:00:00 2001
ca0fe5f5
WB
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Thu, 10 Dec 2015 15:21:10 +0100
6fb04df7 4Subject: [PATCH 38/55] qapi: qmp_mashal_* renames for async snapshot
ca0fe5f5
WB
5
6As per 7fad30f0:
7qapi: Rename qmp_marshal_input_FOO() to qmp_marshal_FOO()
8
9For-patch: internal snapshot async
10---
11 qmp-commands.hx | 10 +++++-----
12 1 file changed, 5 insertions(+), 5 deletions(-)
13
14diff --git a/qmp-commands.hx b/qmp-commands.hx
6fb04df7 15index 0eebb75..6abe9df 100644
ca0fe5f5
WB
16--- a/qmp-commands.hx
17+++ b/qmp-commands.hx
6fb04df7 18@@ -4808,31 +4808,31 @@ EQMP
ca0fe5f5
WB
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--
562.1.4
57