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, Aug 9, 11:14 AM
Unknown Object (File)
Sun, Aug 9, 11:13 AM
Unknown Object (File)
Wed, Aug 5, 4:21 AM
Unknown Object (File)
Tue, Aug 4, 4:38 AM
Unknown Object (File)
Sat, Jul 25, 5:37 PM
Unknown Object (File)
Jul 11 2026, 1:07 AM
Unknown Object (File)
Jun 26 2026, 9:04 PM
Unknown Object (File)
Jun 26 2026, 2:15 AM

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).