qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf()
@ 2013-10-17  3:16 Mike Qiu
  2013-10-17  8:11 ` Kevin Wolf
  2013-10-17  8:14 ` Stefan Hajnoczi
  0 siblings, 2 replies; 5+ messages in thread
From: Mike Qiu @ 2013-10-17  3:16 UTC (permalink / raw)
  To: qemu-devel
  Cc: kwolf, benoit, armbru, lcapitulino, Mike Qiu, stefanha, xiawenc

Change to v1:
	remove '[not inserted]' line instead of adding '\n'

Output of 'info block'

scsi0-hd0: /images/f18-ppc64.qcow2 (qcow2)
 [not inserted]
scsi0-cd2: [not inserted]
    Removable device: not locked, tray closed

floppy0: [not inserted]
    Removable device: not locked, tray closed

sd0: [not inserted]
    Removable device: not locked, tray closed

There will be no additional lines between scsi0-hd0 and
scsi0-cd2.

At the same time, scsi0-hd0 already inserted, but still has
'[not inserted]' flag. This line should be removed.

This patch is to solve this.

Signed-off-by: Mike Qiu <qiudayu@linux.vnet.ibm.com>
---
 hmp.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/hmp.c b/hmp.c
index 5891507..32ee285 100644
--- a/hmp.c
+++ b/hmp.c
@@ -366,8 +366,6 @@ void hmp_info_block(Monitor *mon, const QDict *qdict)
                             info->value->inserted->iops_rd_max,
                             info->value->inserted->iops_wr_max,
                             info->value->inserted->iops_size);
-        } else {
-            monitor_printf(mon, " [not inserted]");
         }
 
         if (verbose) {
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf()
  2013-10-17  3:16 [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf() Mike Qiu
@ 2013-10-17  8:11 ` Kevin Wolf
  2013-10-17  8:35   ` mike
  2013-10-17  8:14 ` Stefan Hajnoczi
  1 sibling, 1 reply; 5+ messages in thread
From: Kevin Wolf @ 2013-10-17  8:11 UTC (permalink / raw)
  To: Mike Qiu; +Cc: benoit, armbru, qemu-devel, stefanha, lcapitulino, xiawenc

Am 17.10.2013 um 05:16 hat Mike Qiu geschrieben:
> Change to v1:
> 	remove '[not inserted]' line instead of adding '\n'

Please put such notes for reviewers below the --- line, so that git am
automatically removes them and they don't end up in the git commit
message.

> Output of 'info block'
> 
> scsi0-hd0: /images/f18-ppc64.qcow2 (qcow2)
>  [not inserted]
> scsi0-cd2: [not inserted]
>     Removable device: not locked, tray closed
> 
> floppy0: [not inserted]
>     Removable device: not locked, tray closed
> 
> sd0: [not inserted]
>     Removable device: not locked, tray closed
> 
> There will be no additional lines between scsi0-hd0 and
> scsi0-cd2.
> 
> At the same time, scsi0-hd0 already inserted, but still has
> '[not inserted]' flag. This line should be removed.
> 
> This patch is to solve this.
> 
> Signed-off-by: Mike Qiu <qiudayu@linux.vnet.ibm.com>

Reviewed-by: Kevin Wolf <kwolf@redhat.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf()
  2013-10-17  3:16 [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf() Mike Qiu
  2013-10-17  8:11 ` Kevin Wolf
@ 2013-10-17  8:14 ` Stefan Hajnoczi
  2013-10-17  8:34   ` mike
  1 sibling, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2013-10-17  8:14 UTC (permalink / raw)
  To: Mike Qiu
  Cc: kwolf, benoit, qemu-devel, armbru, lcapitulino, stefanha, xiawenc

On Wed, Oct 16, 2013 at 11:16:01PM -0400, Mike Qiu wrote:
> Change to v1:
> 	remove '[not inserted]' line instead of adding '\n'
> 
> Output of 'info block'
> 
> scsi0-hd0: /images/f18-ppc64.qcow2 (qcow2)
>  [not inserted]
> scsi0-cd2: [not inserted]
>     Removable device: not locked, tray closed
> 
> floppy0: [not inserted]
>     Removable device: not locked, tray closed
> 
> sd0: [not inserted]
>     Removable device: not locked, tray closed
> 
> There will be no additional lines between scsi0-hd0 and
> scsi0-cd2.
> 
> At the same time, scsi0-hd0 already inserted, but still has
> '[not inserted]' flag. This line should be removed.
> 
> This patch is to solve this.
> 
> Signed-off-by: Mike Qiu <qiudayu@linux.vnet.ibm.com>
> ---
>  hmp.c | 2 --
>  1 file changed, 2 deletions(-)

The commit message is out-of-date, this patch now drops the bogus "[not
inserted]" output.  I fixed up the commit message.

In the future, please put the patch changelog after the "---" line so
that git am does not include the changelog in the commit description.

Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block

Stefan

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf()
  2013-10-17  8:14 ` Stefan Hajnoczi
@ 2013-10-17  8:34   ` mike
  0 siblings, 0 replies; 5+ messages in thread
From: mike @ 2013-10-17  8:34 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: kwolf, benoit, qemu-devel, armbru, lcapitulino, stefanha, xiawenc

On 10/17/2013 04:14 PM, Stefan Hajnoczi wrote:
> On Wed, Oct 16, 2013 at 11:16:01PM -0400, Mike Qiu wrote:
>> Change to v1:
>> 	remove '[not inserted]' line instead of adding '\n'
>>
>> Output of 'info block'
>>
>> scsi0-hd0: /images/f18-ppc64.qcow2 (qcow2)
>>   [not inserted]
>> scsi0-cd2: [not inserted]
>>      Removable device: not locked, tray closed
>>
>> floppy0: [not inserted]
>>      Removable device: not locked, tray closed
>>
>> sd0: [not inserted]
>>      Removable device: not locked, tray closed
>>
>> There will be no additional lines between scsi0-hd0 and
>> scsi0-cd2.
>>
>> At the same time, scsi0-hd0 already inserted, but still has
>> '[not inserted]' flag. This line should be removed.
>>
>> This patch is to solve this.
>>
>> Signed-off-by: Mike Qiu <qiudayu@linux.vnet.ibm.com>
>> ---
>>   hmp.c | 2 --
>>   1 file changed, 2 deletions(-)
> The commit message is out-of-date, this patch now drops the bogus "[not
> inserted]" output.  I fixed up the commit message.
>
> In the future, please put the patch changelog after the "---" line so
> that git am does not include the changelog in the commit description.
OK, Got it, thanks for your kindly remind :)

