Changeset 86407 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Oct 2, 2020 6:26:15 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevVirtioNet_1_0.cpp
r86405 r86407 624 624 if (cBufsAvailable) 625 625 { 626 VIRTIOLOGLEVEL10("%s %u empty bufs added to %s by guest (notifying leaf device)\n",627 pThis->szInst, cBufsAvailable, pVirtq->szName) ;626 Log10Func(("%s %u empty bufs added to %s by guest (notifying leaf device)\n", 627 pThis->szInst, cBufsAvailable, pVirtq->szName)); 628 628 virtioNetWakeupRxBufWaiter(pDevIns); 629 629 } 630 630 else 631 VIRTIOLOGLEVEL10("%s \n\n***WARNING: %s notified but no empty bufs added by guest! (skip notifying of leaf device)\n\n",632 pThis->szInst, pVirtq->szName) ;631 Log10Func(("%s \n\n***WARNING: %s notified but no empty bufs added by guest! (skip notifying of leaf device)\n\n", 632 pThis->szInst, pVirtq->szName)); 633 633 } 634 634 else if (IS_TX_VIRTQ(uVirtqNbr) || IS_CTRL_VIRTQ(uVirtqNbr)) … … 639 639 if (ASMAtomicReadBool(&pWorker->fSleeping)) 640 640 { 641 VIRTIOLOGLEVEL10("%s %s has available buffers - waking worker.\n", pThis->szInst, pVirtq->szName);641 Log10Func(("%s %s has available buffers - waking worker.\n", pThis->szInst, pVirtq->szName)); 642 642 643 643 int rc = PDMDevHlpSUPSemEventSignal(pDevIns, pWorker->hEvtProcess); … … 646 646 else 647 647 { 648 VIRTIOLOGLEVEL10("%s %s has available buffers - worker already awake\n", pThis->szInst, pVirtq->szName);648 Log10Func(("%s %s has available buffers - worker already awake\n", pThis->szInst, pVirtq->szName)); 649 649 } 650 650 } 651 651 else 652 652 { 653 VIRTIOLOGLEVEL10("%s %s has available buffers - waking worker.\n", pThis->szInst, pVirtq->szName);653 Log10Func(("%s %s has available buffers - waking worker.\n", pThis->szInst, pVirtq->szName)); 654 654 } 655 655 }
Note:
See TracChangeset
for help on using the changeset viewer.