diff options
author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2020-02-29 15:31:13 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-04 03:57:49 +0100 |
commit | ed11bb1f9657e95e8b79a9a49211986bde96005a (patch) | |
tree | bc5c95484b2fa857a8acb9dffd1298e4781d5286 /include/net/dsa.h | |
parent | net: mscc: ocelot: parameterize the vcap_is2 properties (diff) | |
download | linux-ed11bb1f9657e95e8b79a9a49211986bde96005a.tar.xz linux-ed11bb1f9657e95e8b79a9a49211986bde96005a.zip |
net: dsa: Add bypass operations for the flower classifier-action filter
Due to the immense variety of classification keys and actions available
for tc-flower, as well as due to potentially very different DSA switch
capabilities, it doesn't make a lot of sense for the DSA mid layer to
even attempt to interpret these. So just pass them on to the underlying
switch driver.
DSA implements just the standard boilerplate for binding and unbinding
flow blocks to ports, since nobody wants to deal with that.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/dsa.h')
-rw-r--r-- | include/net/dsa.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h index 7d3d84f0ef42..beeb81a532e3 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -540,6 +540,12 @@ struct dsa_switch_ops { /* * TC integration */ + int (*cls_flower_add)(struct dsa_switch *ds, int port, + struct flow_cls_offload *cls, bool ingress); + int (*cls_flower_del)(struct dsa_switch *ds, int port, + struct flow_cls_offload *cls, bool ingress); + int (*cls_flower_stats)(struct dsa_switch *ds, int port, + struct flow_cls_offload *cls, bool ingress); int (*port_mirror_add)(struct dsa_switch *ds, int port, struct dsa_mall_mirror_tc_entry *mirror, bool ingress); |