Thanks
Mike
> Thanks, applied to my block tree:
> https://github.com/stefanha/qemu/commits/block
>
> Stefan
>
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf()
  2013-10-17  8:11 ` Kevin Wolf
@ 2013-10-17  8:35   ` mike
  0 siblings, 0 replies; 5+ messages in thread
From: mike @ 2013-10-17  8:35 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: benoit, armbru, qemu-devel, lcapitulino, stefanha, xiawenc

On 10/17/2013 04:11 PM, Kevin Wolf wrote:
> Am 17.10.2013 um 05:16 hat Mike Qiu geschrieben:
>> Change to v1:
>> 	remove '[not inserted]' line instead of adding '\n'
> Please put such notes for reviewers below the --- line, so that git am
> automatically removes them and they don't end up in the git commit
> message.
OK, thanks for your kindly remind,

Thanks
Mike
>> Output of 'info block'
>>
>> scsi0-hd0: /images/f18-ppc64.qcow2 (qcow2)
>>   [not inserted]
>> scsi0-cd2: [not inserted]
>>      Removable device: not locked, tray closed
>>
>> floppy0: [not inserted]
>>      Removable device: not locked, tray closed
>>
>> sd0: [not inserted]
>>      Removable device: not locked, tray closed
>>
>> There will be no additional lines between scsi0-hd0 and
>> scsi0-cd2.
>>
>> At the same time, scsi0-hd0 already inserted, but still has
>> '[not inserted]' flag. This line should be removed.
>>
>> This patch is to solve this.
>>
>> Signed-off-by: Mike Qiu <qiudayu@linux.vnet.ibm.com>
> Reviewed-by: Kevin Wolf <kwolf@redhat.com>
>
>
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-10-17  8:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-17  3:16 [Qemu-devel] [PATCH v2] hmp: solve '\n' in monitor_printf() Mike Qiu
2013-10-17  8:11 ` Kevin Wolf
2013-10-17  8:35   ` mike
2013-10-17  8:14 ` Stefan Hajnoczi
2013-10-17  8:34   ` mike

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).