diff mbox series

[net-next,03/10] flow_offload: Introduce offload of HW stats type

Message ID 20200221095643.6642-4-jiri@resnulli.us
State Changes Requested
Delegated to: David Miller
Headers show
Series net: allow user specify TC filter HW stats type | expand

Commit Message

Jiri Pirko Feb. 21, 2020, 9:56 a.m. UTC
From: Jiri Pirko <jiri@mellanox.com>

Initially, pass "ANY" (struct is zeroed) to the drivers as that is the
current implicit value coming down to flow_offload.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
---
 include/net/flow_offload.h | 5 +++++
 1 file changed, 5 insertions(+)
diff mbox series

Patch

diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
index c6f7bd22db60..34e1e7832cc3 100644
--- a/include/net/flow_offload.h
+++ b/include/net/flow_offload.h
@@ -350,10 +350,15 @@  enum flow_cls_command {
 	FLOW_CLS_TMPLT_DESTROY,
 };
 
+enum flow_cls_hw_stats_type {
+	FLOW_CLS_HW_STATS_TYPE_ANY,
+};
+
 struct flow_cls_common_offload {
 	u32 chain_index;
 	__be16 protocol;
 	u32 prio;
+	enum flow_cls_hw_stats_type hw_stats_type;
 	struct netlink_ext_ack *extack;
 };