git: 8afe9481cfa3 - main - frag6: do less work in frag6_slowtimo if possible
Mateusz Guzik
mjg at FreeBSD.org
Sat Aug 14 16:52:05 UTC 2021
The branch main has been updated by mjg:
URL: https://cgit.FreeBSD.org/src/commit/?id=8afe9481cfa382337b8a885f358fe888bddf5982
commit 8afe9481cfa382337b8a885f358fe888bddf5982
Author: Mateusz Guzik <mjg at FreeBSD.org>
AuthorDate: 2021-08-13 11:32:03 +0000
Commit: Mateusz Guzik <mjg at FreeBSD.org>
CommitDate: 2021-08-14 16:51:00 +0000
frag6: do less work in frag6_slowtimo if possible
frag6_slowtimo avoidably uses CPU on otherwise idle boxes
Reviewed by: kp
Sponsored by: Rubicon Communications, LLC ("Netgate")
Differential Revision: https://reviews.freebsd.org/D31528
---
sys/netinet6/frag6.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/sys/netinet6/frag6.c b/sys/netinet6/frag6.c
index ec35e98d25ec..222bd157fddd 100644
--- a/sys/netinet6/frag6.c
+++ b/sys/netinet6/frag6.c
@@ -891,10 +891,15 @@ frag6_slowtimo(void)
struct ip6q *q6, *q6tmp;
uint32_t bucket;
+ if (atomic_load_int(&frag6_nfrags) == 0)
+ return;
+
VNET_LIST_RLOCK_NOSLEEP();
VNET_FOREACH(vnet_iter) {
CURVNET_SET(vnet_iter);
for (bucket = 0; bucket < IP6REASS_NHASH; bucket++) {
+ if (V_ip6qb[bucket].count == 0)
+ continue;
IP6QB_LOCK(bucket);
head = IP6QB_HEAD(bucket);
TAILQ_FOREACH_SAFE(q6, head, ip6q_tq, q6tmp)
More information about the dev-commits-src-all
mailing list