net: add netif_is_lag_port helper
authorJiri Pirko <jiri@mellanox.com>
Thu, 3 Dec 2015 11:12:09 +0000 (12:12 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 3 Dec 2015 16:49:24 +0000 (11:49 -0500)
Some code does not mind if a device is bond slave or team port and treats
them the same, as generic LAG ports.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h

index 3ca083efa560f5425521ab8d315048772a42a362..1506be58c59a58673a42d1ec5c381792aab3702e 100644 (file)
@@ -3907,6 +3907,11 @@ static inline bool netif_is_lag_master(struct net_device *dev)
        return netif_is_bond_master(dev) || netif_is_team_master(dev);
 }
 
+static inline bool netif_is_lag_port(struct net_device *dev)
+{
+       return netif_is_bond_slave(dev) || netif_is_team_port(dev);
+}
+
 /* This device needs to keep skb dst for qdisc enqueue or ndo_start_xmit() */
 static inline void netif_keep_dst(struct net_device *dev)
 {