From: Andreas Hansson Date: Thu, 25 Oct 2012 08:32:42 +0000 (-0400) Subject: arm: Use table walker clock that is inherited from CPU X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1fdc4e850e3e1fafb0b0c7cd7bd534c5cbe3013d;p=gem5.git arm: Use table walker clock that is inherited from CPU This patch simplifies the scheduling of the next walk for the ARM table walker. Previously it used the CPU clock, but as the table walker inherits the clock from the CPU, it is cleaner to simply use its own clock (which is the same). --- diff --git a/src/arch/arm/table_walker.cc b/src/arch/arm/table_walker.cc index 5f4453935..a10eb4a20 100644 --- a/src/arch/arm/table_walker.cc +++ b/src/arch/arm/table_walker.cc @@ -797,7 +797,7 @@ void TableWalker::nextWalk(ThreadContext *tc) { if (pendingQueue.size()) - schedule(doProcessEvent, tc->getCpuPtr()->clockEdge(Cycles(1))); + schedule(doProcessEvent, clockEdge(Cycles(1))); }