Re: [PATCH net-next] bridge: make br_fdb_delete also check if the port matches

2015-06-10 Thread David Miller
From: Nikolay Aleksandrov Date: Tue, 9 Jun 2015 03:34:13 -0700 > Before this patch the user-specified bridge port was ignored when > deleting an fdb entry and thus one could delete an entry that belonged > to any port. > Example (eth0 and eth1 are br0 ports): > bridge fdb add 00:11:22:33:44:55 d

[PATCH net-next] bridge: make br_fdb_delete also check if the port matches

2015-06-09 Thread Nikolay Aleksandrov
Before this patch the user-specified bridge port was ignored when deleting an fdb entry and thus one could delete an entry that belonged to any port. Example (eth0 and eth1 are br0 ports): bridge fdb add 00:11:22:33:44:55 dev eth0 master bridge fdb del 00:11:22:33:44:55 dev eth1 master (succeeds)