Page MenuHomeFreeBSD

nd6: Mark several global callouts MPSAFE
ClosedPublic

Authored by markj on Aug 9 2021, 12:43 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Aug 12, 12:56 AM
Unknown Object (File)
Mon, Aug 10, 2:10 PM
Unknown Object (File)
Mon, Aug 10, 1:55 PM
Unknown Object (File)
Sat, Aug 8, 1:30 PM
Unknown Object (File)
Fri, Aug 7, 8:24 AM
Unknown Object (File)
Thu, Aug 6, 6:00 PM
Unknown Object (File)
Thu, Aug 6, 12:27 PM
Unknown Object (File)
Thu, Aug 6, 1:59 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