提交 0894ae3f 编写于 作者: J Jiri Pirko 提交者: David S. Miller

net: add netif_is_bridge_master helper

Add this helper so code can easily figure out if netdev is a bridge.
Signed-off-by: NJiri Pirko <jiri@mellanox.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 0e4ead9d
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册