Changeset 14127 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Nov 12, 2008 10:43:57 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39209
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r13983 r14127 580 580 * Stream module open entry point, initializes the queue and allows streams processing. 581 581 * 582 * @param pQueue Pointer to the queue (cannot be NULL).582 * @param pQueue Pointer to the read queue (cannot be NULL). 583 583 * @param pDev Pointer to the dev_t associated with the driver at the end of the stream. 584 584 * @param fOpenMode Open mode (always 0 for streams driver, thus ignored). … … 759 759 * Stream module close entry point, undoes the work done on open and closes the stream. 760 760 * 761 * @param pQueue Pointer to the queue (cannot be NULL).761 * @param pQueue Pointer to the read queue (cannot be NULL). 762 762 * @param fOpenMode Open mode (always 0 for streams driver, thus ignored). 763 763 * @param pCred Pointer to user credentials. … … 856 856 * All streams, bound and unbound share this read procedure. 857 857 * 858 * @param pQueue Pointer to the queue.858 * @param pQueue Pointer to the read queue. 859 859 * @param pMsg Pointer to the message. 860 860 * … … 1087 1087 * All streams, bound and unbound share this write procedure. 1088 1088 * 1089 * @param pQueue Pointer to the queue.1089 * @param pQueue Pointer to the write queue. 1090 1090 * @param pMsg Pointer to the message. 1091 1091 * … … 1105 1105 * 1106 1106 * @returns VBox status code. 1107 * @param pQueue Pointer to the queue.1107 * @param pQueue Pointer to the read queue. 1108 1108 */ 1109 1109 static int vboxNetFltSolarisSetRawMode(vboxnetflt_promisc_stream_t *pPromiscStream) … … 1134 1134 * 1135 1135 * @returns VBox status code. 1136 * @param pQueue Pointer to the queue.1136 * @param pQueue Pointer to the read queue. 1137 1137 */ 1138 1138 static int vboxNetFltSolarisSetFastMode(queue_t *pQueue) … … 1179 1179 * Send fake promiscous mode requests downstream. 1180 1180 * 1181 * @param pQueue Pointer to the queue.1181 * @param pQueue Pointer to the read queue. 1182 1182 * @param fPromisc Whether to enable promiscous mode or not. 1183 1183 * @param PromiscLevel Promiscous level; DL_PROMISC_PHYS/SAP/MULTI. … … 1235 1235 * 1236 1236 * @returns VBox status code. 1237 * @param pQueue Pointer to the queue.1237 * @param pQueue Pointer to the read queue. 1238 1238 * @param pMsg Pointer to the request message. 1239 1239 */ … … 1288 1288 * 1289 1289 * @returns VBox status code. 1290 * @param pQueue Pointer to the queue.1290 * @param pQueue Pointer to the read queue. 1291 1291 * @param SAP The SAP to bind the stream to. 1292 1292 */ … … 1315 1315 * 1316 1316 * @returns VBox status code. 1317 * @param pQueue Pointer to the queue.1317 * @param pQueue Pointer to the read queue. 1318 1318 */ 1319 1319 static int vboxNetFltSolarisNotifyReq(queue_t *pQueue) … … 1626 1626 if (rc) 1627 1627 { 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)); 1629 1629 return VERR_INTNET_FLT_IF_FAILED; 1630 1630 } … … 2675 2675 * @param pThis The instance. 2676 2676 * @param pStream Pointer to the stream. 2677 * @param pQueue Pointer to the queue.2677 * @param pQueue Pointer to the read queue. 2678 2678 * @param pOrigMsg Pointer to the message. 2679 2679 */ … … 3039 3039 pThis->u.s.hFastMtx = NIL_RTSEMFASTMUTEX; 3040 3040 } 3041 else 3042 LogRel((DEVICE_NAME ":vboxNetFltOsInitInstance failed to create mutex. rc=%Rrc\n", rc)); 3041 3043 3042 3044 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.