[SRU][Xenial][PATCH 1/2] net: l3mdev: Add master device lookup by index

Joseph Salisbury joseph.salisbury at canonical.com
Thu Feb 1 20:58:43 UTC 2018


From: David Ahern <dsa at cumulusnetworks.com>

BugLink: http://bugs.launchpad.net/bugs/1744078

Add helper to lookup l3mdev master index given a device index.

Signed-off-by: David Ahern <dsa at cumulusnetworks.com>
Signed-off-by: David S. Miller <davem at davemloft.net>
(cherry picked from commit 1a8524794fc7c70f44ac28e3a6e8fd637bc41f14)
Signed-off-by: Joseph Salisbury <joseph.salisbury at canonical.com>
---
 include/net/l3mdev.h | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/include/net/l3mdev.h b/include/net/l3mdev.h
index 5689a0c..5567d46 100644
--- a/include/net/l3mdev.h
+++ b/include/net/l3mdev.h
@@ -51,6 +51,24 @@ static inline int l3mdev_master_ifindex(struct net_device *dev)
 	return ifindex;
 }
 
+static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
+{
+	struct net_device *dev;
+	int rc = 0;
+
+	if (likely(ifindex)) {
+		rcu_read_lock();
+
+		dev = dev_get_by_index_rcu(net, ifindex);
+		if (dev)
+			rc = l3mdev_master_ifindex_rcu(dev);
+
+		rcu_read_unlock();
+	}
+
+	return rc;
+}
+
 /* get index of an interface to use for FIB lookups. For devices
  * enslaved to an L3 master device FIB lookups are based on the
  * master index
@@ -170,6 +188,11 @@ static inline int l3mdev_master_ifindex(struct net_device *dev)
 	return 0;
 }
 
+static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
+{
+	return 0;
+}
+
 static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
 {
 	return dev ? dev->ifindex : 0;
-- 
2.7.4





More information about the kernel-team mailing list