diff options
author | Steen Hegelund <steen.hegelund@microchip.com> | 2023-01-17 09:55:40 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-01-18 14:31:43 +0000 |
commit | 27d293cceee50223c2f79978c098e9d1358b4ba6 (patch) | |
tree | 4a2875a1aa50aee96814e613a39cbf0b64fe9d3c /drivers/net/ethernet/microchip/vcap/vcap_api_client.h | |
parent | 0d4cda805a183bbe523f2407edb5c14ade50b841 (diff) | |
download | linux-27d293cceee50223c2f79978c098e9d1358b4ba6.tar.gz linux-27d293cceee50223c2f79978c098e9d1358b4ba6.tar.bz2 linux-27d293cceee50223c2f79978c098e9d1358b4ba6.zip |
net: microchip: sparx5: Add support for rule count by cookie
This adds support for TC clients to get the packet count for a TC filter
identified by its cookie.
Signed-off-by: Steen Hegelund <steen.hegelund@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/microchip/vcap/vcap_api_client.h')
-rw-r--r-- | drivers/net/ethernet/microchip/vcap/vcap_api_client.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/microchip/vcap/vcap_api_client.h b/drivers/net/ethernet/microchip/vcap/vcap_api_client.h index b8980b22352f..2cdcd3b56b30 100644 --- a/drivers/net/ethernet/microchip/vcap/vcap_api_client.h +++ b/drivers/net/ethernet/microchip/vcap/vcap_api_client.h @@ -202,6 +202,8 @@ int vcap_rule_add_action_u32(struct vcap_rule *rule, enum vcap_action_field action, u32 value); /* VCAP rule counter operations */ +int vcap_get_rule_count_by_cookie(struct vcap_control *vctrl, + struct vcap_counter *ctr, u64 cookie); int vcap_rule_set_counter(struct vcap_rule *rule, struct vcap_counter *ctr); int vcap_rule_get_counter(struct vcap_rule *rule, struct vcap_counter *ctr); |