Changeset 13032 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Oct 7, 2008 9:25:37 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r12941 r13032 1000 1000 { 1001 1001 /* 1002 * Pass foward high priority messages or when there's no flow control 1003 * on an empty queue, otherwise queue them. 1002 * Pass foward messages when adjacent module can receive, otherwise queue them. 1004 1003 */ 1005 if ( queclass(pMsg) == QPCTL 1006 || (pQueue->q_first == NULL && canputnext(pQueue))) 1007 { 1004 if (canputnext(pQueue))) 1008 1005 putnext(pQueue, pMsg); 1009 }1010 1006 else 1011 1007 putbq(pQueue, pMsg); … … 1031 1027 { 1032 1028 /* 1033 * Pass foward high priority messages or when there's no flow control 1034 * on an empty queue, otherwise queue them. 1029 * Pass foward messages when adjacent module can receive, otherwise queue them. 1035 1030 */ 1036 if ( queclass(pMsg) == QPCTL 1037 || (pQueue->q_first == NULL && canputnext(pQueue))) 1038 { 1031 if (canputnext(pQueue))) 1039 1032 putnext(pQueue, pMsg); 1040 }1041 1033 else 1042 1034 putbq(pQueue, pMsg);
Note:
See TracChangeset
for help on using the changeset viewer.