Changeset 90177 in vbox for trunk/src/VBox/VMM/VMMR0/VMMR0JmpA-amd64.asm
- Timestamp:
- Jul 14, 2021 9:45:39 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145694
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0JmpA-amd64.asm
r90173 r90177 33 33 34 34 ;; Workaround for linux 4.6 fast/slow syscall stack depth difference. 35 ;; Update: This got worse with linux 5.13. See bugref:10064. 35 ;; Update: This got worse with linux 5.13 and CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT. 36 ;; The x86 arch_exit_to_user_mode_prepare code limits the offset to 255, 37 ;; while the generic limit is 1023. See bugref:10064 for details. 36 38 %ifdef VMM_R0_SWITCH_STACK 37 39 %define STACK_FUZZ_SIZE 0 38 40 %else 39 %define STACK_FUZZ_SIZE 256 41 %ifdef RT_OS_LINUX 42 %define STACK_FUZZ_SIZE 384 43 %else 44 %define STACK_FUZZ_SIZE 128 45 %endif 40 46 %endif 41 47
Note:
See TracChangeset
for help on using the changeset viewer.