Bobby R. Bruce has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/49928 )

Change subject: python: Add connect_interrupt() to mesi_two_level for non-X86
......................................................................

python: Add connect_interrupt() to mesi_two_level for non-X86

The MESITwoLevelCacheHierarchy did not call `connect_interrupt()` on
CPUs if not ISA.X86. This patch fixes this.

Change-Id: I46ae19f588e2eadce60f145067e8a7cef0d44afd
---
M src/python/gem5/cachehierarchies/ruby/mesi_two_level_cache_hierarchy.py
1 file changed, 2 insertions(+), 0 deletions(-)



diff --git a/src/python/gem5/cachehierarchies/ruby/mesi_two_level_cache_hierarchy.py b/src/python/gem5/cachehierarchies/ruby/mesi_two_level_cache_hierarchy.py
index 7bda49c..228f61c 100644
--- a/src/python/gem5/cachehierarchies/ruby/mesi_two_level_cache_hierarchy.py +++ b/src/python/gem5/cachehierarchies/ruby/mesi_two_level_cache_hierarchy.py
@@ -140,6 +140,8 @@
                 int_req_port = cache.sequencer.interrupt_out_port
                 int_resp_port = cache.sequencer.in_ports
                 core.connect_interrupt(int_req_port, int_resp_port)
+            else:
+                core.connect_interrupt()

             self._l1_controllers.append(cache)


--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/49928
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I46ae19f588e2eadce60f145067e8a7cef0d44afd
Gerrit-Change-Number: 49928
Gerrit-PatchSet: 1
Gerrit-Owner: Bobby R. Bruce <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to