Page MenuHomeFreeBSD

arm64: Add ADDR_IS_USER
ClosedPublic

Authored by andrew on Jul 18 2025, 10:59 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Nov 2, 8:49 AM
Unknown Object (File)
Sat, Nov 1, 7:17 AM
Unknown Object (File)
Wed, Oct 29, 2:05 AM
Unknown Object (File)
Wed, Oct 29, 12:13 AM
Unknown Object (File)
Wed, Oct 29, 12:13 AM
Unknown Object (File)
Wed, Oct 29, 12:11 AM
Unknown Object (File)
Sat, Oct 25, 2:53 PM
Unknown Object (File)
Fri, Oct 24, 8:05 PM
Subscribers

Details

Summary

In most of the places we used ADDR_IS_KERNEL to decide which address
space was being used it was to see if the address was for userspace.

To make the checks more descriptive add ADDR_IS_USER rather than
checking for not ADDR_IS_KERNEL.

Sponsored by: Arm Ltd

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kib added inline comments.
sys/arm64/include/vmparam.h
216

Might be test the bit 55 is 0 instead of using !ADDR_IS_KERNEL().
Also the comment in line 214 can be updated, or a new comment line added.

This revision is now accepted and ready to land.Jul 18 2025, 12:13 PM
This revision was automatically updated to reflect the committed changes.