Wrap tracing stuff in #if TRACING_ON to avoid compile error

in m5.fast

--HG--
extra : convert_revision : 329d810bfe282e88133ca35da62ee6dcc73a38f5
This commit is contained in:
Nathan Binkert 2004-07-21 15:44:57 -04:00
parent e76c98e6be
commit 5b1da825d8

View file

@ -1394,6 +1394,7 @@ NSGigE::rxKick()
rxPktBytes = rxPacket->length;
rxPacketBufPtr = rxPacket->data;
#if TRACING_ON
if (DTRACE(Ethernet)) {
if (rxPacket->isIpPkt()) {
ip_header *ip = rxPacket->getIpHdr();
@ -1406,6 +1407,7 @@ NSGigE::rxKick()
}
}
}
#endif
// sanity check - i think the driver behaves like this
assert(rxDescCnt >= rxPktBytes);
@ -1594,6 +1596,7 @@ NSGigE::transmit()
DPRINTF(Ethernet, "\n\nAttempt Pkt Transmit: txFifo length = %d\n",
maxTxFifoSize - txFifoAvail);
if (interface->sendPacket(txFifo.front())) {
#if TRACING_ON
if (DTRACE(Ethernet)) {
if (txFifo.front()->isIpPkt()) {
ip_header *ip = txFifo.front()->getIpHdr();
@ -1606,6 +1609,7 @@ NSGigE::transmit()
}
}
}
#endif
DDUMP(Ethernet, txFifo.front()->data, txFifo.front()->length);
txBytes += txFifo.front()->length;