Changeset 52192 in vbox for trunk/src/VBox/HostDrivers/Support/linux
- Timestamp:
- Jul 25, 2014 3:04:01 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95251
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r51770 r52192 1066 1066 } 1067 1067 1068 1069 /** 1070 * Returns configuration flags of the host kernel. 1071 */ 1072 SUPR0DECL(uint32_t) SUPR0GetKernelFeatures(void) 1073 { 1074 uint32_t fFlags = 0; 1075 #ifdef CONFIG_PAX_KERNEXEC 1076 fFlags |= SUPKERNELFEATURES_GDT_READ_ONLY; 1077 #endif 1078 return fFlags; 1079 } 1080 1081 1068 1082 module_init(VBoxDrvLinuxInit); 1069 1083 module_exit(VBoxDrvLinuxUnload);
Note:
See TracChangeset
for help on using the changeset viewer.