Searched defs:pRxQueue (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/solaris/Virtio/
H A DVirtioNet-solaris.c127 PVIRTIOQUEUE pRxQueue; /* Receive Queue. */ member in struct:virtio_net_t
558 pNet->pRxQueue = VirtioGetQueue(pDevice, 0 /* index */ );
559 if (pNet->pRxQueue)
587 VirtioPutQueue(pDevice, pNet->pRxQueue);
588 pNet->pRxQueue = NULL;
614 if (pNet->pRxQueue)
615 VirtioPutQueue(pDevice, pNet->pRxQueue);
/vbox/src/VBox/Devices/Network/
H A DDevVirtioNet.cpp190 R3PTRTYPE(PVQUEUE) pRxQueue; member in struct:VNetState_st
633 else if (!vqueueIsReady(&pThis->VPCI, pThis->pRxQueue))
635 else if (vqueueIsEmpty(&pThis->VPCI, pThis->pRxQueue))
637 vringSetNotification(&pThis->VPCI, &pThis->pRxQueue->VRing, true);
642 vringSetNotification(&pThis->VPCI, &pThis->pRxQueue->VRing, false);
839 if (!vqueueGet(&pThis->VPCI, pThis->pRxQueue, &elem))
883 vqueuePut(&pThis->VPCI, pThis->pRxQueue, &elem, uElemSize, cbReserved);
901 vqueueSync(&pThis->VPCI, pThis->pRxQueue);
1977 pThis->pRxQueue = vpciAddQueue(&pThis->VPCI, 256, vnetQueueReceive, "RX ");

Completed in 64 milliseconds