From: Ron Dreslinski Date: Tue, 14 Nov 2006 00:12:45 +0000 (-0500) Subject: Changes needed for a bus from CPU->L1 X-Git-Tag: m5_2.0_beta2~40 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dfc82bdcfc6526f338969d224ab52fa6700cb295;p=gem5.git Changes needed for a bus from CPU->L1 src/cpu/simple/atomic.cc: Make the atomic cpu return 0 on snoops. --HG-- extra : convert_revision : aad96ad36e0c764c7cfef8b0c8e97877574f5845 --- diff --git a/src/cpu/simple/atomic.cc b/src/cpu/simple/atomic.cc index 9a1f831cd..325260609 100644 --- a/src/cpu/simple/atomic.cc +++ b/src/cpu/simple/atomic.cc @@ -94,7 +94,7 @@ Tick AtomicSimpleCPU::CpuPort::recvAtomic(PacketPtr pkt) { //Snooping a coherence request, just return - return curTick; + return 0; } void