Changeset 108747 in vbox for trunk/src/VBox/VMM/VMMR3/GICR3.cpp
- Timestamp:
- Mar 26, 2025 7:47:08 AM (4 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168172
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GICR3.cpp
r108733 r108747 598 598 "|Nmi" 599 599 "|Mbi" 600 "|Aff3Levels", ""); 600 "|Aff3Levels" 601 "|Lpi" 602 "|MaxLpi", ""); 601 603 602 604 #if 0 … … 804 806 } 805 807 else 808 { 806 809 pGicDev->hMmioGits = NIL_IOMMMIOHANDLE; 810 811 /* When the ITS is disabled we don't support LPIs as we do not support direct LPI injection (guests don't use it). */ 812 if (pGicDev->fLpi) 813 return PDMDevHlpVMSetError(pDevIns, VERR_INVALID_PARAMETER, RT_SRC_POS, 814 N_("Configuration error: \"Lpi\" must be disabled when ITS is disabled\n")); 815 } 807 816 } 808 817
Note:
See TracChangeset
for help on using the changeset viewer.