Page MenuHomeFreeBSD

pmap: Convert boolean_t to bool.
ClosedPublic

Authored by jhb on May 1 2023, 10:21 PM.
Tags
None
Referenced Files
F160491985: D39921.id121361.diff
Thu, Jun 25, 2:00 AM
Unknown Object (File)
Tue, Jun 23, 9:07 PM
Unknown Object (File)
Tue, Jun 23, 12:45 AM
Unknown Object (File)
Sun, Jun 21, 8:32 PM
Unknown Object (File)
Sun, Jun 21, 6:44 PM
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

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