diff options
author | Julian Anastasov <ja@ssi.bg> | 2017-02-06 23:14:17 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-07 13:07:47 -0500 |
commit | 51ce8bd4d17a761e1a90a34a1b5c9b762cce7553 (patch) | |
tree | b009850c5a2e7c633a94eeacb71a25f91b4b64f0 /net/core | |
parent | 0dec879f636f11b0ffda1cb5fd96a1754c59ead3 (diff) | |
download | linux-51ce8bd4d17a761e1a90a34a1b5c9b762cce7553.tar.gz linux-51ce8bd4d17a761e1a90a34a1b5c9b762cce7553.tar.bz2 linux-51ce8bd4d17a761e1a90a34a1b5c9b762cce7553.zip |
net: pending_confirm is not used anymore
When same struct dst_entry can be used for many different
neighbours we can not use it for pending confirmations.
As last step, we can remove the pending_confirm flag.
Reported-by: YueHaibing <yuehaibing@huawei.com>
Fixes: 5110effee8fd ("net: Do delayed neigh confirmation.")
Fixes: f2bb4bedf35d ("ipv4: Cache output routes in fib_info nexthops.")
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dst.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/dst.c b/net/core/dst.c index b5cbbe07f786..960e503b5a52 100644 --- a/net/core/dst.c +++ b/net/core/dst.c @@ -190,7 +190,6 @@ void dst_init(struct dst_entry *dst, struct dst_ops *ops, dst->__use = 0; dst->lastuse = jiffies; dst->flags = flags; - dst->pending_confirm = 0; dst->next = NULL; if (!(flags & DST_NOCOUNT)) dst_entries_add(ops, 1); |