This is a note to let you know that I've just added the patch titled team: unsyc the devices addresses when port is removed to the 3.8-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: team-unsyc-the-devices-addresses-when-port-is-removed.patch and it can be found in the queue-3.8 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 716e93f23ee293e0bd2da22306f9be9647be28e9 Mon Sep 17 00:00:00 2001 From: Vlad Yasevich <vyasevic@xxxxxxxxxx> Date: Thu, 7 Mar 2013 07:59:25 +0000 Subject: team: unsyc the devices addresses when port is removed From: Vlad Yasevich <vyasevic@xxxxxxxxxx> [ Upstream commit ba81276b1a5e3cf0674cb0e6d9525e5ae0c98695 ] When a team port is removed, unsync all devices addresses that may have been synched to the port devices. CC: Jiri Pirko <jiri@xxxxxxxxxxx> Signed-off-by: Vlad Yasevich <vyasevic@xxxxxxxxxx> Acked-by: Jiri Pirko <jiri@xxxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/team/team.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/net/team/team.c +++ b/drivers/net/team/team.c @@ -1139,6 +1139,8 @@ static int team_port_del(struct team *te netdev_set_master(port_dev, NULL); team_port_disable_netpoll(port); vlan_vids_del_by_dev(port_dev, dev); + dev_uc_unsync(port_dev, dev); + dev_mc_unsync(port_dev, dev); dev_close(port_dev); team_port_leave(team, port); team_port_set_orig_dev_addr(port); Patches currently in stable-queue which might be from vyasevic@xxxxxxxxxx are queue-3.8/macvlan-set-iff_unicast_flt-flag-to-prevent-unnecessary-promisc-mode.patch queue-3.8/team-unsyc-the-devices-addresses-when-port-is-removed.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html