]> git.dujemihanovic.xyz Git - linux.git/commitdiff
mlxsw: spectrum_matchall: Publish matchall data structures
authorPetr Machata <petrm@mellanox.com>
Fri, 10 Jul 2020 21:55:12 +0000 (00:55 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 14 Jul 2020 00:22:22 +0000 (17:22 -0700)
A following patch introduces offloading of filters attached to blocks bound
to the RED tail_drop qevent. The only classifier that mlxsw will permit in
this role is matchall. mlxsw currently offloads matchall filters used with
clsact qdisc. The data structures used for that offload will come handy for
the qevent offload as well. Publish them in spectrum.h.

Signed-off-by: Petr Machata <petrm@mellanox.com>
Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum.h
drivers/net/ethernet/mellanox/mlxsw/spectrum_matchall.c

index ab54790d2955d3c971156b549c6680c1dc787af7..51047b1aa23a8e2aac5e62f29e3974cf3655e708 100644 (file)
@@ -960,6 +960,30 @@ extern const struct mlxsw_afk_ops mlxsw_sp1_afk_ops;
 extern const struct mlxsw_afk_ops mlxsw_sp2_afk_ops;
 
 /* spectrum_matchall.c */
+enum mlxsw_sp_mall_action_type {
+       MLXSW_SP_MALL_ACTION_TYPE_MIRROR,
+       MLXSW_SP_MALL_ACTION_TYPE_SAMPLE,
+       MLXSW_SP_MALL_ACTION_TYPE_TRAP,
+};
+
+struct mlxsw_sp_mall_mirror_entry {
+       const struct net_device *to_dev;
+       int span_id;
+};
+
+struct mlxsw_sp_mall_entry {
+       struct list_head list;
+       unsigned long cookie;
+       unsigned int priority;
+       enum mlxsw_sp_mall_action_type type;
+       bool ingress;
+       union {
+               struct mlxsw_sp_mall_mirror_entry mirror;
+               struct mlxsw_sp_port_sample sample;
+       };
+       struct rcu_head rcu;
+};
+
 int mlxsw_sp_mall_replace(struct mlxsw_sp *mlxsw_sp,
                          struct mlxsw_sp_flow_block *block,
                          struct tc_cls_matchall_offload *f);
index f1a44a8eda557bf3367b6affd3b864a8a9116caa..195e28ab8e657bb8644bafad99d71305e6de06e3 100644 (file)
 #include "spectrum_span.h"
 #include "reg.h"
 
-enum mlxsw_sp_mall_action_type {
-       MLXSW_SP_MALL_ACTION_TYPE_MIRROR,
-       MLXSW_SP_MALL_ACTION_TYPE_SAMPLE,
-};
-
-struct mlxsw_sp_mall_mirror_entry {
-       const struct net_device *to_dev;
-       int span_id;
-};
-
-struct mlxsw_sp_mall_entry {
-       struct list_head list;
-       unsigned long cookie;
-       unsigned int priority;
-       enum mlxsw_sp_mall_action_type type;
-       bool ingress;
-       union {
-               struct mlxsw_sp_mall_mirror_entry mirror;
-               struct mlxsw_sp_port_sample sample;
-       };
-       struct rcu_head rcu;
-};
-
 static struct mlxsw_sp_mall_entry *
 mlxsw_sp_mall_entry_find(struct mlxsw_sp_flow_block *block, unsigned long cookie)
 {