aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2021-08-09 17:21:43 +0000
committerMark Johnston <markj@FreeBSD.org>2021-08-09 17:27:52 +0000
commit663428ea17e3a81f4c514d2571b90a13c065b1e8 (patch)
treef5e4caec4b5797cf3b12f3dc3d18345f5d06e620
parent8ee0826f75136f6ac6443f32c582882bc31abd73 (diff)
downloadsrc-663428ea17e3a81f4c514d2571b90a13c065b1e8.tar.gz
src-663428ea17e3a81f4c514d2571b90a13c065b1e8.zip
nd6: Mark several callouts as MPSAFE
The use of Giant here is vestigal and does not provide any useful synchronization. Furthermore, non-MPSAFE callouts can cause the softclock threads to block waiting for long-running newbus operations to complete. Reported by: mav Reviewed by: bz MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D31470
-rw-r--r--sys/netinet6/in6_ifattach.c2
-rw-r--r--sys/netinet6/nd6.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet6/in6_ifattach.c b/sys/netinet6/in6_ifattach.c
index 6633a649b812..629509f61ac1 100644
--- a/sys/netinet6/in6_ifattach.c
+++ b/sys/netinet6/in6_ifattach.c
@@ -889,7 +889,7 @@ in6_ifattach_init(void *dummy)
{
/* Timer for regeneranation of temporary addresses randomize ID. */
- callout_init(&V_in6_tmpaddrtimer_ch, 0);
+ callout_init(&V_in6_tmpaddrtimer_ch, 1);
callout_reset(&V_in6_tmpaddrtimer_ch,
(V_ip6_temp_preferred_lifetime - V_ip6_desync_factor -
V_ip6_temp_regen_advance) * hz,
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c
index 5166186f56dc..38f03916531f 100644
--- a/sys/netinet6/nd6.c
+++ b/sys/netinet6/nd6.c
@@ -225,11 +225,11 @@ nd6_init(void)
nd6_defrouter_init();
/* Start timers. */
- callout_init(&V_nd6_slowtimo_ch, 0);
+ callout_init(&V_nd6_slowtimo_ch, 1);
callout_reset(&V_nd6_slowtimo_ch, ND6_SLOWTIMER_INTERVAL * hz,
nd6_slowtimo, curvnet);
- callout_init(&V_nd6_timer_ch, 0);
+ callout_init(&V_nd6_timer_ch, 1);
callout_reset(&V_nd6_timer_ch, hz, nd6_timer, curvnet);
nd6_dad_init();