Changeset 83209 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Mar 5, 2020 1:43:54 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136347
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r83066 r83209 6880 6880 */ 6881 6881 if (pVCpu->hm.s.Event.fPending) 6882 { 6882 6883 STAM_COUNTER_INC(&pVCpu->hm.s.StatInjectReflectNPF); 6884 6885 /* 6886 * If the #NPF handler requested emulation of the instruction, ignore it. 6887 * We need to re-inject the original event so as to not lose it. 6888 * Reproducible when booting ReactOS 0.4.12 with BTRFS (installed using BootCD, 6889 * LiveCD is broken for other reasons). 6890 */ 6891 if (rc == VINF_EM_RAW_EMULATE_INSTR) 6892 rc = VINF_EM_RAW_INJECT_TRPM_EVENT; 6893 } 6883 6894 6884 6895 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.