char-stdio: Fix QMP default for 'signal'
authorKevin Wolf <kwolf@redhat.com>
Fri, 23 Oct 2020 10:12:17 +0000 (12:12 +0200)
committerKevin Wolf <kwolf@redhat.com>
Tue, 17 Nov 2020 11:26:47 +0000 (12:26 +0100)
Commit 02c4bdf1 tried to make signal=on the default for stdio chardevs
except for '-serial mon:stdio', but it forgot about QMP and accidentally
switched the QMP default from true (except for -nographic) to false
(always). The documentation was kept unchanged and still describes the
opposite of the old behaviour (which is an even older documentation
bug).

Fix all of this by making signal=true the default in ChardevStdio and
documenting it as such.

Fixes: 02c4bdf1d2ca8c02a9bae16398f260b5c08d08bf
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20201023101222.250147-2-kwolf@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
chardev/char-stdio.c
qapi/char.json

index 82eaebc1db6528b9238455d0ae3710134abaebee..403da308c980ebf24eaacb61cc2e77c6ffb5ad03 100644 (file)
@@ -112,9 +112,7 @@ static void qemu_chr_open_stdio(Chardev *chr,
 
     qemu_chr_open_fd(chr, 0, 1);
 
-    if (opts->has_signal) {
-        stdio_allow_signal = opts->signal;
-    }
+    stdio_allow_signal = !opts->has_signal || opts->signal;
     qemu_chr_set_echo_stdio(chr, false);
 }
 #endif
index b4d66ec90b051f99e7256cfcc10fa99f5dd38509..43486d1daa93a9b612545cce27d6063daf63e537 100644 (file)
 # Configuration info for stdio chardevs.
 #
 # @signal: Allow signals (such as SIGINT triggered by ^C)
-#          be delivered to qemu.  Default: true in -nographic mode,
-#          false otherwise.
+#          be delivered to qemu.  Default: true.
 #
 # Since: 1.5
 ##