[Bridge] [PATCH] bridge: Cannot communicate with brX when its MAC address is changed

2011-12-13 Thread Koki Sanagi
When the MAC address of a bridge interface is changed, it cannot communicate with others. Because Whether or not a packet should be transferred to bridge interface depends on whether or not dst of a packet is in fdb and is_local=y. If we change MAC address of a bridge interface, it isn't in fdb. T

Re: [Bridge] [PATCH] bridge: Cannot communicate with brX when its MAC address is changed

2011-12-01 Thread David Miller
From: Stephen Hemminger Date: Thu, 1 Dec 2011 09:21:06 -0800 > Looked into using fdb to handle this, but then there would be fdb entries > where the destination port entry was either NULL (or a dummy), and that > would require a bunch of auditing of all usages and could introduce new > bugs. > >

Re: [Bridge] [PATCH] bridge: Cannot communicate with brX when its MAC address is changed

2011-12-01 Thread Stephen Hemminger
On Wed, 30 Nov 2011 17:31:18 +0900 Koki Sanagi wrote: > When the MAC address of a bridge interface is changed, it cannot communicate > with others. Because Whether or not a packet should be transferred to bridge > interface depends on whether or not dst of a packet is in fdb and is_local=y. > If

Re: [Bridge] [PATCH] bridge: Cannot communicate with brX when its MAC address is changed

2011-11-30 Thread David Miller
From: Koki Sanagi Date: Wed, 30 Nov 2011 17:31:18 +0900 > When the MAC address of a bridge interface is changed, it cannot communicate > with others. Because Whether or not a packet should be transferred to bridge > interface depends on whether or not dst of a packet is in fdb and is_local=y. > I