From: Jiri Pirko <j...@mellanox.com> Similar to other helpers, caller can use this to find out if device is team port.
Signed-off-by: Jiri Pirko <j...@mellanox.com> --- include/linux/netdevice.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index cfb56e0..e7eca8f 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -3895,6 +3895,11 @@ static inline bool netif_is_team_master(struct net_device *dev) return dev->priv_flags & IFF_TEAM; } +static inline bool netif_is_team_port(struct net_device *dev) +{ + return dev->priv_flags & IFF_TEAM_PORT; +} + /* This device needs to keep skb dst for qdisc enqueue or ndo_start_xmit() */ static inline void netif_keep_dst(struct net_device *dev) { -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html