qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] hmp: Print \n after [not inserted]


From: Lucas Meneghel Rodrigues
Subject: Re: [Qemu-devel] [PATCH] hmp: Print \n after [not inserted]
Date: Wed, 02 Oct 2013 22:30:03 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.0

On 10/02/2013 10:08 PM, Lucas Meneghel Rodrigues wrote:
I've noticed this when virt-test QEMU monitor protocol
code was getting all confused with output like:

'Removable device: not locked, tray closed\n [not inserted](qemu)'

Since it was breaking some assumptions on that code. I've
fixed the prompt matching code to be more lenient, but here
the human monitor is supposed to print the newline anyway.

Oh well, it seems that we're not supposed to have the newline there by the look of the resulting output. Please ignore this patch.

CC: Stefan Hajnoczi <address@hidden>
Signed-off-by: Lucas Meneghel Rodrigues <address@hidden>
---
  hmp.c        | 2 +-
  roms/seabios | 2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hmp.c b/hmp.c
index 5891507..2d2e5f8 100644
--- a/hmp.c
+++ b/hmp.c
@@ -367,7 +367,7 @@ void hmp_info_block(Monitor *mon, const QDict *qdict)
                              info->value->inserted->iops_wr_max,
                              info->value->inserted->iops_size);
          } else {
-            monitor_printf(mon, " [not inserted]");
+            monitor_printf(mon, " [not inserted]\n");
          }

          if (verbose) {
diff --git a/roms/seabios b/roms/seabios
index ece025f..7093aa5 160000
--- a/roms/seabios
+++ b/roms/seabios
@@ -1 +1 @@
-Subproject commit ece025f5980bae88fa677bc9c0d24d2e580e205d
+Subproject commit 7093aa58046f8685025b0198708e7768733a017d





reply via email to

[Prev in Thread] Current Thread [Next in Thread]