diff options
Diffstat (limited to 'src/arch/x86/interrupts.cc')
-rw-r--r-- | src/arch/x86/interrupts.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/interrupts.cc b/src/arch/x86/interrupts.cc index 402b91200..392135def 100644 --- a/src/arch/x86/interrupts.cc +++ b/src/arch/x86/interrupts.cc @@ -307,7 +307,7 @@ Tick X86ISA::Interrupts::recvMessage(PacketPtr pkt) { Addr offset = pkt->getAddr() - x86InterruptAddress(initialApicId, 0); - assert(pkt->cmd == MemCmd::MessageReq); + assert(pkt->cmd == MemCmd::WriteReq); switch(offset) { case 0: @@ -335,7 +335,7 @@ bool X86ISA::Interrupts::recvResponse(PacketPtr pkt) { assert(!pkt->isError()); - assert(pkt->cmd == MemCmd::MessageResp); + assert(pkt->cmd == MemCmd::WriteResp); if (--pendingIPIs == 0) { InterruptCommandRegLow low = regs[APIC_INTERRUPT_COMMAND_LOW]; // Record that the ICR is now idle. |