* [PATCH nf] netfilter: conntrack: remove GC_MAX_EVICTS break
@ 2017-01-16 17:24 Florian Westphal
2017-01-17 9:10 ` Nicolas Dichtel
0 siblings, 1 reply; 3+ messages in thread
From: Florian Westphal @ 2017-01-16 17:24 UTC (permalink / raw)
To: netfilter-devel; +Cc: Florian Westphal
Instead of breaking loop and instant resched, don't bother checking
this in first place (the loop calls cond_resched for every bucket anyway).
Suggested-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
---
As Nicolas suggested, split this part in its own commit.
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c
index 3a073cd9fcf4..6feb5d370319 100644
--- a/net/netfilter/nf_conntrack_core.c
+++ b/net/netfilter/nf_conntrack_core.c
@@ -88,8 +88,6 @@ static __read_mostly bool nf_conntrack_locks_all;
#define GC_MAX_BUCKETS_DIV 64u
/* upper bound of scan intervals */
#define GC_INTERVAL_MAX (2 * HZ)
-/* maximum conntracks to evict per gc run */
-#define GC_MAX_EVICTS 256u
static struct conntrack_gc_work conntrack_gc_work;
@@ -979,8 +977,7 @@ static void gc_worker(struct work_struct *work)
*/
rcu_read_unlock();
cond_resched_rcu_qs();
- } while (++buckets < goal &&
- expired_count < GC_MAX_EVICTS);
+ } while (++buckets < goal);
if (gc_work->exiting)
return;
@@ -1005,7 +1002,7 @@ static void gc_worker(struct work_struct *work)
* In case we have lots of evictions next scan is done immediately.
*/
ratio = scanned ? expired_count * 100 / scanned : 0;
- if (ratio >= 90 || expired_count == GC_MAX_EVICTS) {
+ if (ratio >= 90) {
gc_work->next_gc_run = 0;
next_run = 0;
} else if (expired_count) {
--
2.7.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH nf] netfilter: conntrack: remove GC_MAX_EVICTS break
2017-01-16 17:24 [PATCH nf] netfilter: conntrack: remove GC_MAX_EVICTS break Florian Westphal
@ 2017-01-17 9:10 ` Nicolas Dichtel
2017-01-19 13:27 ` Pablo Neira Ayuso
0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Dichtel @ 2017-01-17 9:10 UTC (permalink / raw)
To: Florian Westphal, netfilter-devel
Le 16/01/2017 à 18:24, Florian Westphal a écrit :
> Instead of breaking loop and instant resched, don't bother checking
> this in first place (the loop calls cond_resched for every bucket anyway).
>
> Suggested-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
> Signed-off-by: Florian Westphal <fw@strlen.de>
Acked-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH nf] netfilter: conntrack: remove GC_MAX_EVICTS break
2017-01-17 9:10 ` Nicolas Dichtel
@ 2017-01-19 13:27 ` Pablo Neira Ayuso
0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira Ayuso @ 2017-01-19 13:27 UTC (permalink / raw)
To: Nicolas Dichtel; +Cc: Florian Westphal, netfilter-devel
On Tue, Jan 17, 2017 at 10:10:23AM +0100, Nicolas Dichtel wrote:
> Le 16/01/2017 à 18:24, Florian Westphal a écrit :
> > Instead of breaking loop and instant resched, don't bother checking
> > this in first place (the loop calls cond_resched for every bucket anyway).
> >
> > Suggested-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
> > Signed-off-by: Florian Westphal <fw@strlen.de>
> Acked-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Applied, thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-01-19 13:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-16 17:24 [PATCH nf] netfilter: conntrack: remove GC_MAX_EVICTS break Florian Westphal
2017-01-17 9:10 ` Nicolas Dichtel
2017-01-19 13:27 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).