Changeset 496 in vbox
- Timestamp:
- Feb 1, 2007 9:53:51 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r484 r496 1203 1203 Log(("pcnetUpdateRingHandlers TD %VGp size %x -> %VGp size %x\n", pData->TDRAPhysOld, pData->cbTDRAOld, pData->GCTDRA, pcnetTdraAddr(pData, 0))); 1204 1204 Log(("pcnetUpdateRingHandlers RX %VGp size %x -> %VGp size %x\n", pData->RDRAPhysOld, pData->cbRDRAOld, pData->GCRDRA, pcnetRdraAddr(pData, 0))); 1205 1206 /** @todo unregister order not correct! */ 1205 1207 1206 1208 if (pData->GCRDRA != pData->RDRAPhysOld || CSR_RCVRL(pData) != pData->cbRDRAOld) … … 2652 2654 { 2653 2655 case 0x00: /* RDP */ 2654 #ifndef PCNET_NO_POLLING2655 2656 pcnetPollTimer(pData); 2656 #endif2657 2657 val = pcnetCSRReadU16(pData, pData->u32RAP); 2658 2658 if (pData->u32RAP == 0) // pcnetUpdateIrq() already called by pcnetCSRReadU16() … … 2671 2671 } 2672 2672 } 2673 #ifndef PCNET_NO_POLLING2674 2673 pcnetUpdateIrq(pData); 2675 #endif2676 2674 2677 2675 skip_update_irq: … … 2731 2729 { 2732 2730 case 0x00: /* RDP */ 2733 #ifndef PCNET_NO_POLLING2734 2731 pcnetPollTimer(pData); 2735 #endif2736 2732 val = pcnetCSRReadU16(pData, pData->u32RAP); 2737 2733 if (pData->u32RAP == 0) // pcnetUpdateIrq() already called by pcnetCSRReadU16() … … 2750 2746 } 2751 2747 } 2752 #ifndef PCNET_NO_POLLING2753 2748 pcnetUpdateIrq(pData); 2754 #endif2755 2749 2756 2750 skip_update_irq:
Note:
See TracChangeset
for help on using the changeset viewer.