lkml.org 
[lkml]   [2017]   [May]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH net-next 3/6] net: bridge: break if __br_mdb_del fails
Date
Hi Nikolay,

Nikolay Aleksandrov <nikolay@cumulusnetworks.com> writes:

>> err = __br_mdb_del(br, entry);
>> - if (!err)
>> - __br_mdb_notify(dev, p, entry, RTM_DELMDB);
>> + if (err)
>> + break;
>> + __br_mdb_notify(dev, p, entry, RTM_DELMDB);
>> }
>> } else {
>> err = __br_mdb_del(br, entry);
>>
>
> This can potentially break user-space scripts that rely on the best-effort
> behaviour, this is the normal "delete without vid & enabled vlan filtering".
> You can check the fdb delete code which does the same, this was intentional.
>
> You can add an mdb entry without a vid to all vlans, add a vlan and then try
> to remove it from all vlans where it is present - with this patch obviously
> that will fail at the new vlan.

OK good to know. That intention wasn't obvious. I can make __br_mdb_del
return void instead? What about the rest of the patchset if I do so?

Thanks,

Vivien

\
 
 \ /
  Last update: 2017-05-18 17:10    [W:0.057 / U:0.148 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site