From 394833daf149f169c13f567c7d8bbfa502f90072 Mon Sep 17 00:00:00 2001 From: Jiri Pirko Date: Thu, 3 Dec 2015 12:12:08 +0100 Subject: [PATCH] net: add netif_is_lag_master helper BugLink: http://bugs.launchpad.net/bugs/1562310 Some code does not mind if the master is bond or team and treats them the same, as generic LAG. Signed-off-by: Jiri Pirko Signed-off-by: David S. Miller (cherry picked from commit 7be61833042e7757745345eedc7b0efee240c189) Signed-off-by: Tim Gardner --- include/linux/netdevice.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 2502505a31d5..ea6b55011571 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -3899,6 +3899,11 @@ static inline bool netif_is_team_port(struct net_device *dev) return dev->priv_flags & IFF_TEAM_PORT; } +static inline bool netif_is_lag_master(struct net_device *dev) +{ + return netif_is_bond_master(dev) || netif_is_team_master(dev); +} + /* This device needs to keep skb dst for qdisc enqueue or ndo_start_xmit() */ static inline void netif_keep_dst(struct net_device *dev) { -- 2.39.5