|
@@ -45,7 +45,6 @@
|
|
#include <net/ip_fib.h>
|
|
#include <net/ip_fib.h>
|
|
#include <net/rtnetlink.h>
|
|
#include <net/rtnetlink.h>
|
|
#include <net/xfrm.h>
|
|
#include <net/xfrm.h>
|
|
-#include <net/vrf.h>
|
|
|
|
#include <net/l3mdev.h>
|
|
#include <net/l3mdev.h>
|
|
#include <trace/events/fib.h>
|
|
#include <trace/events/fib.h>
|
|
|
|
|
|
@@ -256,7 +255,7 @@ EXPORT_SYMBOL(inet_addr_type);
|
|
unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev,
|
|
unsigned int inet_dev_addr_type(struct net *net, const struct net_device *dev,
|
|
__be32 addr)
|
|
__be32 addr)
|
|
{
|
|
{
|
|
- u32 rt_table = vrf_dev_table(dev) ? : RT_TABLE_LOCAL;
|
|
|
|
|
|
+ u32 rt_table = l3mdev_fib_table(dev) ? : RT_TABLE_LOCAL;
|
|
|
|
|
|
return __inet_dev_addr_type(net, dev, addr, rt_table);
|
|
return __inet_dev_addr_type(net, dev, addr, rt_table);
|
|
}
|
|
}
|
|
@@ -269,7 +268,7 @@ unsigned int inet_addr_type_dev_table(struct net *net,
|
|
const struct net_device *dev,
|
|
const struct net_device *dev,
|
|
__be32 addr)
|
|
__be32 addr)
|
|
{
|
|
{
|
|
- u32 rt_table = vrf_dev_table(dev) ? : RT_TABLE_LOCAL;
|
|
|
|
|
|
+ u32 rt_table = l3mdev_fib_table(dev) ? : RT_TABLE_LOCAL;
|
|
|
|
|
|
return __inet_dev_addr_type(net, NULL, addr, rt_table);
|
|
return __inet_dev_addr_type(net, NULL, addr, rt_table);
|
|
}
|
|
}
|
|
@@ -804,7 +803,7 @@ out:
|
|
static void fib_magic(int cmd, int type, __be32 dst, int dst_len, struct in_ifaddr *ifa)
|
|
static void fib_magic(int cmd, int type, __be32 dst, int dst_len, struct in_ifaddr *ifa)
|
|
{
|
|
{
|
|
struct net *net = dev_net(ifa->ifa_dev->dev);
|
|
struct net *net = dev_net(ifa->ifa_dev->dev);
|
|
- u32 tb_id = vrf_dev_table_rtnl(ifa->ifa_dev->dev);
|
|
|
|
|
|
+ u32 tb_id = l3mdev_fib_table(ifa->ifa_dev->dev);
|
|
struct fib_table *tb;
|
|
struct fib_table *tb;
|
|
struct fib_config cfg = {
|
|
struct fib_config cfg = {
|
|
.fc_protocol = RTPROT_KERNEL,
|
|
.fc_protocol = RTPROT_KERNEL,
|