Skip to content

Commit

Permalink
Mark m_isCombinedMirrorV6Table as true for BFN (sonic-net#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
msosyak committed Feb 28, 2020
1 parent a92df19 commit 0bf0acb
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 @@ -2104,13 +2104,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 0bf0acb

Please sign in to comment.