From: pablo@netfilter.org
Date: Tue, 6 Mar 2012 12:22:55 +0100
From: Pablo Neira Ayuso <pablo@netfilter.org>
If reliable event delivery is enabled and ctnetlink fails to deliver
the destroy event in early_drop, the conntrack subsystem cannot
drop any the candidate flow that was planned to be evicted.
Reported-by: Kerin Millar <redacted>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Applied.
+ /* Check if we indeed killed this entry. Reliable event
+ delivery may have inserted it into the dying list. */
+ if (test_bit(IPS_DYING_BIT, &ct->status)) {
Please don't allow misformatted comments like this into your
tree next time, this should be:
/* Check if we indeed killed this entry. Reliable event
* delivery may have inserted it into the dying list.
*/