Skip to content

Commit

Permalink
Enable m_isCombinedMirrorV6Table for BFN platform (sonic-net#1212)
Browse files Browse the repository at this point in the history
  • Loading branch information
msosyak authored and abdosi committed Mar 4, 2020
1 parent 63cc540 commit 69f5fc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions orchagent/aclorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2107,13 +2107,13 @@ void AclOrch::init(vector<TableConnector>& connectors, PortsOrch *portOrch, Mirr

// In Broadcom platform, V4 and V6 rules are stored in the same table
if (platform == BRCM_PLATFORM_SUBSTRING ||
platform == NPS_PLATFORM_SUBSTRING) {
platform == NPS_PLATFORM_SUBSTRING ||
platform == BFN_PLATFORM_SUBSTRING) {
m_isCombinedMirrorV6Table = true;
}

// In Mellanox platform, V4 and V6 rules are stored in different tables
if (platform == MLNX_PLATFORM_SUBSTRING ||
platform == BFN_PLATFORM_SUBSTRING) {
if (platform == MLNX_PLATFORM_SUBSTRING) {
m_isCombinedMirrorV6Table = false;
}

Expand Down

0 comments on commit 69f5fc9

Please sign in to comment.