qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* Re: [Qemu-devel] [PATCH v3 0/2] qapi: fix coding style in generated code
       [not found] <1398668558-16687-1-git-send-email-akong@redhat.com>
@ 2014-05-05 20:51 ` Luiz Capitulino
  2014-05-05 20:56   ` Luiz Capitulino
  2014-05-05 21:22   ` Paolo Bonzini
  0 siblings, 2 replies; 4+ messages in thread
From: Luiz Capitulino @ 2014-05-05 20:51 UTC (permalink / raw)
  To: Amos Kong; +Cc: famz, mdroth, armbru, qemu-devel, anthony, pbonzini

On Mon, 28 Apr 2014 15:02:35 +0800
Amos Kong <akong@redhat.com> wrote:

> Not a serious issue, but it's helpful if we can fix it.
> 
> V2: split change of scripts/qapi-visit.py to a split patch,
>     eat space by using a special char as Markus suggested
> V3: update commitlog, update special string, fix of adding
>     const replace string by pattern
> 
> Amos Kong (3):
>   qapi: fix coding style in parameters list
>   qapi: add const prefix to 'char *' insider c_type()
>   qapi: Suppress unwanted space between type and identifier

Applied to the qmp branch.

The last conflicts with another patch I applied to my tree (both
are importing re module). I fixed it myself by dropping your import.

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

* Re: [Qemu-devel] [PATCH v3 0/2] qapi: fix coding style in generated code
  2014-05-05 20:51 ` [Qemu-devel] [PATCH v3 0/2] qapi: fix coding style in generated code Luiz Capitulino
@ 2014-05-05 20:56   ` Luiz Capitulino
  2014-05-05 21:22   ` Paolo Bonzini
  1 sibling, 0 replies; 4+ messages in thread
From: Luiz Capitulino @ 2014-05-05 20:56 UTC (permalink / raw)
  To: Amos Kong; +Cc: famz, mdroth, armbru, qemu-devel, anthony, pbonzini

On Mon, 5 May 2014 16:51:04 -0400
Luiz Capitulino <lcapitulino@redhat.com> wrote:

> On Mon, 28 Apr 2014 15:02:35 +0800
> Amos Kong <akong@redhat.com> wrote:
> 
> > Not a serious issue, but it's helpful if we can fix it.
> > 
> > V2: split change of scripts/qapi-visit.py to a split patch,
> >     eat space by using a special char as Markus suggested
> > V3: update commitlog, update special string, fix of adding
> >     const replace string by pattern
> > 
> > Amos Kong (3):
> >   qapi: fix coding style in parameters list
> >   qapi: add const prefix to 'char *' insider c_type()
> >   qapi: Suppress unwanted space between type and identifier
> 
> Applied to the qmp branch.
> 
> The last conflicts with another patch I applied to my tree (both
> are importing re module). I fixed it myself by dropping your import.

I couldn't understand what I wrote myself :)

The last patch in this series does:

-import sys
+import sys, re

However, module re is already included by another patch in my queue.
So, I dropped those two lines from the last patch in this series.

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

* Re: [Qemu-devel] [PATCH v3 0/2] qapi: fix coding style in generated code
  2014-05-05 20:51 ` [Qemu-devel] [PATCH v3 0/2] qapi: fix coding style in generated code Luiz Capitulino
  2014-05-05 20:56   ` Luiz Capitulino
@ 2014-05-05 21:22   ` Paolo Bonzini
  2014-05-06 13:00     ` Luiz Capitulino
  1 sibling, 1 reply; 4+ messages in thread
From: Paolo Bonzini @ 2014-05-05 21:22 UTC (permalink / raw)
  To: Luiz Capitulino, Amos Kong; +Cc: armbru, famz, qemu-devel, anthony, mdroth

Il 05/05/2014 22:51, Luiz Capitulino ha scritto:
> On Mon, 28 Apr 2014 15:02:35 +0800
> Amos Kong <akong@redhat.com> wrote:
>
>> Not a serious issue, but it's helpful if we can fix it.
>>
>> V2: split change of scripts/qapi-visit.py to a split patch,
>>     eat space by using a special char as Markus suggested
>> V3: update commitlog, update special string, fix of adding
>>     const replace string by pattern
>>
>> Amos Kong (3):
>>   qapi: fix coding style in parameters list
>>   qapi: add const prefix to 'char *' insider c_type()
>>   qapi: Suppress unwanted space between type and identifier
>
> Applied to the qmp branch.
>
> The last conflicts with another patch I applied to my tree (both
> are importing re module). I fixed it myself by dropping your import.
>

Did you address my comment at
http://lists.nongnu.org/archive/html/qemu-devel/2014-04/msg04445.html
while applying, too?

Paolo

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

* Re: [Qemu-devel] [PATCH v3 0/2] qapi: fix coding style in generated code
  2014-05-05 21:22   ` Paolo Bonzini
@ 2014-05-06 13:00     ` Luiz Capitulino
  0 siblings, 0 replies; 4+ messages in thread
From: Luiz Capitulino @ 2014-05-06 13:00 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: famz, mdroth, armbru, qemu-devel, anthony, Amos Kong

On Mon, 05 May 2014 23:22:05 +0200
Paolo Bonzini <pbonzini@redhat.com> wrote:

> Il 05/05/2014 22:51, Luiz Capitulino ha scritto:
> > On Mon, 28 Apr 2014 15:02:35 +0800
> > Amos Kong <akong@redhat.com> wrote:
> >
> >> Not a serious issue, but it's helpful if we can fix it.
> >>
> >> V2: split change of scripts/qapi-visit.py to a split patch,
> >>     eat space by using a special char as Markus suggested
> >> V3: update commitlog, update special string, fix of adding
> >>     const replace string by pattern
> >>
> >> Amos Kong (3):
> >>   qapi: fix coding style in parameters list
> >>   qapi: add const prefix to 'char *' insider c_type()
> >>   qapi: Suppress unwanted space between type and identifier
> >
> > Applied to the qmp branch.
> >
> > The last conflicts with another patch I applied to my tree (both
> > are importing re module). I fixed it myself by dropping your import.
> >
> 
> Did you address my comment at
> http://lists.nongnu.org/archive/html/qemu-devel/2014-04/msg04445.html
> while applying, too?

No, I thought you were OK with the current version. If you're not then
Amos will have to respin.

Amos, if you do respin please rebase on top of the qmp queue:

  git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

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

end of thread, other threads:[~2014-05-06 13:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1398668558-16687-1-git-send-email-akong@redhat.com>
2014-05-05 20:51 ` [Qemu-devel] [PATCH v3 0/2] qapi: fix coding style in generated code Luiz Capitulino
2014-05-05 20:56   ` Luiz Capitulino
2014-05-05 21:22   ` Paolo Bonzini
2014-05-06 13:00     ` Luiz Capitulino

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