]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0025-PVE-monitor-disable-oob-capability.patch
bump version to 4.2.0-2
[pve-qemu.git] / debian / patches / pve / 0025-PVE-monitor-disable-oob-capability.patch
CommitLineData
23ea0293 1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
a0866d18 2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
6402d961
TL
3Date: Tue, 10 Mar 2020 12:55:22 +0100
4Subject: [PATCH 25/32] PVE: monitor: disable oob capability
23ea0293
WB
5
6A bisect revealed that commit 8258292e18c3
7("monitor: Remove "x-oob", offer capability "oob" unconditionally")
8causes unexpected hangs when restoring live snapshots from some
9types of block devices (particularly RBD).
10We need to figure out what's happnening there. For now, since we
11had this disabled before and probably don't need it now either,
12disable oob, so we can get a functioning qemu out...
13
14Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
15Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
16---
be901f66
SR
17 monitor/qmp.c | 3 +--
18 1 file changed, 1 insertion(+), 2 deletions(-)
23ea0293 19
be901f66 20diff --git a/monitor/qmp.c b/monitor/qmp.c
6402d961 21index b67a8e7d1f..8f44fed944 100644
be901f66
SR
22--- a/monitor/qmp.c
23+++ b/monitor/qmp.c
6402d961 24@@ -395,8 +395,7 @@ void monitor_init_qmp(Chardev *chr, bool pretty)
be901f66 25 MonitorQMP *mon = g_new0(MonitorQMP, 1);
23ea0293
WB
26
27 /* Note: we run QMP monitor in I/O thread when @chr supports that */
be901f66
SR
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;
23ea0293 33