* [Qemu-devel] [PATCH] virtio-9p: Fix syntax error in debug code
@ 2011-07-20 6:27 Stefan Weil
2011-07-20 9:44 ` Aneesh Kumar K.V
0 siblings, 1 reply; 4+ messages in thread
From: Stefan Weil @ 2011-07-20 6:27 UTC (permalink / raw)
To: qemu-devel; +Cc: Aneesh Kumar K.V
This error was reported by cppcheck:
qemu/hw/9pfs/virtio-9p-debug.c:342:
error: Invalid number of character ({) when these macros are defined:
'DEBUG_DATA'.
Cc: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
---
hw/9pfs/virtio-9p-debug.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/hw/9pfs/virtio-9p-debug.c b/hw/9pfs/virtio-9p-debug.c
index 4636ad5..96925f0 100644
--- a/hw/9pfs/virtio-9p-debug.c
+++ b/hw/9pfs/virtio-9p-debug.c
@@ -295,7 +295,7 @@ static void pprint_data(V9fsPDU *pdu, int rx, size_t *offsetp, const char *name)
if (rx) {
count = pdu->elem.in_num;
- } else
+ } else {
count = pdu->elem.out_num;
}
--
1.7.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] virtio-9p: Fix syntax error in debug code
2011-07-20 6:27 [Qemu-devel] [PATCH] virtio-9p: Fix syntax error in debug code Stefan Weil
@ 2011-07-20 9:44 ` Aneesh Kumar K.V
2011-09-08 16:17 ` Stefan Weil
0 siblings, 1 reply; 4+ messages in thread
From: Aneesh Kumar K.V @ 2011-07-20 9:44 UTC (permalink / raw)
To: Stefan Weil, qemu-devel
On Wed, 20 Jul 2011 08:27:28 +0200, Stefan Weil <weil@mail.berlios.de> wrote:
> This error was reported by cppcheck:
>
> qemu/hw/9pfs/virtio-9p-debug.c:342:
> error: Invalid number of character ({) when these macros are defined:
> 'DEBUG_DATA'.
>
> Cc: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
> Signed-off-by: Stefan Weil <weil@mail.berlios.de>
> ---
> hw/9pfs/virtio-9p-debug.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/hw/9pfs/virtio-9p-debug.c b/hw/9pfs/virtio-9p-debug.c
> index 4636ad5..96925f0 100644
> --- a/hw/9pfs/virtio-9p-debug.c
> +++ b/hw/9pfs/virtio-9p-debug.c
> @@ -295,7 +295,7 @@ static void pprint_data(V9fsPDU *pdu, int rx, size_t *offsetp, const char *name)
>
> if (rx) {
> count = pdu->elem.in_num;
> - } else
> + } else {
> count = pdu->elem.out_num;
> }
>
Applied.
We also need to update virtio-9p-debug w.r.t the new co-routine
series. With co-routine we can have multiple 9p handler started
simultaneously.
-aneesh
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] virtio-9p: Fix syntax error in debug code
2011-07-20 9:44 ` Aneesh Kumar K.V
@ 2011-09-08 16:17 ` Stefan Weil
2011-09-09 8:58 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
0 siblings, 1 reply; 4+ messages in thread
From: Stefan Weil @ 2011-09-08 16:17 UTC (permalink / raw)
To: qemu-trivial; +Cc: qemu-devel
Am 20.07.2011 11:44, schrieb Aneesh Kumar K.V:
> On Wed, 20 Jul 2011 08:27:28 +0200, Stefan Weil <weil@mail.berlios.de>
> wrote:
>> This error was reported by cppcheck:
>>
>> qemu/hw/9pfs/virtio-9p-debug.c:342:
>> error: Invalid number of character ({) when these macros are defined:
>> 'DEBUG_DATA'.
>>
>> Cc: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
>> Signed-off-by: Stefan Weil <weil@mail.berlios.de>
>> ---
>> hw/9pfs/virtio-9p-debug.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/hw/9pfs/virtio-9p-debug.c b/hw/9pfs/virtio-9p-debug.c
>> index 4636ad5..96925f0 100644
>> --- a/hw/9pfs/virtio-9p-debug.c
>> +++ b/hw/9pfs/virtio-9p-debug.c
>> @@ -295,7 +295,7 @@ static void pprint_data(V9fsPDU *pdu, int rx,
>> size_t *offsetp, const char *name)
>>
>> if (rx) {
>> count = pdu->elem.in_num;
>> - } else
>> + } else {
>> count = pdu->elem.out_num;
>> }
>>
>
> Applied.
>
> We also need to update virtio-9p-debug w.r.t the new co-routine
> series. With co-routine we can have multiple 9p handler started
> simultaneously.
>
> -aneesh
Maybe this patch can be applied via qemu-trivial.
I simply would like to get it out of my list of open patches.
Thanks,
Stefan W.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH] virtio-9p: Fix syntax error in debug code
2011-09-08 16:17 ` Stefan Weil
@ 2011-09-09 8:58 ` Stefan Hajnoczi
0 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2011-09-09 8:58 UTC (permalink / raw)
To: Stefan Weil; +Cc: qemu-trivial, qemu-devel
On Thu, Sep 08, 2011 at 06:17:08PM +0200, Stefan Weil wrote:
> Am 20.07.2011 11:44, schrieb Aneesh Kumar K.V:
> >On Wed, 20 Jul 2011 08:27:28 +0200, Stefan Weil
> ><weil@mail.berlios.de> wrote:
> >>This error was reported by cppcheck:
> >>
> >>qemu/hw/9pfs/virtio-9p-debug.c:342:
> >>error: Invalid number of character ({) when these macros are defined:
> >>'DEBUG_DATA'.
> >>
> >>Cc: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
> >>Signed-off-by: Stefan Weil <weil@mail.berlios.de>
> >>---
> >>hw/9pfs/virtio-9p-debug.c | 2 +-
> >>1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >>diff --git a/hw/9pfs/virtio-9p-debug.c b/hw/9pfs/virtio-9p-debug.c
> >>index 4636ad5..96925f0 100644
> >>--- a/hw/9pfs/virtio-9p-debug.c
> >>+++ b/hw/9pfs/virtio-9p-debug.c
> >>@@ -295,7 +295,7 @@ static void pprint_data(V9fsPDU *pdu, int
> >>rx, size_t *offsetp, const char *name)
> >>
> >>if (rx) {
> >>count = pdu->elem.in_num;
> >>- } else
> >>+ } else {
> >>count = pdu->elem.out_num;
> >>}
> >>
> >
> >Applied.
> >
> >We also need to update virtio-9p-debug w.r.t the new co-routine
> >series. With co-routine we can have multiple 9p handler started
> >simultaneously.
> >
> >-aneesh
>
> Maybe this patch can be applied via qemu-trivial.
> I simply would like to get it out of my list of open patches.
I checked with Aneesh who agreed to move this patch through the
trivial-patches tree. This patch has been applied to the trivial
patches -next tree:
http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/trivial-patches-next
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-09-09 8:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-20 6:27 [Qemu-devel] [PATCH] virtio-9p: Fix syntax error in debug code Stefan Weil
2011-07-20 9:44 ` Aneesh Kumar K.V
2011-09-08 16:17 ` Stefan Weil
2011-09-09 8:58 ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi
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).