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)
Sun, Jun 14, 10:35 AM
Unknown Object (File)
Fri, Jun 12, 5:48 AM
Unknown Object (File)
Sun, May 31, 8:08 AM
Unknown Object (File)
Sat, May 23, 1:10 AM
Unknown Object (File)
May 17 2026, 1:40 AM
Unknown Object (File)
May 11 2026, 5:50 AM
Unknown Object (File)
May 8 2026, 9:23 PM
Unknown Object (File)
Apr 26 2026, 4:05 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).