From: Jiri Pirko Date: Thu, 3 Dec 2015 11:12:08 +0000 (+0100) Subject: net: add netif_is_lag_master helper X-Git-Tag: v4.1.12-124.31.3~243 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a01c26219c4f189a9339b059b39f101f1e08ea14;p=users%2Fjedix%2Flinux-maple.git net: add netif_is_lag_master helper Orabug: 29495360 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: Brian Maly --- diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 94a5adfec062..d1a21656de63 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -3915,6 +3915,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) {