Page MenuHomeFreeBSD

amd64: Make it easier to configure exception stack sizes
ClosedPublic

Authored by markj on Nov 3 2020, 3:09 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Jan 25, 7:17 PM
Unknown Object (File)
Wed, Jan 15, 9:53 PM
Unknown Object (File)
Fri, Jan 10, 4:13 PM
Unknown Object (File)
Wed, Jan 1, 6:30 AM
Unknown Object (File)
Oct 4 2024, 3:43 AM
Unknown Object (File)
Sep 30 2024, 2:30 AM
Unknown Object (File)
Sep 25 2024, 11:11 PM
Unknown Object (File)
Sep 22 2024, 3:38 PM
Subscribers

Details

Summary

We handle certain types of exceptions on a dedicated per-CPU stack.
Currently the sizes of these stacks are all hard-coded to PAGE_SIZE, but
for at least NMI handling it can be useful to configure larger stacks.
Add constants to intr_machdep.h to make this easier to tweak, since
exception stacks are allocated both in .bss and during AP startup.

No functional change intended.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj requested review of this revision.Nov 3 2020, 3:09 PM
markj created this revision.

You need to adjust pmap_pti_init() as well.

Make sure PTI uses the correct stack sizes.

This revision is now accepted and ready to land.Nov 3 2020, 5:35 PM