You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
“sai_acl_api->create_acl_table” call SAI api which calls Broadcom sdk-API(we are using Broadcom chip) to create group in ASIC.
We want to return group id back to SONIC. For that we want to add one extra argument(gidval) in the below API:
sai_acl_api->create_acl_table(&m_oid, &gidval, gSwitchId, (uint32_t)table_attrs.size(), table_att rs.data());
We did following changes:
Above argument addition in “create_acl_table”
Declaring variable gidval in “class AclTable” in aclorch.h
Adding arg in “typedef sai_status_t (*sai_create_acl_table_fn)” inside “sonic-sairedis/SAI/inc/saiacl.h”
But we are getting some compilation error. But before coming to the errors can you inform whether any other change is required for this support ?
The text was updated successfully, but these errors were encountered:
Hi,
“sai_acl_api->create_acl_table” call SAI api which calls Broadcom sdk-API(we are using Broadcom chip) to create group in ASIC.
We want to return group id back to SONIC. For that we want to add one extra argument(gidval) in the below API:
sai_acl_api->create_acl_table(&m_oid, &gidval, gSwitchId, (uint32_t)table_attrs.size(), table_att rs.data());
We did following changes:
But we are getting some compilation error. But before coming to the errors can you inform whether any other change is required for this support ?
The text was updated successfully, but these errors were encountered: