On 2019-05-15 3:42 p.m., Edward Cree wrote:
Required for support of shared counters (and possibly other shared per-
action entities in future).
Signed-off-by: Edward Cree <ec...@solarflare.com>
---
include/net/flow_offload.h | 1 +
net/sched/cls_api.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
index 6200900434e1..4ee0f68f2e8d 100644
--- a/include/net/flow_offload.h
+++ b/include/net/flow_offload.h
@@ -137,6 +137,7 @@ enum flow_action_mangle_base {
struct flow_action_entry {
enum flow_action_id id;
+ u32 action_index;
union {
u32 chain_index; /* FLOW_ACTION_GOTO */
struct net_device *dev; /* FLOW_ACTION_REDIRECT
*/
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
index d4699156974a..0d498c3815f5 100644
--- a/net/sched/cls_api.c
+++ b/net/sched/cls_api.c
@@ -3195,6 +3195,7 @@ int tc_setup_flow_action(struct flow_action *flow_action,
struct flow_action_entry *entry;
entry = &flow_action->entries[j];
+ entry->action_index = act->tcfa_index;
if (is_tcf_gact_ok(act)) {
entry->id = FLOW_ACTION_ACCEPT;
} else if (is_tcf_gact_shot(act)) {
LGTM.
cheers,
jamal