Cong Wang
2012-Jul-27 15:38 UTC
[Bridge] [PATCH 4/7] bridge: call NETDEV_RELEASE notifier in br_del_if()
When a bridge interface deletes its underlying ports, it should notify netconsole too, like what bonding interface does. Cc: "David S. Miller" <davem at davemloft.net> Signed-off-by: Cong Wang <amwang at redhat.com> --- net/bridge/br_if.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c index e1144e1..d243914 100644 --- a/net/bridge/br_if.c +++ b/net/bridge/br_if.c @@ -427,6 +427,7 @@ int br_del_if(struct net_bridge *br, struct net_device *dev) if (!p || p->br != br) return -EINVAL; + call_netdevice_notifiers(NETDEV_RELEASE, br->dev); del_nbp(p); spin_lock_bh(&br->lock); -- 1.7.7.6
Stephen Hemminger
2012-Jul-27 15:50 UTC
[Bridge] [PATCH 4/7] bridge: call NETDEV_RELEASE notifier in br_del_if()
On Fri, 27 Jul 2012 23:38:01 +0800 Cong Wang <amwang at redhat.com> wrote:> When a bridge interface deletes its underlying ports, it should > notify netconsole too, like what bonding interface does. > > Cc: "David S. Miller" <davem at davemloft.net> > Signed-off-by: Cong Wang <amwang at redhat.com> > --- > net/bridge/br_if.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c > index e1144e1..d243914 100644 > --- a/net/bridge/br_if.c > +++ b/net/bridge/br_if.c > @@ -427,6 +427,7 @@ int br_del_if(struct net_bridge *br, struct net_device *dev) > if (!p || p->br != br) > return -EINVAL; > > + call_netdevice_notifiers(NETDEV_RELEASE, br->dev); > del_nbp(p); > > spin_lock_bh(&br->lock);Since you can have multiple ports attached to the bridge, this doesn't seem correct. Don't you want the netconsole to keep going on the other ports of the bridge? What exactly is the problem with having netconsole persist?
Maybe Matching Threads
- [Bridge] [PATCH] net/bridge: Add 'hairpin' port forwarding mode
- [Bridge] [PATCH] net/bridge: Add 'hairpin' port forwarding mode
- [Bridge] [PATCH] net/bridge: Add 'hairpin' port forwarding mode
- bridge: flush br's address entry in fdb when remove the bridge dev
- [PATCH net] bridge: flush br's address entry in fdb when remove the bridge dev