summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Kicinski <kuba@kernel.org>2022-01-26 11:10:59 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-08-30 16:31:54 +0200
commited8528e17f31264cbe6b6655c9eff02715bfd195 (patch)
treea688719aaf6dbc3b81787d913201aac9f97bbb7d
parentf131856125cecba35ae35010e6752b78ed4830c5 (diff)
downloadmsm-ed8528e17f31264cbe6b6655c9eff02715bfd195.tar.gz
net: remove bond_slave_has_mac_rcu()
[ Upstream commit 8b0fdcdc3a7d44aff907f0103f5ffb86b12bfe71 ] No caller since v3.16. Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net> Stable-dep-of: e74216b8def3 ("bonding: fix macvlan over alb bond support") Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--include/net/bonding.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/net/bonding.h b/include/net/bonding.h
index c458f084f7bb..ab862e2e3452 100644
--- a/include/net/bonding.h
+++ b/include/net/bonding.h
@@ -675,20 +675,6 @@ static inline struct slave *bond_slave_has_mac(struct bonding *bond,
}
/* Caller must hold rcu_read_lock() for read */
-static inline struct slave *bond_slave_has_mac_rcu(struct bonding *bond,
- const u8 *mac)
-{
- struct list_head *iter;
- struct slave *tmp;
-
- bond_for_each_slave_rcu(bond, tmp, iter)
- if (ether_addr_equal_64bits(mac, tmp->dev->dev_addr))
- return tmp;
-
- return NULL;
-}
-
-/* Caller must hold rcu_read_lock() for read */
static inline bool bond_slave_has_mac_rx(struct bonding *bond, const u8 *mac)
{
struct list_head *iter;