summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJiri Pirko <jiri@mellanox.com>2020-03-07 14:40:11 +0300
committerDavid S. Miller <davem@davemloft.net>2020-03-09 07:07:47 +0300
commit2514921e72472806b059316122f232c0bbdaf1a1 (patch)
tree54b227c6ae102866b39b9bfea2973ee2cf69058d /include
parentcaf48383f1e631d0422cafa24d9f7eda35686feb (diff)
downloadlinux-2514921e72472806b059316122f232c0bbdaf1a1.tar.xz
flow_offload: Introduce offload of HW stats type
Initially, pass "ANY" (struct is zeroed) to the drivers as that is the current implicit value coming down to flow_offload. Add a bool indicating that entries have mixed HW stats type. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/flow_offload.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
index cd3510ac66b0..93d17f37e980 100644
--- a/include/net/flow_offload.h
+++ b/include/net/flow_offload.h
@@ -154,6 +154,8 @@ enum flow_action_mangle_base {
FLOW_ACT_MANGLE_HDR_TYPE_UDP,
};
+#define FLOW_ACTION_HW_STATS_TYPE_ANY 0
+
typedef void (*action_destr)(void *priv);
struct flow_action_cookie {
@@ -168,6 +170,7 @@ void flow_action_cookie_destroy(struct flow_action_cookie *cookie);
struct flow_action_entry {
enum flow_action_id id;
+ u8 hw_stats_type;
action_destr destructor;
void *destructor_priv;
union {