arch-arm: Replace translateAtomic with translateFunctional in AT (#1713)

A previous PR mistakenly [1] replaced translateFunctional with
translateAtomic. This commit is reverting that

[1]: https://github.com/gem5/gem5/pull/1697

Change-Id: I945c3fe59cea36732d9f30109b950d4114aa8fad

Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
This commit is contained in:
Giacomo Travaglini
2024-10-25 17:15:52 +01:00
committed by GitHub
parent c91af552d4
commit c9f94f4e06

View File

@@ -2593,7 +2593,7 @@ AtOp64::addressTranslation64(ThreadContext* tc,
val, 0, flags, Request::funcRequestorId, val, 0, flags, Request::funcRequestorId,
tc->pcState().instAddr(), tc->contextId()); tc->pcState().instAddr(), tc->contextId());
Fault fault = getMMUPtr(tc)->translateAtomic( Fault fault = getMMUPtr(tc)->translateFunctional(
req, tc, mode, tran_type); req, tc, mode, tran_type);
PAR par = 0; PAR par = 0;