qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCHv4 2/2] slirp: Allow disabling IPv4 or IPv6


From: Samuel Thibault
Subject: Re: [Qemu-devel] [PATCHv4 2/2] slirp: Allow disabling IPv4 or IPv6
Date: Tue, 29 Mar 2016 01:46:12 +0200
User-agent: Mutt/1.5.21+34 (58baf7c9f32f) (2010-12-30)

Eric Blake, on Mon 28 Mar 2016 09:12:04 -0600, wrote:
> > +    if ((user->has_ipv6 && user->ipv6 && !user->has_ipv4)
> > +            || (user->has_ipv4 && !user->ipv4))
> > +        ipv4 = 0;
> 
> Inconsistent with current qemu style.  Should be:
> 
>     if ((user->has_ipv6 && user->ipv6 && !user->has_ipv4) ||
>         (user->has_ipv4 && !user->ipv4)) {

Ah, I didn't know about that one.  I personally prefer it the other way,
but alright.

> In particular, the missing {} (should) fail ./scripts/checkpatch.pl.

Right, sorry, it seems I forgot to re-run the script after the last
rework.

Samuel



reply via email to

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