Changeset 96991 in vbox
- Timestamp:
- Oct 5, 2022 6:36:04 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r96990 r96991 1152 1152 #endif 1153 1153 if (fClear) 1154 ASMBitClear(pbMsrBitmap + offMsrRead,iBit);1154 ASMBitClear(pbMsrBitmap, (offMsrRead << 3) + iBit); 1155 1155 } 1156 1156 else 1157 ASMBitSet(pbMsrBitmap + offMsrRead,iBit);1157 ASMBitSet(pbMsrBitmap, (offMsrRead << 3) + iBit); 1158 1158 1159 1159 /* … … 1172 1172 #endif 1173 1173 if (fClear) 1174 ASMBitClear(pbMsrBitmap + offMsrWrite,iBit);1174 ASMBitClear(pbMsrBitmap, (offMsrWrite << 3) + iBit); 1175 1175 } 1176 1176 else 1177 ASMBitSet(pbMsrBitmap + offMsrWrite,iBit);1177 ASMBitSet(pbMsrBitmap, (offMsrWrite << 3) + iBit); 1178 1178 } 1179 1179
Note:
See TracChangeset
for help on using the changeset viewer.