VirtualBox

Changeset 14127 in vbox for trunk/src/VBox/HostDrivers


Ignore:
Timestamp:
Nov 12, 2008 10:43:57 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
39209
Message:

Solaris/VBoxNetFlt: comments and log.

File:
1 edited

Legend:

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

    r13983 r14127  
    580580 * Stream module open entry point, initializes the queue and allows streams processing.
    581581 *
    582  * @param   pQueue          Pointer to the queue (cannot be NULL).
     582 * @param   pQueue          Pointer to the read queue (cannot be NULL).
    583583 * @param   pDev            Pointer to the dev_t associated with the driver at the end of the stream.
    584584 * @param   fOpenMode       Open mode (always 0 for streams driver, thus ignored).
     
    759759 * Stream module close entry point, undoes the work done on open and closes the stream.
    760760 *
    761  * @param   pQueue          Pointer to the queue (cannot be NULL).
     761 * @param   pQueue          Pointer to the read queue (cannot be NULL).
    762762 * @param   fOpenMode       Open mode (always 0 for streams driver, thus ignored).
    763763 * @param   pCred           Pointer to user credentials.
     
    856856 * All streams, bound and unbound share this read procedure.
    857857 *
    858  * @param   pQueue      Pointer to the queue.
     858 * @param   pQueue      Pointer to the read queue.
    859859 * @param   pMsg        Pointer to the message.
    860860 *
     
    10871087 * All streams, bound and unbound share this write procedure.
    10881088 *
    1089  * @param   pQueue      Pointer to the queue.
     1089 * @param   pQueue      Pointer to the write queue.
    10901090 * @param   pMsg        Pointer to the message.
    10911091 *
     
    11051105 *
    11061106 * @returns VBox status code.
    1107  * @param   pQueue      Pointer to the queue.
     1107 * @param   pQueue      Pointer to the read queue.
    11081108 */
    11091109static int vboxNetFltSolarisSetRawMode(vboxnetflt_promisc_stream_t *pPromiscStream)
     
    11341134 *
    11351135 * @returns VBox status code.
    1136  * @param   pQueue      Pointer to the queue.
     1136 * @param   pQueue      Pointer to the read queue.
    11371137 */
    11381138static int vboxNetFltSolarisSetFastMode(queue_t *pQueue)
     
    11791179 * Send fake promiscous mode requests downstream.
    11801180 *
    1181  * @param   pQueue          Pointer to the queue.
     1181 * @param   pQueue          Pointer to the read queue.
    11821182 * @param   fPromisc        Whether to enable promiscous mode or not.
    11831183 * @param   PromiscLevel    Promiscous level; DL_PROMISC_PHYS/SAP/MULTI.
     
    12351235 *
    12361236 * @returns VBox status code.
    1237  * @param   pQueue      Pointer to the queue.
     1237 * @param   pQueue      Pointer to the read queue.
    12381238 * @param   pMsg        Pointer to the request message.
    12391239 */
     
    12881288 *
    12891289 * @returns VBox status code.
    1290  * @param   pQueue      Pointer to the queue.
     1290 * @param   pQueue      Pointer to the read queue.
    12911291 * @param   SAP         The SAP to bind the stream to.
    12921292 */
     
    13151315 *
    13161316 * @returns VBox status code.
    1317  * @param   pQueue          Pointer to the queue.
     1317 * @param   pQueue          Pointer to the read queue.
    13181318 */
    13191319static int vboxNetFltSolarisNotifyReq(queue_t *pQueue)
     
    16261626    if (rc)
    16271627    {
    1628         LogRel((DEVICE_NAME ":vboxNetFltSolarisOpenStream Failed to open '%s' rc=%d\n", szDev, rc));
     1628        LogRel((DEVICE_NAME ":vboxNetFltSolarisOpenStream Failed to open '%s' rc=%d pszName='%s'\n", szDev, rc, pThis->szName));
    16291629        return VERR_INTNET_FLT_IF_FAILED;
    16301630    }
     
    26752675 * @param   pThis       The instance.
    26762676 * @param   pStream     Pointer to the stream.
    2677  * @param   pQueue      Pointer to the queue.
     2677 * @param   pQueue      Pointer to the read queue.
    26782678 * @param   pOrigMsg    Pointer to the message.
    26792679 */
     
    30393039        pThis->u.s.hFastMtx = NIL_RTSEMFASTMUTEX;
    30403040    }
     3041    else
     3042        LogRel((DEVICE_NAME ":vboxNetFltOsInitInstance failed to create mutex. rc=%Rrc\n", rc));
    30413043
    30423044    return rc;
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