312,313c312,320
< /** cycles of overhead per transaction */
< const Cycles headerCycles;
---
> /**
> * Cycles of front-end pipeline including the delay to accept the request
> * and to decode the address.
> */
> const Cycles frontendLatency;
> /** Cycles of forward latency */
> const Cycles forwardLatency;
> /** Cycles of response latency */
> const Cycles responseLatency;
406a414,416
> *
> * @param pkt Packet to populate with timings
> * @param header_delay Header delay to be added
408c418
< void calcPacketTiming(PacketPtr pkt);
---
> void calcPacketTiming(PacketPtr pkt, Tick header_delay);