Commit 69ca05ce authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller

sched: cls_flower: expose priority to offloading netdevice

The driver that offloads flower rules needs to know with which priority
user inserted the rules. So add this information into offload struct.
Signed-off-by: default avatarJiri Pirko <jiri@mellanox.com>
Acked-by: default avatarIdo Schimmel <idosch@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 22a67766
...@@ -481,6 +481,7 @@ enum tc_fl_command { ...@@ -481,6 +481,7 @@ enum tc_fl_command {
struct tc_cls_flower_offload { struct tc_cls_flower_offload {
enum tc_fl_command command; enum tc_fl_command command;
u32 prio;
unsigned long cookie; unsigned long cookie;
struct flow_dissector *dissector; struct flow_dissector *dissector;
struct fl_flow_key *mask; struct fl_flow_key *mask;
......
...@@ -229,6 +229,7 @@ static void fl_hw_destroy_filter(struct tcf_proto *tp, struct cls_fl_filter *f) ...@@ -229,6 +229,7 @@ static void fl_hw_destroy_filter(struct tcf_proto *tp, struct cls_fl_filter *f)
return; return;
offload.command = TC_CLSFLOWER_DESTROY; offload.command = TC_CLSFLOWER_DESTROY;
offload.prio = tp->prio;
offload.cookie = (unsigned long)f; offload.cookie = (unsigned long)f;
tc->type = TC_SETUP_CLSFLOWER; tc->type = TC_SETUP_CLSFLOWER;
...@@ -260,6 +261,7 @@ static int fl_hw_replace_filter(struct tcf_proto *tp, ...@@ -260,6 +261,7 @@ static int fl_hw_replace_filter(struct tcf_proto *tp,
} }
offload.command = TC_CLSFLOWER_REPLACE; offload.command = TC_CLSFLOWER_REPLACE;
offload.prio = tp->prio;
offload.cookie = (unsigned long)f; offload.cookie = (unsigned long)f;
offload.dissector = dissector; offload.dissector = dissector;
offload.mask = mask; offload.mask = mask;
...@@ -287,6 +289,7 @@ static void fl_hw_update_stats(struct tcf_proto *tp, struct cls_fl_filter *f) ...@@ -287,6 +289,7 @@ static void fl_hw_update_stats(struct tcf_proto *tp, struct cls_fl_filter *f)
return; return;
offload.command = TC_CLSFLOWER_STATS; offload.command = TC_CLSFLOWER_STATS;
offload.prio = tp->prio;
offload.cookie = (unsigned long)f; offload.cookie = (unsigned long)f;
offload.exts = &f->exts; offload.exts = &f->exts;
......
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