mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 03:33:59 +08:00
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: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c981e4213e
commit
f7f019ee6d
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user