summaryrefslogtreecommitdiff
path: root/src/mem/bridge.hh
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2015-01-22 05:01:27 -0500
committerAndreas Hansson <andreas.hansson@arm.com>2015-01-22 05:01:27 -0500
commit0c2ffd2daa5a38b69c2061b304d8998a29343cca (patch)
tree51ce59dfc8a6e41910c48d3298ab480433376d27 /src/mem/bridge.hh
parent00536b0efc6d437fdf0cc0374b818b27ba32d217 (diff)
downloadgem5-0c2ffd2daa5a38b69c2061b304d8998a29343cca.tar.xz
mem: Remove unused RequestState in the bridge
This patch removes the bridge sender state as the Crossbar now takes care of remembering its own routing decisions.
Diffstat (limited to 'src/mem/bridge.hh')
-rw-r--r--src/mem/bridge.hh17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/mem/bridge.hh b/src/mem/bridge.hh
index a79d67484..e6fa498cb 100644
--- a/src/mem/bridge.hh
+++ b/src/mem/bridge.hh
@@ -75,23 +75,6 @@ class Bridge : public MemObject
protected:
/**
- * A bridge request state stores packets along with their sender
- * state and original source. It has enough information to also
- * restore the response once it comes back to the bridge.
- */
- class RequestState : public Packet::SenderState
- {
-
- public:
-
- const PortID origSrc;
-
- RequestState(PortID orig_src) : origSrc(orig_src)
- { }
-
- };
-
- /**
* A deferred packet stores a packet along with its scheduled
* transmission time
*/