Deleted Added
sdiff udiff text old ( 12680:91f4d6668b4f ) new ( 12749:223c83ed9979 )
full compact
1/*
2 * Copyright (c) 2012-2013, 2016-2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 199 unchanged lines hidden (view full) ---

208 DPRINTF(TrafficGen, "Suppressed packet %s 0x%x\n",
209 pkt->cmdString(), pkt->getAddr());
210
211 ++numSuppressed;
212 if (numSuppressed % 10000)
213 warn("%s suppressed %d packets with non-memory addresses\n",
214 name(), numSuppressed);
215
216 delete pkt;
217 pkt = nullptr;
218 }
219 }
220
221 // if we are waiting for a retry, do not schedule any further
222 // events, in the case of a transition or a successful send, go
223 // ahead and determine when the next update should take place

--- 345 unchanged lines hidden (view full) ---

569 retryTicks
570 .name(name() + ".retryTicks")
571 .desc("Time spent waiting due to back-pressure (ticks)");
572}
573
574bool
575TrafficGen::TrafficGenPort::recvTimingResp(PacketPtr pkt)
576{
577 delete pkt;
578
579 return true;
580}