Page MenuHomeFreeBSD

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

Authored by kaktus on Feb 11 2020, 9:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 22, 9:08 PM
Unknown Object (File)
Jan 14 2024, 5:37 AM
Unknown Object (File)
Dec 20 2023, 5:43 AM
Unknown Object (File)
Sep 11 2023, 11:48 PM
Unknown Object (File)
Jul 9 2023, 7:43 PM
Unknown Object (File)
Jul 1 2023, 11:32 AM
Unknown Object (File)
Jun 19 2023, 11:31 AM
Unknown Object (File)
May 9 2023, 9:31 AM
Subscribers

Details

Reviewers
kib
erj
kaktus
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.

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

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Is there a reason that these syctls would need "CTLFLAG_NEEDSGIANT", or does this patch default to that flag because it's a safe default if the contents of the sysctl are unknown? I'm aware of the previous review that added these flags, but I didn't get to look at it too closely.

That is exactly the reason: sysctl's that weren't before marked as MPSAFE are marked as NEEDGIANT, but if you're happy with current locking (or lack of it if unneeded) I can mark them as MPSAFE.

This revision is now accepted and ready to land.Feb 24 2020, 10:56 AM