From: Amerigo Wang Date: Thu, 19 May 2011 21:39:11 +0000 (+0000) Subject: bridge: call NETDEV_JOIN notifiers when add a slave X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bb8ed6302b0613339c1a5f0a2cb0b3807c0af611;p=linux-beck.git bridge: call NETDEV_JOIN notifiers when add a slave In the previous patch I added NETDEV_JOIN, now we can notify netconsole when adding a device to a bridge too. Signed-off-by: WANG Cong Cc: Neil Horman Signed-off-by: David S. Miller --- diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c index 5dbdfdfc3a34..d5147ddd70bf 100644 --- a/net/bridge/br_if.c +++ b/net/bridge/br_if.c @@ -338,6 +338,8 @@ int br_add_if(struct net_bridge *br, struct net_device *dev) if (IS_ERR(p)) return PTR_ERR(p); + call_netdevice_notifiers(NETDEV_JOIN, dev); + err = dev_set_promiscuity(dev, 1); if (err) goto put_back;