Commit 941eff5a authored by Paul Blakey's avatar Paul Blakey Committed by Jakub Kicinski

net: flow_offload: Add original direction flag to ct_metadata

Give offloading drivers the direction of the offloaded ct flow,
this will be used for matches on direction (ct_state +/-rpl).
Signed-off-by: default avatarPaul Blakey <paulb@nvidia.com>
Reviewed-by: default avatarJiri Pirko <jiri@nvidia.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 8c85d18c
...@@ -245,6 +245,7 @@ struct flow_action_entry { ...@@ -245,6 +245,7 @@ struct flow_action_entry {
unsigned long cookie; unsigned long cookie;
u32 mark; u32 mark;
u32 labels[4]; u32 labels[4];
bool orig_dir;
} ct_metadata; } ct_metadata;
struct { /* FLOW_ACTION_MPLS_PUSH */ struct { /* FLOW_ACTION_MPLS_PUSH */
u32 label; u32 label;
......
...@@ -183,6 +183,7 @@ static void tcf_ct_flow_table_add_action_meta(struct nf_conn *ct, ...@@ -183,6 +183,7 @@ static void tcf_ct_flow_table_add_action_meta(struct nf_conn *ct,
IP_CT_ESTABLISHED_REPLY; IP_CT_ESTABLISHED_REPLY;
/* aligns with the CT reference on the SKB nf_ct_set */ /* aligns with the CT reference on the SKB nf_ct_set */
entry->ct_metadata.cookie = (unsigned long)ct | ctinfo; entry->ct_metadata.cookie = (unsigned long)ct | ctinfo;
entry->ct_metadata.orig_dir = dir == IP_CT_DIR_ORIGINAL;
act_ct_labels = entry->ct_metadata.labels; act_ct_labels = entry->ct_metadata.labels;
ct_labels = nf_ct_labels_find(ct); ct_labels = nf_ct_labels_find(ct);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment