From: Gerd Hoffmann <kraxel@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-trivial@nongnu.org, Li Liu <john.liuli@huawei.com>,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] qemu-char: fix terminal crash when using "-monitor stdio -nographic"
Date: Fri, 05 Sep 2014 11:31:37 +0200 [thread overview]
Message-ID: <1409909497.20018.9.camel@nilsson.home.kraxel.org> (raw)
In-Reply-To: <87bnqujv51.fsf@blackfin.pond.sub.org>
On Fr, 2014-09-05 at 11:04 +0200, Markus Armbruster wrote:
> Li Liu <john.liuli@huawei.com> writes:
>
> > Ping, any more comments? Thanks.
>
> I'd like to hear Gerd's opinion (cc'ed).
>
> >>> But is having multiple character devices use the same terminal valid?
No (guess we should catch that case in stdio init).
Beside the tty initialization and cleanup you also have the problem that
both users are racing for input. Well, maybe not in the qemu case as it
is the same process and it very well might be that it polls the two
chardevs in a well defined order, so one of them gets all input and the
other gets nothing. With two processes reading from the terminal (try
'cat | less') it is actually random though.
> >> I'm not sure. But I have found such comments in vl.c
> >> "According to documentation and historically, -nographic redirects
> >> serial port, parallel port and monitor to stdio"
In that case mux chardev is used (that is the piece which handles the
input switching between serial and monitor via 'Ctrl-A c'). There is
one stdio instance, and one mux instance, the mux is chained to stdio,
and mux allows multiple backends to connect.
You can construct it on the command line this way:
qemu -nographic -nodefaults \
-chardev stdio,mux=on,id=terminal \
-serial chardev:terminal \
-monitor chardev:terminal
[ serial is default, so no output here, unless you boot a guest
with serial console configured ]
[ Hit 'Ctrl-A h' now ]
C-a h print this help
C-a x exit emulator
C-a s save disk data back to file (if -snapshot)
C-a t toggle console timestamps
C-a b send break (magic sysrq)
C-a c switch between console and monitor
C-a C-a sends C-a
[ Hit 'Ctrl-A c' now ]
QEMU 2.1.50 monitor - type 'help' for more information
(qemu) info chardev
terminal: filename=mux
terminal-base: filename=stdio
(qemu)
HTH,
Gerd
next prev parent reply other threads:[~2014-09-05 9:32 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-27 5:00 [Qemu-devel] [PATCH] qemu-char: fix terminal crash when using "-monitor stdio -nographic" john.liuli
2014-08-27 6:44 ` Markus Armbruster
2014-08-27 7:40 ` Li Liu
2014-09-05 1:38 ` Li Liu
2014-09-05 9:04 ` Markus Armbruster
2014-09-05 9:31 ` Gerd Hoffmann [this message]
2014-09-09 2:22 ` Li Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1409909497.20018.9.camel@nilsson.home.kraxel.org \
--to=kraxel@redhat.com \
--cc=armbru@redhat.com \
--cc=john.liuli@huawei.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).