Page MenuHomeFreeBSD

pmap: Convert boolean_t to bool.
ClosedPublic

Authored by jhb on May 1 2023, 10:21 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 21 2024, 3:44 AM
Unknown Object (File)
Mar 17 2024, 6:17 AM
Unknown Object (File)
Mar 12 2024, 11:53 PM
Unknown Object (File)
Mar 3 2024, 11:23 PM
Unknown Object (File)
Feb 1 2024, 4:54 AM
Unknown Object (File)
Jan 14 2024, 9:32 AM
Unknown Object (File)
Dec 20 2023, 8:17 AM
Unknown Object (File)
Dec 3 2023, 9:55 PM

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 51294
Build 48185: arc lint + arc unit

Event Timeline

This change might be a bit much size-wise but I didn't see any simple ways to split up into smaller increments really aside from the pmap_map_io_transient change earlier in this stack.

seems OK, but the length of this made my eyes glaze over, so I'm not clicking accept.

boolean_t is the mach' type AFAIK. I am curious why making this change.

This revision is now accepted and ready to land.May 2 2023, 1:28 AM
In D39921#908767, @kib wrote:

boolean_t is the mach' type AFAIK. I am curious why making this change.

Prompted by the discussion around clang 16, I'm doing a kind of cleanup pass migrating from boolean_t to C99 bool as a general rule.

This API change in particular is a bit more invasive, and I might wait a bit on this one (it also will need an exp-run probably).