static int br_dev_stop(struct net_device *dev) { br_stp_disable_bridge(dev->priv); netif_stop_queue(dev); return 0; }
static int br_dev_stop(struct net_device *dev) { struct net_bridge *br = netdev_priv(dev); br_stp_disable_bridge(br); br_multicast_stop(br); netif_stop_queue(dev); return 0; }
static int br_dev_stop(struct net_device *dev) { struct net_bridge *br; br = dev->priv; read_lock(&br->lock); br_stp_disable_bridge(br); read_unlock(&br->lock); netif_stop_queue(dev); return 0; }