mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
abi/linux: fix TASK_SIZE in case of 5-level paging
On x86, 5-level paging enables 56-bit userspace virtual address space. PiperOrigin-RevId: 570549277
This commit is contained in:
@@ -21,4 +21,4 @@ package linux
|
||||
// paging.
|
||||
//
|
||||
// The array has to be sorted in decreasing order.
|
||||
var feasibleTaskSizes = []uintptr{0xffffffffff000, 0x7ffffffff000}
|
||||
var feasibleTaskSizes = []uintptr{0xfffffffffff000, 0x7ffffffff000}
|
||||
|
||||
Reference in New Issue
Block a user