Bug fix: functional cache port now needs otherPort set.
--HG-- extra : convert_revision : fb007df73a77535a5dba19341f7b0b32e8c99548
This commit is contained in:
parent
cde5a79eab
commit
87e5fd1755
1 changed files with 7 additions and 2 deletions
|
@ -419,8 +419,13 @@ Bus::recvAtomic(PacketPtr pkt)
|
|||
void
|
||||
Bus::recvFunctional(PacketPtr pkt)
|
||||
{
|
||||
DPRINTF(Bus, "recvFunctional: packet src %d dest %d addr 0x%x cmd %s\n",
|
||||
pkt->getSrc(), pkt->getDest(), pkt->getAddr(), pkt->cmdString());
|
||||
if (!pkt->isPrint()) {
|
||||
// don't do DPRINTFs on PrintReq as it clutters up the output
|
||||
DPRINTF(Bus,
|
||||
"recvFunctional: packet src %d dest %d addr 0x%x cmd %s\n",
|
||||
pkt->getSrc(), pkt->getDest(), pkt->getAddr(),
|
||||
pkt->cmdString());
|
||||
}
|
||||
assert(pkt->getDest() == Packet::Broadcast);
|
||||
|
||||
int port_id = findPort(pkt->getAddr());
|
||||
|
|
Loading…
Reference in a new issue