VirtualBox

Ignore:
Timestamp:
Mar 3, 2014 10:54:25 AM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
92595
Message:

Support,VBoxNet[Flt|Adp]/solaris: Fix S10 regression with trunk, ddi_quiesce_not_needed missing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c

    r50630 r50664  
    128128static int VBoxNetFltSolarisAttach(dev_info_t *pDip, ddi_attach_cmd_t enmCmd);
    129129static int VBoxNetFltSolarisDetach(dev_info_t *pDip, ddi_detach_cmd_t enmCmd);
     130static int VBoxNetFltSolarisQuiesceNotNeeded(dev_info_t *pDip);
    130131
    131132/**
     
    232233    (struct bus_ops *)0,
    233234    nodev,                          /* power */
    234     ddi_quiesce_not_needed
     235    VBoxNetFltSolarisQuiesceNotNeeded
    235236};
    236237
     
    691692            return DDI_FAILURE;
    692693    }
     694}
     695
     696
     697/**
     698 * Quiesce not-needed entry point, as Solaris 10 doesn't have any
     699 * ddi_quiesce_not_needed() function.
     700 *
     701 * @param   pDip            The module structure instance.
     702 *
     703 * @return  corresponding solaris error code.
     704 */
     705static int VBoxNetFltSolarisQuiesceNotNeeded(dev_info_t *pDip)
     706{
     707    return DDI_SUCCESS;
    693708}
    694709
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