From: Marc-André Lureau Date: Wed, 5 Dec 2018 20:37:35 +0000 (+0400) Subject: colo: check chardev can switch context X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=269d25cdeb3acecf0033d6809dd7e23ebbc78ce9;p=qemu.git colo: check chardev can switch context COLO uses a worker context (iothread) to drive the chardev. All backends are not able to switch the context, let's report an error in this case. Signed-off-by: Marc-André Lureau Message-Id: <20181205203737.9011-6-marcandre.lureau@redhat.com> Reviewed-by: Li Zhijian Reviewed-by: Zhang Chen Signed-off-by: Markus Armbruster --- diff --git a/net/colo-compare.c b/net/colo-compare.c index a39191d522..9156ab3349 100644 --- a/net/colo-compare.c +++ b/net/colo-compare.c @@ -957,6 +957,12 @@ static int find_and_check_chardev(Chardev **chr, return 1; } + if (!qemu_chr_has_feature(*chr, QEMU_CHAR_FEATURE_GCONTEXT)) { + error_setg(errp, "chardev \"%s\" cannot switch context", + chr_name); + return 1; + } + return 0; }