Page MenuHomeFreeBSD

nd6: Mark several global callouts MPSAFE
ClosedPublic

Authored by markj on Aug 9 2021, 12:43 AM.
Tags
None
Referenced Files
F109844501: D31470.diff
Mon, Feb 10, 6:42 AM
Unknown Object (File)
Sun, Feb 9, 5:03 AM
Unknown Object (File)
Thu, Jan 16, 12:21 AM
Unknown Object (File)
Jan 5 2025, 4:05 AM
Unknown Object (File)
Dec 15 2024, 11:41 AM
Unknown Object (File)
Nov 17 2024, 1:44 PM
Unknown Object (File)
Nov 17 2024, 1:40 PM
Unknown Object (File)
Nov 17 2024, 10:50 AM

Details

Summary

The ND6 code was written pre-SMP, and the use of Giant here is vestigal.
Nothing in the ND6 code depends on it.

Also enter the net epoch in in6_tmpaddrtimer(). It needs to do so to
iterate over the ifnet list safely. This callout runs very
infrequently, so it's not likely to be a problem, but it probably
should also be synchronizing with in6_tmpifadd().

I did not (yet) mark the DAD callout as MPSAFE, it requires further
fixes (but also does not depend on Giant).

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 40933
Build 37822: arc lint + arc unit

Event Timeline

markj requested review of this revision.Aug 9 2021, 12:43 AM

I always wished the argument was a bool or a '''#define''' with a name rather than 1 but that's unrelated to here.
Looks okay to me.

This revision is now accepted and ready to land.Aug 9 2021, 10:18 AM