Home | History | Annotate | Download | only in MnpDxe

Lines Matching refs:FreeNbufQue

49   Add Count of net buffers to MnpDeviceData->FreeNbufQue. The length of the net

56 and added to MnpDeviceData->FreeNbufQue.
91 NetbufQueAppend (&MnpDeviceData->FreeNbufQue, Nbuf);
100 Allocate a free NET_BUF from MnpDeviceData->FreeNbufQue. If there is none
102 fetch the NET_BUF from the updated FreeNbufQue.
116 NET_BUF_QUEUE *FreeNbufQue;
122 FreeNbufQue = &MnpDeviceData->FreeNbufQue;
128 if (FreeNbufQue->BufNum == 0) {
144 "MnpAllocNbuf: Failed to add NET_BUFs into the FreeNbufQue, %r.\n",
155 Nbuf = NetbufQueRemove (FreeNbufQue);
206 NetbufQueAppend (&MnpDeviceData->FreeNbufQue, Nbuf);
498 NetbufQueInit (&MnpDeviceData->FreeNbufQue);
507 // Get one NET_BUF from the FreeNbufQue for rx cache.
596 if (MnpDeviceData->FreeNbufQue.BufNum != 0) {
597 NetbufQueFlush (&MnpDeviceData->FreeNbufQue);
671 // Flush the FreeNbufQue.
673 MnpDeviceData->NbufCnt -= MnpDeviceData->FreeNbufQue.BufNum;
674 NetbufQueFlush (&MnpDeviceData->FreeNbufQue);