mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
netfilter: conntrack: restart gc immediately if GC_MAX_EVICTS is reached
When the maximum evictions number is reached, do not wait 5 seconds before the next run. CC: Florian Westphal <fw@strlen.de> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Acked-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
1ecc281ec2
commit
7bb6615d39
@ -983,7 +983,7 @@ static void gc_worker(struct work_struct *work)
|
||||
return;
|
||||
|
||||
ratio = scanned ? expired_count * 100 / scanned : 0;
|
||||
if (ratio >= 90)
|
||||
if (ratio >= 90 || expired_count == GC_MAX_EVICTS)
|
||||
next_run = 0;
|
||||
|
||||
gc_work->last_bucket = i;
|
||||
|
Loading…
Reference in New Issue
Block a user