diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-02-19 05:56:06 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-02-19 05:56:06 -0500 |
commit | 860155a5fc48f983e9af40c19bf8db8250709c26 (patch) | |
tree | 18c5c3ccb573182ba8444fae02c2c84f2bb4a3c5 /src/dev/x86 | |
parent | 40d0e6c899d5da400c9647496532a8fb1ef64b7b (diff) | |
download | gem5-860155a5fc48f983e9af40c19bf8db8250709c26.tar.xz |
mem: Enforce strict use of busFirst- and busLastWordTime
This patch adds a check to ensure that the delay incurred by
the bus is not simply disregarded, but accounted for by someone. At
this point, all the modules do is to zero it out, and no additional
time is spent. This highlights where the bus timing is simply dropped
instead of being paid for.
As a follow up, the locations identified in this patch should add this
additional time to the packets in one way or another. For now it
simply acts as a sanity check and highlights where the delay is simply
ignored.
Since no time is added, all regressions remain the same.
Diffstat (limited to 'src/dev/x86')
-rw-r--r-- | src/dev/x86/intdev.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dev/x86/intdev.hh b/src/dev/x86/intdev.hh index a32182a92..a94ca47cc 100644 --- a/src/dev/x86/intdev.hh +++ b/src/dev/x86/intdev.hh @@ -81,6 +81,8 @@ class IntDev Tick recvMessage(PacketPtr pkt) { + // @todo someone should pay for this + pkt->busFirstWordDelay = pkt->busLastWordDelay = 0; return device->recvMessage(pkt); } }; |