Changeset 92541 in vbox for trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
- Timestamp:
- Nov 22, 2021 6:35:38 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r91997 r92541 3922 3922 /* ignore informational status codes */ 3923 3923 } 3924 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER); 3924 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER, 3925 false /* fForce */); 3925 3926 3926 3927 /* TR selector is at offset 0x16. */ … … 5894 5895 Assert(pVCpu->cpum.GstCtx.cr0 == uNewCrX); 5895 5896 5896 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER); 5897 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER, 5898 false /* fForce */); 5897 5899 break; 5898 5900 } … … 6097 6099 Assert(pVCpu->cpum.GstCtx.cr4 == uNewCrX); 6098 6100 6099 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER); 6101 rcStrict = PGMChangeMode(pVCpu, pVCpu->cpum.GstCtx.cr0, pVCpu->cpum.GstCtx.cr4, pVCpu->cpum.GstCtx.msrEFER, 6102 false /* fForce */); 6100 6103 break; 6101 6104 }
Note:
See TracChangeset
for help on using the changeset viewer.