Page MenuHomeFreeBSD

Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (M of N)
ClosedPublic

Authored by kaktus on Feb 11 2020, 9:11 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Nov 14, 12:41 AM
Unknown Object (File)
Tue, Oct 29, 12:52 PM
Unknown Object (File)
Oct 6 2024, 7:43 AM
Unknown Object (File)
Oct 6 2024, 2:04 AM
Unknown Object (File)
Oct 6 2024, 2:04 AM
Unknown Object (File)
Oct 5 2024, 2:04 PM
Unknown Object (File)
Oct 4 2024, 1:27 AM
Unknown Object (File)
Oct 3 2024, 10:00 AM

Details

Summary

r357614 added CTLFLAG_NEEDGIANT to make it easier to find nodes that are still not MPSAFE (or already are but aren’t properly marked). Use it in preparation for a general review of all nodes.
This is non-functional change that adds annotations to SYSCTL_NODE and SYSCTL_PROC nodes using one of the soon-to-be-required flags.
Mark everything as MPSAFE.

You’re asked for a review based on src/MAINTAINERS entry.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

sys/netinet/ip_carp.c
225

MPSAFE

229

Require some locking? Or is the path too short and we don't care?

238

Probably MPSAFE? Use atomic to change the value, but sends the notification via taskqueue(9).

I'm not sure why we care about CTLFLAG_MPSAFE on nodes with no handler (pf, pfsync), but I have no objections.

sys/netinet/ip_carp.c
229

I think it's just safe. All we do is overwrite one value, which ought to be atomic all by itself.
Even if it's not, the consequences would be limited to a one-off packet with an odd DSCP value.

238

Yeah, that looks safe to me too.

kaktus edited the summary of this revision. (Show Details)

Address comments.

This revision is now accepted and ready to land.Feb 21 2020, 8:42 AM