|
@@ -510,15 +510,15 @@ struct vmx_msr_entry {
|
|
|
/*
|
|
|
* Exit Qualifications for EPT Violations
|
|
|
*/
|
|
|
-#define EPT_VIOLATION_READ_BIT 0
|
|
|
-#define EPT_VIOLATION_WRITE_BIT 1
|
|
|
-#define EPT_VIOLATION_INSTR_BIT 2
|
|
|
+#define EPT_VIOLATION_ACC_READ_BIT 0
|
|
|
+#define EPT_VIOLATION_ACC_WRITE_BIT 1
|
|
|
+#define EPT_VIOLATION_ACC_INSTR_BIT 2
|
|
|
#define EPT_VIOLATION_READABLE_BIT 3
|
|
|
#define EPT_VIOLATION_WRITABLE_BIT 4
|
|
|
#define EPT_VIOLATION_EXECUTABLE_BIT 5
|
|
|
-#define EPT_VIOLATION_READ (1 << EPT_VIOLATION_READ_BIT)
|
|
|
-#define EPT_VIOLATION_WRITE (1 << EPT_VIOLATION_WRITE_BIT)
|
|
|
-#define EPT_VIOLATION_INSTR (1 << EPT_VIOLATION_INSTR_BIT)
|
|
|
+#define EPT_VIOLATION_ACC_READ (1 << EPT_VIOLATION_ACC_READ_BIT)
|
|
|
+#define EPT_VIOLATION_ACC_WRITE (1 << EPT_VIOLATION_ACC_WRITE_BIT)
|
|
|
+#define EPT_VIOLATION_ACC_INSTR (1 << EPT_VIOLATION_ACC_INSTR_BIT)
|
|
|
#define EPT_VIOLATION_READABLE (1 << EPT_VIOLATION_READABLE_BIT)
|
|
|
#define EPT_VIOLATION_WRITABLE (1 << EPT_VIOLATION_WRITABLE_BIT)
|
|
|
#define EPT_VIOLATION_EXECUTABLE (1 << EPT_VIOLATION_EXECUTABLE_BIT)
|