blackhole_netdev: use blackhole_netdev to invalidate dst entries
Use blackhole_netdev instead of 'lo' device with lower MTU when marking dst "dead". Signed-off-by: Mahesh Bandewar <maheshb@google.com> Tested-by: Michael Chan <michael.chan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
4de83b88c6
commit
8d7017fd62
@@ -1532,7 +1532,6 @@ static void ipv4_dst_destroy(struct dst_entry *dst)
|
||||
|
||||
void rt_flush_dev(struct net_device *dev)
|
||||
{
|
||||
struct net *net = dev_net(dev);
|
||||
struct rtable *rt;
|
||||
int cpu;
|
||||
|
||||
@@ -1543,7 +1542,7 @@ void rt_flush_dev(struct net_device *dev)
|
||||
list_for_each_entry(rt, &ul->head, rt_uncached) {
|
||||
if (rt->dst.dev != dev)
|
||||
continue;
|
||||
rt->dst.dev = net->loopback_dev;
|
||||
rt->dst.dev = blackhole_netdev;
|
||||
dev_hold(rt->dst.dev);
|
||||
dev_put(dev);
|
||||
}
|
||||
|
Reference in New Issue
Block a user