Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7f019ee authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller
Browse files

net: add netif_is_team_port helper



Similar to other helpers, caller can use this to find out if device is
team port.

Signed-off-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c981e421
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -3897,6 +3897,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)
{