Add in Context IDs to the simulator. From now on, cpuId is almost never used,
[gem5.git] / src / mem / cache / prefetch / ghb.hh
index 4fb69201691adb1a32e06dd9302b7660412d43f7..156a74afaef06907355ebba8a23fc5ac98c05f42 100644 (file)
@@ -47,13 +47,13 @@ class GHBPrefetcher : public BasePrefetcher
 
     Tick latency;
     int degree;
-    bool useCPUId;
+    bool useContextId;
 
   public:
 
     GHBPrefetcher(const BaseCacheParams *p)
         : BasePrefetcher(p), latency(p->prefetch_latency),
-          degree(p->prefetch_degree), useCPUId(p->prefetch_use_cpu_id)
+          degree(p->prefetch_degree), useContextId(p->prefetch_use_cpu_id)
     {
     }