From inc/saiacl.h:
/*
* By default, Byte Counter would be created and following
* use of the below attributes would result in an error.
*
* - Both packet count and byte count set to disable
* - Only Byte count used which is set to disable
*/
According to the comment above, default value for enabling byte count is true.
But for SAI_ACL_COUNTER_ATTR_ENABLE_BYTE_COUNT it is set to false:
/**
* @brief Enable/disable byte count
*
* @type bool
* @flags CREATE_ONLY
* @default false
*/
SAI_ACL_COUNTER_ATTR_ENABLE_BYTE_COUNT,
I propose to change the default value to true.
From inc/saiacl.h:
According to the comment above, default value for enabling byte count is true.
But for SAI_ACL_COUNTER_ATTR_ENABLE_BYTE_COUNT it is set to false:
I propose to change the default value to true.