summaryrefslogtreecommitdiff
path: root/src/mem/Bus.py
diff options
context:
space:
mode:
authorStephan Diestelhorst <stephan.diestelhorst@arm.com>2014-09-20 17:18:29 -0400
committerStephan Diestelhorst <stephan.diestelhorst@arm.com>2014-09-20 17:18:29 -0400
commitafa2428eca9476cf63436dc138acafa36a1d408e (patch)
treeac111637ebd5ed68407b575da4f27728368e8b5c /src/mem/Bus.py
parent7d488cc66f77d8c6138f0117732ebc38758e814b (diff)
downloadgem5-afa2428eca9476cf63436dc138acafa36a1d408e.tar.xz
mem: Tie in the snoop filter in the coherent bus
Diffstat (limited to 'src/mem/Bus.py')
-rw-r--r--src/mem/Bus.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mem/Bus.py b/src/mem/Bus.py
index 34d9ae664..06fff93b5 100644
--- a/src/mem/Bus.py
+++ b/src/mem/Bus.py
@@ -75,6 +75,7 @@ class CoherentBus(BaseBus):
cxx_header = "mem/coherent_bus.hh"
system = Param.System(Parent.any, "System that the bus belongs to.")
+ snoop_filter = Param.SnoopFilter(NULL, "Selected snoop filter for the bus.")
class SnoopFilter(SimObject):
type = 'SnoopFilter'