changeset 474ac613d0d7 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=474ac613d0d7
description:
        mem: Remove the unused asid field from the CacheBlk class

        Change-Id: I29f45733c5fad822bdd0d8dcc7939d86b2e8c97b
        Reviewed-by: Andreas Hansson <andreas.hans...@arm.com>
        Signed-off-by: Andreas Sandberg <andreas.sandb...@arm.com>

diffstat:

 src/mem/cache/blk.hh |  4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r b470020b29de -r 474ac613d0d7 src/mem/cache/blk.hh
--- a/src/mem/cache/blk.hh      Tue Feb 21 14:14:44 2017 +0000
+++ b/src/mem/cache/blk.hh      Tue Feb 21 14:14:45 2017 +0000
@@ -82,8 +82,6 @@
     /** Task Id associated with this block */
     uint32_t task_id;
 
-    /** The address space ID of this block. */
-    int asid;
     /** Data block tag value. */
     Addr tag;
     /**
@@ -169,7 +167,7 @@
 
     CacheBlk()
         : task_id(ContextSwitchTaskId::Unknown),
-          asid(-1), tag(0), data(0) ,size(0), status(0), whenReady(0),
+          tag(0), data(0) ,size(0), status(0), whenReady(0),
           set(-1), way(-1), isTouched(false), refCount(0),
           srcMasterId(Request::invldMasterId),
           tickInserted(0)
_______________________________________________
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to