Page MenuHomeFreeBSD

arm64: Fix a use of update_lower_register
ClosedPublic

Authored by andrew on Jul 3 2023, 11:04 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 31, 1:05 AM
Unknown Object (File)
Tue, Mar 24, 7:56 PM
Unknown Object (File)
Thu, Mar 19, 9:33 PM
Unknown Object (File)
Sat, Mar 14, 10:43 PM
Unknown Object (File)
Mar 4 2026, 10:01 PM
Unknown Object (File)
Feb 15 2026, 7:17 PM
Unknown Object (File)
Jan 29 2026, 7:11 PM
Unknown Object (File)
Dec 10 2025, 8:59 PM

Details

Summary

In get_kernel_reg_masked we use update_lower_register to get the lower
value of two registers for a given field. It will return the entire
register value with just the single field updated.

Because of this get_kernel_reg_masked needs to use the returned value
directly rather than ORing each field together. Fix this by updating
the mask and returning that from get_kernel_reg_masked.

Sponsored by: Arm Ltd

Diff Detail

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

Event Timeline

This revision is now accepted and ready to land.Jul 4 2023, 2:38 PM
christos added inline comments.
sys/arm64/arm64/identcpu.c
1829

Did you mean valp instead?

This revision was automatically updated to reflect the committed changes.