VirtualBox

Changeset 36562 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Apr 5, 2011 1:56:34 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70997
Message:

PCI: better logging, try to play nice with MSI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/pci.h

    r36253 r36562  
    970970}
    971971
     972DECLINLINE(void) pciDevSetMsi64Capable(PPCIDEVICE pDev)
     973{
     974    pDev->Int.s.fFlags |= PCIDEV_FLAG_MSI64_CAPABLE;
     975}
     976
     977DECLINLINE(void) pciDevClearMsi64Capable(PPCIDEVICE pDev)
     978{
     979    pDev->Int.s.fFlags &= ~PCIDEV_FLAG_MSI64_CAPABLE;
     980}
     981
     982DECLINLINE(bool) pciDevIsMsi64Capable(PPCIDEVICE pDev)
     983{
     984    return (pDev->Int.s.fFlags & PCIDEV_FLAG_MSI64_CAPABLE) != 0;
     985}
     986
    972987DECLINLINE(void) pciDevSetMsixCapable(PPCIDEVICE pDev)
    973988{
Note: See TracChangeset for help on using the changeset viewer.

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