Changeset 90825 in vbox
- Timestamp:
- Aug 23, 2021 10:48:26 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r90823 r90825 4325 4325 # else /* !IN_RING3 */ 4326 4326 # if defined(RT_OS_LINUX) /* May use 5-level paging (see Documentation/x86/x86_64/mm.rst). */ 4327 # define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x200000 >= 0x201000U /* one invalid page at the bottom and 2MB at the top */ \ 4327 # if 1 /* User address are no longer considered valid in kernel mode (SMAP, etc). */ 4328 # define RT_VALID_PTR(ptr) ((uintptr_t)(ptr) - 0xff00000000000000ULL < 0x00ffffffffe00000ULL) /* 2MB invalid space at the top */ 4329 # else 4330 # define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x200000 >= 0x201000U /* one invalid page at the bottom and 2MB at the top */ \ 4328 4331 && ( ((uintptr_t)(ptr) & 0xff00000000000000ULL) == 0xff00000000000000ULL \ 4329 4332 || ((uintptr_t)(ptr) & 0xff00000000000000ULL) == 0) ) 4333 # endif 4330 4334 # else 4331 4335 # define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x1000U >= 0x2000U \
Note:
See TracChangeset
for help on using the changeset viewer.