From: Daniel Johnson Date: Tue, 13 Sep 2011 17:06:13 +0000 (-0500) Subject: Mem: Allow ASID to be set after request is created. X-Git-Tag: stable_2012_02_02~84 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52d30813cac76b9dd69ed9c33bb4966f89c5e7a0;p=gem5.git Mem: Allow ASID to be set after request is created. --- diff --git a/src/mem/request.hh b/src/mem/request.hh index 4aa3a821a..dce68087d 100644 --- a/src/mem/request.hh +++ b/src/mem/request.hh @@ -377,6 +377,13 @@ class Request : public FastAlloc return _asid; } + /** Accessor function for asid.*/ + void + setAsid(int asid) + { + _asid = asid; + } + /** Accessor function for asi.*/ uint8_t getAsi()