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

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

net: add netif_is_bridge_master helper



Add this helper so code can easily figure out if netdev is a bridge.

Signed-off-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0e4ead9d
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -3848,6 +3848,11 @@ static inline bool netif_is_vrf(const struct net_device *dev)
	return dev->priv_flags & IFF_VRF_MASTER;
}

static inline bool netif_is_bridge_master(const struct net_device *dev)
{
	return dev->priv_flags & IFF_EBRIDGE;
}

static inline bool netif_index_is_vrf(struct net *net, int ifindex)
{
	bool rc = false;