mem-cache: Add multiple eviction stats
[gem5.git] / src / arch / x86 / tlb.hh
index 827ab81665236af2795884c7b3afff83c8e0a4bf..b969bca9de06f451ca9dddfa7de3d741a26d10e0 100644 (file)
@@ -156,16 +156,16 @@ namespace X86ISA
         void unserialize(CheckpointIn &cp) override;
 
         /**
-         * Get the table walker master port. This is used for
+         * Get the table walker port. This is used for
          * migrating port connections during a CPU takeOverFrom()
          * call. For architectures that do not have a table walker,
          * NULL is returned, hence the use of a pointer rather than a
          * reference. For X86 this method will always return a valid
          * port pointer.
          *
-         * @return A pointer to the walker master port
+         * @return A pointer to the walker port
          */
-        BaseMasterPort *getMasterPort() override;
+        Port *getTableWalkerPort() override;
     };
 }