VirtualBox

Changeset 37424 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Jun 12, 2011 7:28:11 PM (14 years ago)
Author:
vboxsync
Message:

IOM: Moved the inline functions out of IOMInternal.h and into IOMInline.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/IOM.cpp

    r35346 r37424  
    112112#include <VBox/log.h>
    113113#include <VBox/err.h>
     114
     115#include "IOMInline.h"
    114116
    115117
     
    15381540     */
    15391541    iomLock(pVM);
    1540     PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhysStart);
     1542    PIOMMMIORANGE pRange = iomMMIOGetRange(pVM, GCPhysStart);
    15411543    AssertReturnStmt(pRange, iomUnlock(pVM), VERR_IOM_MMIO_RANGE_NOT_FOUND);
    15421544    AssertReturnStmt(pRange->pDevInsR3 == pDevIns, iomUnlock(pVM), VERR_IOM_NOT_MMIO_RANGE_OWNER);
     
    15941596     */
    15951597    iomLock(pVM);
    1596     PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhysStart);
     1598    PIOMMMIORANGE pRange = iomMMIOGetRange(pVM, GCPhysStart);
    15971599    AssertReturnStmt(pRange, iomUnlock(pVM), VERR_IOM_MMIO_RANGE_NOT_FOUND);
    15981600    AssertReturnStmt(pRange->pDevInsR3 == pDevIns, iomUnlock(pVM), VERR_IOM_NOT_MMIO_RANGE_OWNER);
     
    16481650    while (GCPhys <= GCPhysLast && GCPhys >= GCPhysStart)
    16491651    {
    1650         PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhys);
     1652        PIOMMMIORANGE pRange = iomMMIOGetRange(pVM, GCPhys);
    16511653        if (!pRange)
    16521654        {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette