]> git.proxmox.com Git - pve-qemu.git/blob - debian/patches/pve/0023-PVE-monitor-disable-oob-capability.patch
update submodule and patches to QEMU 8.1.2
[pve-qemu.git] / debian / patches / pve / 0023-PVE-monitor-disable-oob-capability.patch
1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Mon, 6 Apr 2020 12:16:53 +0200
4 Subject: [PATCH] PVE: monitor: disable oob capability
5
6 A bisect revealed that commit 8258292e18c3
7 ("monitor: Remove "x-oob", offer capability "oob" unconditionally")
8 causes unexpected hangs when restoring live snapshots from some
9 types of block devices (particularly RBD).
10 We need to figure out what's happnening there. For now, since we
11 had this disabled before and probably don't need it now either,
12 disable oob, so we can get a functioning qemu out...
13
14 Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
15 Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
16 ---
17 monitor/qmp.c | 3 +--
18 1 file changed, 1 insertion(+), 2 deletions(-)
19
20 diff --git a/monitor/qmp.c b/monitor/qmp.c
21 index c15bf1e1fc..04fe25c62c 100644
22 --- a/monitor/qmp.c
23 +++ b/monitor/qmp.c
24 @@ -553,8 +553,7 @@ void monitor_init_qmp(Chardev *chr, bool pretty, Error **errp)
25 qemu_chr_fe_set_echo(&mon->common.chr, true);
26
27 /* Note: we run QMP monitor in I/O thread when @chr supports that */
28 - monitor_data_init(&mon->common, true, false,
29 - qemu_chr_has_feature(chr, QEMU_CHAR_FEATURE_GCONTEXT));
30 + monitor_data_init(&mon->common, true, false, false);
31
32 mon->pretty = pretty;
33