Page MenuHomeFreeBSD

x86/xen: stop assuming kernel memory loading order in PVH
ClosedPublic

Authored by royger on Jun 28 2022, 3:53 PM.
Tags
None
Referenced Files
Unknown Object (File)
Apr 1 2024, 6:40 AM
Unknown Object (File)
Jan 27 2024, 9:18 PM
Unknown Object (File)
Jan 14 2024, 10:05 AM
Unknown Object (File)
Dec 20 2023, 7:11 AM
Unknown Object (File)
Nov 28 2023, 7:21 AM
Unknown Object (File)
Nov 6 2023, 8:33 PM
Unknown Object (File)
Nov 5 2023, 2:13 AM
Unknown Object (File)
Nov 3 2023, 6:23 AM
Subscribers

Details

Summary

Do not assume that start_info will always be loaded at the highest
memory address, and instead check the position of all the loaded
elements in order to find the last loaded one, and thus a likely safe
place to use as early boot allocation memory space.

Reported by: markj, cpercival
Sponsored by: Citrix Systems R&D

Diff Detail

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

Event Timeline

sys/x86/xen/pv.c
154

max() is not really appropriate here. It only compares a pair of unsigned ints. (Yes, it's too confusing.) The MAX() macro is a better alternative. I think this happens to work because the addresses involved are small, but it'd still be better to switch away from its use.

176

Extra newline.

royger added inline comments.
sys/x86/xen/pv.c
154

Yes, all addresses should be below 4G, and hence fit in an unsigned int. That mess with max() is confusing, will switch to MAX() instead.

  • Use MAX() instead of max().
  • Remove extra newline.
This revision is now accepted and ready to land.Jun 29 2022, 3:04 PM