commit | d9a6d5ee99214f5ed63222243ec1e440e1c0ac09 | [log] [tgz] |
---|---|---|
author | Andrea Campanella <andrea@opennetworking.org> | Tue Jun 05 12:04:02 2018 +0200 |
committer | Andrea Campanella <andrea@opennetworking.org> | Tue Jun 05 12:04:02 2018 +0200 |
tree | 1b7a3658a1c620017161a1501fc2bdb711cdecaa | |
parent | 410d73058b8d6599fef8dc534ab053ef1ca90c2b [diff] |
T3 Fixing HW miss on table 40 Change-Id: Ie98a3671017b4063129af58f326e6996d50d8b28
diff --git a/apps/t3/src/main/java/org/onosproject/t3/impl/TroubleshootManager.java b/apps/t3/src/main/java/org/onosproject/t3/impl/TroubleshootManager.java index 0ff8906..6db93bc 100644 --- a/apps/t3/src/main/java/org/onosproject/t3/impl/TroubleshootManager.java +++ b/apps/t3/src/main/java/org/onosproject/t3/impl/TroubleshootManager.java
@@ -790,6 +790,10 @@ log.debug("A miss on Table 20 on OFDPA means that we skip directly to table 50"); tableId = IndexTableId.of(50); + } else if (((IndexTableId) tableId).id() == 40) { + //if the table is 40 OFDPA skips to table 60 + log.debug("A miss on Table 40 on OFDPA means that we skip directly to table 60"); + tableId = IndexTableId.of(60); } else { tableId = nextTableIdEntry.table(); }