Changeset 93635 in vbox for trunk/src/VBox/VMM/VMMR3/PGM.cpp
- Timestamp:
- Feb 7, 2022 10:43:45 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r93596 r93635 954 954 if (RT_SUCCESS(rc)) 955 955 /** @todo why isn't pgmPhysRomWriteHandler registered for ring-0? */ 956 rc = PGMR3HandlerPhysicalTypeRegister(pVM, PGMPHYSHANDLERKIND_WRITE, false /*fKeepPgmLock*/,956 rc = PGMR3HandlerPhysicalTypeRegister(pVM, PGMPHYSHANDLERKIND_WRITE, 0 /*fFlags*/, 957 957 pgmPhysRomWriteHandler, 958 958 NULL, NULL, "pgmPhysRomWritePfHandler", … … 965 965 */ 966 966 if (RT_SUCCESS(rc)) 967 rc = PGMR3HandlerPhysicalTypeRegister(pVM, PGMPHYSHANDLERKIND_WRITE, true /*fKeepPgmLock*/,967 rc = PGMR3HandlerPhysicalTypeRegister(pVM, PGMPHYSHANDLERKIND_WRITE, PGMPHYSHANDLER_F_KEEP_PGM_LOCK, 968 968 pgmPhysMmio2WriteHandler, 969 969 NULL, "pgmPhysMmio2WriteHandler", "pgmPhysMmio2WritePfHandler",
Note:
See TracChangeset
for help on using the changeset viewer.