- Timestamp:
- Aug 5, 2016 8:18:34 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
r62566 r63028 257 257 # ifdef __PAGE_KERNEL_EXEC 258 258 /* >= 2.6.27 */ 259 # define MY_PAGE_KERNEL_EXEC __pgprot( cpu_has_pge? __PAGE_KERNEL_EXEC | _PAGE_GLOBAL : __PAGE_KERNEL_EXEC)259 # define MY_PAGE_KERNEL_EXEC __pgprot(boot_cpu_has(X86_FEATURE_PGE) ? __PAGE_KERNEL_EXEC | _PAGE_GLOBAL : __PAGE_KERNEL_EXEC) 260 260 # else 261 # define MY_PAGE_KERNEL_EXEC __pgprot( cpu_has_pge? _PAGE_KERNEL_EXEC | _PAGE_GLOBAL : _PAGE_KERNEL_EXEC)261 # define MY_PAGE_KERNEL_EXEC __pgprot(boot_cpu_has(X86_FEATURE_PGE) ? _PAGE_KERNEL_EXEC | _PAGE_GLOBAL : _PAGE_KERNEL_EXEC) 262 262 # endif 263 263 #else
Note:
See TracChangeset
for help on using the changeset viewer.