Page MenuHomeFreeBSD

arm64: Add ADDR_IS_USER
ClosedPublic

Authored by andrew on Jul 18 2025, 10:59 AM.
Tags
None
Referenced Files
F160181587: D51406.id158732.diff
Sun, Jun 21, 11:22 PM
F160168607: D51406.id159886.diff
Sun, Jun 21, 9:10 PM
Unknown Object (File)
Sat, Jun 20, 7:10 AM
Unknown Object (File)
May 17 2026, 6:59 PM
Unknown Object (File)
May 16 2026, 1:40 AM
Unknown Object (File)
May 16 2026, 1:40 AM
Unknown Object (File)
May 16 2026, 1:40 AM
Unknown Object (File)
Apr 30 2026, 8:43 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.