diff options
author | Ido Schimmel <idosch@mellanox.com> | 2017-02-06 16:20:14 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-06 11:25:57 -0500 |
commit | a8eca326151ee1beac82a4fd86d9edad3a37aaed (patch) | |
tree | 78be26268b991ac647680cde9c968d924f912dbd /include/linux/netdevice.h | |
parent | 5c8802f14a0679e970e7b25f809a12c3ae1a873d (diff) | |
download | op-kernel-dev-a8eca326151ee1beac82a4fd86d9edad3a37aaed.zip op-kernel-dev-a8eca326151ee1beac82a4fd86d9edad3a37aaed.tar.gz |
net: remove ndo_neigh_{construct, destroy} from stacked devices
In commit 18bfb924f000 ("net: introduce default neigh_construct/destroy
ndo calls for L2 upper devices") we added these ndos to stacked devices
such as team and bond, so that calls will be propagated to mlxsw.
However, previous commit removed the reliance on these ndos and no new
users of these ndos have appeared since above mentioned commit. We can
therefore safely remove this dead code.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 014fbe2..58afbd1 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -3888,10 +3888,6 @@ void *netdev_lower_dev_get_private(struct net_device *dev, struct net_device *lower_dev); void netdev_lower_state_changed(struct net_device *lower_dev, void *lower_state_info); -int netdev_default_l2upper_neigh_construct(struct net_device *dev, - struct neighbour *n); -void netdev_default_l2upper_neigh_destroy(struct net_device *dev, - struct neighbour *n); /* RSS keys are 40 or 52 bytes long */ #define NETDEV_RSS_KEY_LEN 52 |