|
@@ -81,6 +81,25 @@ static inline int vrf_dev_table(const struct net_device *dev)
|
|
|
return tb_id;
|
|
|
}
|
|
|
|
|
|
+static inline int vrf_dev_table_ifindex(struct net *net, int ifindex)
|
|
|
+{
|
|
|
+ struct net_device *dev;
|
|
|
+ int tb_id = 0;
|
|
|
+
|
|
|
+ if (!ifindex)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ rcu_read_lock();
|
|
|
+
|
|
|
+ dev = dev_get_by_index_rcu(net, ifindex);
|
|
|
+ if (dev)
|
|
|
+ tb_id = vrf_dev_table_rcu(dev);
|
|
|
+
|
|
|
+ rcu_read_unlock();
|
|
|
+
|
|
|
+ return tb_id;
|
|
|
+}
|
|
|
+
|
|
|
/* called with rtnl */
|
|
|
static inline int vrf_dev_table_rtnl(const struct net_device *dev)
|
|
|
{
|
|
@@ -125,6 +144,11 @@ static inline int vrf_dev_table(const struct net_device *dev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static inline int vrf_dev_table_ifindex(struct net *net, int ifindex)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static inline int vrf_dev_table_rtnl(const struct net_device *dev)
|
|
|
{
|
|
|
return 0;
|