diff options
author | Nikolay Aleksandrov <nikolay@cumulusnetworks.com> | 2015-07-23 12:05:40 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-26 21:00:15 -0700 |
commit | caaecdd3d3f8ec0ea9906c54b1dd8ec8316d26b9 (patch) | |
tree | cd22b0388ba421fdc26eac2fc94987a2677df062 /net/ipv4/inet_fragment.c | |
parent | 5719b296fb81502d0dbbb4e87b3235e5bdcdfc6b (diff) | |
download | linux-caaecdd3d3f8ec0ea9906c54b1dd8ec8316d26b9.tar.bz2 |
inet: frags: remove INET_FRAG_EVICTED and use list_evictor for the test
We can simply remove the INET_FRAG_EVICTED flag to avoid all the flags
race conditions with the evictor and use a participation test for the
evictor list, when we're at that point (after inet_frag_kill) in the
timer there're 2 possible cases:
1. The evictor added the entry to its evictor list while the timer was
waiting for the chainlock
or
2. The timer unchained the entry and the evictor won't see it
In both cases we should be able to see list_evictor correctly due
to the sync on the chainlock.
Joint work with Florian Westphal.
Tested-by: Frank Schreuder <fschreuder@transip.nl>
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_fragment.c')
-rw-r--r-- | net/ipv4/inet_fragment.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/inet_fragment.c b/net/ipv4/inet_fragment.c index a00ca4c00c35..d0a7c0319e3d 100644 --- a/net/ipv4/inet_fragment.c +++ b/net/ipv4/inet_fragment.c @@ -140,7 +140,6 @@ inet_evict_bucket(struct inet_frags *f, struct inet_frag_bucket *hb) if (!del_timer(&fq->timer)) continue; - fq->flags |= INET_FRAG_EVICTED; hlist_add_head(&fq->list_evictor, &expired); ++evicted; } |