summaryrefslogtreecommitdiffstats
path: root/include/net/pkt_cls.h
diff options
context:
space:
mode:
authorJakub Kicinski2016-09-21 12:43:53 +0200
committerDavid S. Miller2016-09-22 01:50:02 +0200
commit332ae8e2f6ecda5e50c5c62ed62894963e3a83f5 (patch)
tree4e6830282f2e4f1db3f8dc2fa717159b2185e8a7 /include/net/pkt_cls.h
parentMerge branch 'mlxse-resource-query' (diff)
downloadkernel-qcow2-linux-332ae8e2f6ecda5e50c5c62ed62894963e3a83f5.tar.gz
kernel-qcow2-linux-332ae8e2f6ecda5e50c5c62ed62894963e3a83f5.tar.xz
kernel-qcow2-linux-332ae8e2f6ecda5e50c5c62ed62894963e3a83f5.zip
net: cls_bpf: add hardware offload
This patch adds hardware offload capability to cls_bpf classifier, similar to what have been done with U32 and flower. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Acked-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/pkt_cls.h')
-rw-r--r--include/net/pkt_cls.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/net/pkt_cls.h b/include/net/pkt_cls.h
index a459be5fe1c2..41e8071dff87 100644
--- a/include/net/pkt_cls.h
+++ b/include/net/pkt_cls.h
@@ -486,4 +486,18 @@ struct tc_cls_matchall_offload {
unsigned long cookie;
};
+enum tc_clsbpf_command {
+ TC_CLSBPF_ADD,
+ TC_CLSBPF_REPLACE,
+ TC_CLSBPF_DESTROY,
+};
+
+struct tc_cls_bpf_offload {
+ enum tc_clsbpf_command command;
+ struct tcf_exts *exts;
+ struct bpf_prog *prog;
+ const char *name;
+ bool exts_integrated;
+};
+
#endif