diff options
author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2022-02-16 15:30:10 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-02-17 15:06:51 +0100 |
commit | e42bd4ed09aaf57949f199ae02d20a7108ccf73b (patch) | |
tree | b4ec4808d9c6d01c9f7314118988aa7aa294a4c3 /include/soc/mscc/ocelot_vcap.h | |
parent | net: dsa: felix: use DSA port iteration helpers (diff) | |
download | linux-e42bd4ed09aaf57949f199ae02d20a7108ccf73b.tar.xz linux-e42bd4ed09aaf57949f199ae02d20a7108ccf73b.zip |
net: mscc: ocelot: keep traps in a list
When using the ocelot-8021q tagging protocol, the CPU port isn't
configured as an NPI port, but is a regular port. So a "trap to CPU"
operation is actually a "redirect" operation. So DSA needs to set up the
trapping action one way or another, depending on the tagging protocol in
use.
To ease DSA's work of modifying the action, keep all currently installed
traps in a list, so that DSA can live-patch them when the tagging
protocol changes.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/soc/mscc/ocelot_vcap.h')
-rw-r--r-- | include/soc/mscc/ocelot_vcap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/soc/mscc/ocelot_vcap.h b/include/soc/mscc/ocelot_vcap.h index ae0eec7f5dd2..69b3d880302d 100644 --- a/include/soc/mscc/ocelot_vcap.h +++ b/include/soc/mscc/ocelot_vcap.h @@ -682,6 +682,7 @@ struct ocelot_vcap_id { struct ocelot_vcap_filter { struct list_head list; + struct list_head trap_list; enum ocelot_vcap_filter_type type; int block_id; |