diff options
author | David Laight <David.Laight@ACULAB.COM> | 2020-03-23 15:31:19 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-24 05:57:44 +0100 |
commit | af13b3c338bea6a766b1a0ee4f9c939e8bf38256 (patch) | |
tree | 8f6ed9d0adb5d2097827da091b7cb0e070774620 /drivers/net/vrf.c | |
parent | net: thunderx: remove set but not used variable 'tail' (diff) | |
download | linux-af13b3c338bea6a766b1a0ee4f9c939e8bf38256.tar.xz linux-af13b3c338bea6a766b1a0ee4f9c939e8bf38256.zip |
Remove DST_HOST
Previous changes to the IP routing code have removed all the
tests for the DS_HOST route flag.
Remove the flags and all the code that sets it.
Signed-off-by: David Laight <david.laight@aculab.com>
Acked-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/vrf.c')
-rw-r--r-- | drivers/net/vrf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/vrf.c b/drivers/net/vrf.c index b8228f50bc94..66e00ddc0d42 100644 --- a/drivers/net/vrf.c +++ b/drivers/net/vrf.c @@ -504,7 +504,7 @@ static void vrf_rt6_release(struct net_device *dev, struct net_vrf *vrf) static int vrf_rt6_create(struct net_device *dev) { - int flags = DST_HOST | DST_NOPOLICY | DST_NOXFRM; + int flags = DST_NOPOLICY | DST_NOXFRM; struct net_vrf *vrf = netdev_priv(dev); struct net *net = dev_net(dev); struct rt6_info *rt6; @@ -739,7 +739,7 @@ static int vrf_rtable_create(struct net_device *dev) return -ENOMEM; /* create a dst for routing packets out through a VRF device */ - rth = rt_dst_alloc(dev, 0, RTN_UNICAST, 1, 1, 0); + rth = rt_dst_alloc(dev, 0, RTN_UNICAST, 1, 1); if (!rth) return -ENOMEM; |