mem: Remove the unused asid field from the CacheBlk class
Change-Id: I29f45733c5fad822bdd0d8dcc7939d86b2e8c97b Reviewed-by: Andreas Hansson <andreas.hansson@arm.com> Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
parent
cb97118d91
commit
83028e730c
1 changed files with 1 additions and 3 deletions
4
src/mem/cache/blk.hh
vendored
4
src/mem/cache/blk.hh
vendored
|
@ -82,8 +82,6 @@ class CacheBlk
|
||||||
/** Task Id associated with this block */
|
/** Task Id associated with this block */
|
||||||
uint32_t task_id;
|
uint32_t task_id;
|
||||||
|
|
||||||
/** The address space ID of this block. */
|
|
||||||
int asid;
|
|
||||||
/** Data block tag value. */
|
/** Data block tag value. */
|
||||||
Addr tag;
|
Addr tag;
|
||||||
/**
|
/**
|
||||||
|
@ -169,7 +167,7 @@ class CacheBlk
|
||||||
|
|
||||||
CacheBlk()
|
CacheBlk()
|
||||||
: task_id(ContextSwitchTaskId::Unknown),
|
: 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),
|
set(-1), way(-1), isTouched(false), refCount(0),
|
||||||
srcMasterId(Request::invldMasterId),
|
srcMasterId(Request::invldMasterId),
|
||||||
tickInserted(0)
|
tickInserted(0)
|
||||||
|
|
Loading…
Reference in a new issue