Skip to content

Commit

Permalink
[202211_RC9] Remove counters for Mux ACL
Browse files Browse the repository at this point in the history
  • Loading branch information
keboliu committed Mar 31, 2023
1 parent 9ffe789 commit 7a25a60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orchagent/muxorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ MuxAclHandler::MuxAclHandler(sai_object_id_t port, string alias)
// First time handling of Mux Table, create ACL table, and bind
createMuxAclTable(port, table_name);
shared_ptr<AclRulePacket> newRule =
make_shared<AclRulePacket>(gAclOrch, rule_name, table_name);
make_shared<AclRulePacket>(gAclOrch, rule_name, table_name, false /*no counters*/);
createMuxAclRule(newRule, table_name);
}
else
Expand All @@ -796,7 +796,7 @@ MuxAclHandler::MuxAclHandler(sai_object_id_t port, string alias)
if (rule == nullptr)
{
shared_ptr<AclRulePacket> newRule =
make_shared<AclRulePacket>(gAclOrch, rule_name, table_name);
make_shared<AclRulePacket>(gAclOrch, rule_name, table_name, false /*no counters*/);
createMuxAclRule(newRule, table_name);
}
else
Expand Down

0 comments on commit 7a25a60

Please sign in to comment.