From: Gabe Black Date: Mon, 11 May 2020 14:24:25 +0000 (-0700) Subject: mem: Default the SE translating port proxy alloc method to NextPage. X-Git-Tag: v20.1.0.0~604 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18e435546c619d22704cafa6e77135d312042c15;p=gem5.git mem: Default the SE translating port proxy alloc method to NextPage. This is what's used in 99% of cases, so it makes sense to make it the default. Change-Id: I51535b3387d1c1a0d1d89e77cfca10363388b472 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/29399 Reviewed-by: Matthew Poremba Maintainer: Gabe Black Tested-by: kokoro --- diff --git a/src/mem/se_translating_port_proxy.hh b/src/mem/se_translating_port_proxy.hh index 0fe321201..41f92a665 100644 --- a/src/mem/se_translating_port_proxy.hh +++ b/src/mem/se_translating_port_proxy.hh @@ -60,7 +60,7 @@ class SETranslatingPortProxy : public TranslatingPortProxy bool fixupAddr(Addr addr, BaseTLB::Mode mode) const override; public: - SETranslatingPortProxy(ThreadContext *tc, AllocType alloc, + SETranslatingPortProxy(ThreadContext *tc, AllocType alloc=NextPage, Request::Flags _flags=0); };