ptr_t fault_refva; // referneced va, for ptep fault, equals to fault_va otherwise
pte_t resolving; // the pte that will resolve the fault
ptr_t fault_refva; // referneced va, for ptep fault, equals to fault_va otherwise
pte_t resolving; // the pte that will resolve the fault
- bool kernel_vmfault:1; // faulting address that is kernel
- bool ptep_fault:1; // faulting address is a ptep
- bool remote_fault:1; // referenced faulting address is remote vms
- bool kernel_access:1; // kernel mem access causing the fault
+ struct
+ {
+ bool kernel_vmfault:1; // faulting address that is kernel
+ bool ptep_fault:1; // faulting address is a ptep
+ bool remote_fault:1; // referenced faulting address is remote vms
+ bool kernel_access:1; // kernel mem access causing the fault
+ };