From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UuGAP-0003kY-HC for qemu-devel@nongnu.org; Wed, 03 Jul 2013 02:03:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UuGAO-0005So-KP for qemu-devel@nongnu.org; Wed, 03 Jul 2013 02:03:49 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:35232) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UuGAO-0005RH-D9 for qemu-devel@nongnu.org; Wed, 03 Jul 2013 02:03:48 -0400 Message-ID: <51D3BEBA.4080809@msgid.tls.msk.ru> Date: Wed, 03 Jul 2013 10:03:38 +0400 From: Michael Tokarev MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] moving CHR_EVENT_OPEN out of BH broke echo for muxed mon List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel , Michael Roth , Anthony Liguori Before commit bd5c51ee6c4f1c79cae5ad2516d711a27b4ea8ec Author: Michael Roth Date: Fri Jun 7 15:19:53 2013 -0500 qemu-char: don't issue CHR_EVENT_OPEN in a BH we had no echo by default with -nographic, and it gave the prompt when switching to monitor: $ qemu-system-x86_64 -nographic _ (nothing is on the screen except the command line) (Ctrl+A, c) QEMU 1.5.0 monitor - type 'help' for more information (qemu) _ After this patch, we now have: $ qemu-system-x86_64 -nographic QEMU 1.5.0 monitor - type 'help' for more information (qemu) _ (note the cursor position on the _next_ line after the prompt), and the system is actually in "serial port" mode, not monitor mode (you still need to hit Ctrl+A,c to switch to monitor). Thanks, /mjt