From 268d9e59c5e69a00456a40c837b0150a8f3f6bf8 Mon Sep 17 00:00:00 2001 From: Marco Balboni Date: Wed, 11 Feb 2015 10:23:47 -0500 Subject: mem: Clarification of packet crossbar timings This patch clarifies the packet timings annotated when going through a crossbar. The old 'firstWordDelay' is replaced by 'headerDelay' that represents the delay associated to the delivery of the header of the packet. The old 'lastWordDelay' is replaced by 'payloadDelay' that represents the delay needed to processing the payload of the packet. For now the uses and values remain identical. However, going forward the payloadDelay will be additive, and not include the headerDelay. Follow-on patches will make the headerDelay capture the pipeline latency incurred in the crossbar, whereas the payloadDelay will capture the additional serialisation delay. --- src/mem/simple_mem.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mem/simple_mem.cc') diff --git a/src/mem/simple_mem.cc b/src/mem/simple_mem.cc index 4e1020de5..bf89e58fd 100644 --- a/src/mem/simple_mem.cc +++ b/src/mem/simple_mem.cc @@ -125,7 +125,7 @@ SimpleMemory::recvTimingReq(PacketPtr pkt) } // @todo someone should pay for this - pkt->firstWordDelay = pkt->lastWordDelay = 0; + pkt->headerDelay = pkt->payloadDelay = 0; // update the release time according to the bandwidth limit, and // do so with respect to the time it takes to finish this request -- cgit v1.2.3