aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Pirko <jiri@mellanox.com>2015-12-03 12:12:09 +0100
committerDavid S. Miller <davem@davemloft.net>2015-12-03 11:49:24 -0500
commite0ba1414f310c83bf425fe26fa2cd5f1befcd6dc (patch)
tree2baa02a0b3dc797e6fe96d30e87d443fe30be2f0
parentnet: add netif_is_lag_master helper (diff)
downloadlinux-e0ba1414f310c83bf425fe26fa2cd5f1befcd6dc.tar.gz
linux-e0ba1414f310c83bf425fe26fa2cd5f1befcd6dc.zip
net: add netif_is_lag_port helper
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>
-rw-r--r--include/linux/netdevice.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 3ca083efa560..1506be58c59a 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -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)
{
0'>2019-05-28perf tests: Add map_groups__merge_in testJiri Olsa6-1/+129 2019-05-28perf script: Pad DSO name for --call-traceJiri Olsa5-0/+28 2019-05-28perf dso: Add BPF DSO read and size hooksJiri Olsa1-1/+48 2019-05-28perf dso: Simplify dso_cache__read functionJiri Olsa1-11/+6 2019-05-28perf dso: Separate generic code in dso_cache__readJiri Olsa1-21/+27 2019-05-28perf dso: Separate generic code in dso__data_file_size()Jiri Olsa1-7/+12 2019-05-28perf tools: Remove const from thread read accessorsNamhyung Kim3-9/+9 2019-05-28perf top: Add --namespaces optionNamhyung Kim2-0/+10 2019-05-28perf trace: Beautify 'sync_file_range' argumentsArnaldo Carvalho de Melo5-2/+47