[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4C6328A8.4070703@candelatech.com>
Date: Wed, 11 Aug 2010 15:48:08 -0700
From: Ben Greear <greearb@...delatech.com>
To: Brian Haley <brian.haley@...com>
CC: netdev@...r.kernel.org
Subject: Re: [iproute2] iproute2: Fix 'addr flush secondary' logic.
On 08/11/2010 01:41 PM, Brian Haley wrote:
> On 08/11/2010 01:19 PM, Ben Greear wrote:
>> @@ -648,7 +648,7 @@ int print_addrinfo_secondary(const struct sockaddr_nl *who, struct nlmsghdr *n,
>> {
>> struct ifaddrmsg *ifa = NLMSG_DATA(n);
>>
>> - if (ifa->ifa_flags& IFA_F_SECONDARY)
>> + if (!ifa->ifa_flags& IFA_F_SECONDARY)
>> return 0;
>
> Shouldn't this be:
>
> if (!(ifa->ifa_flags& IFA_F_SECONDARY))
>
> -Brian
Looks like the code was broken in several different places.
* It ran only a single filter if there were multiple.
* Don't want to flush in a loop if you are doing primary
because otherwise promoted seconaries will get deleted
for each additional loop (10 in upstream code).
* No idea what a while (0); statement at the end of a for
loop does, but I don't think it needed to be there!
The attached patch makes it work for me, supporting
flushing primary or secondary addresses.
It could certainly use some review, however.
Thanks,
Ben
--
Ben Greear <greearb@...delatech.com>
Candela Technologies Inc http://www.candelatech.com
View attachment "iproute_flush.patch" of type "text/plain" (2814 bytes)
Powered by blists - more mailing lists