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)
Thu, Dec 19, 2:08 AM
Unknown Object (File)
Sun, Dec 8, 12:37 AM
Unknown Object (File)
Sat, Nov 30, 5:23 PM
Unknown Object (File)
Sat, Nov 30, 12:58 PM
Unknown Object (File)
Sat, Nov 30, 12:58 PM
Unknown Object (File)
Fri, Nov 29, 3:01 AM
Unknown Object (File)
Wed, Nov 27, 10:57 AM
Unknown Object (File)
Nov 25 2024, 3:15 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).