diff options
author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2020-05-10 18:37:42 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-05-11 04:52:33 +0200 |
commit | 3b7bc1f09101ccace330d105c13c2946bf3be6d5 (patch) | |
tree | 8a6adf3d5acc84c8ed1530f3b8579e03dd7972c6 /include/net/dsa.h | |
parent | net: dsa: permit cross-chip bridging between all trees in the system (diff) | |
download | linux-3b7bc1f09101ccace330d105c13c2946bf3be6d5.tar.xz linux-3b7bc1f09101ccace330d105c13c2946bf3be6d5.zip |
net: dsa: introduce a dsa_switch_find function
Somewhat similar to dsa_tree_find, dsa_switch_find returns a dsa_switch
structure pointer by searching for its tree index and switch index (the
parameters from dsa,member). To be used, for example, by drivers who
implement .crosschip_bridge_join and need a reference to the other
switch indicated to by the tree_index and sw_index arguments.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/net/dsa.h')
-rw-r--r-- | include/net/dsa.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h index 0f4fc00239d9..312c2f067e65 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -672,6 +672,7 @@ static inline bool dsa_can_decode(const struct sk_buff *skb, void dsa_unregister_switch(struct dsa_switch *ds); int dsa_register_switch(struct dsa_switch *ds); +struct dsa_switch *dsa_switch_find(int tree_index, int sw_index); #ifdef CONFIG_PM_SLEEP int dsa_switch_suspend(struct dsa_switch *ds); int dsa_switch_resume(struct dsa_switch *ds); |