summaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2017-11-05 22:31:39 +0900
committerDavid S. Miller <davem@davemloft.net>2017-11-05 22:31:39 +0900
commit6c49b5e26004eef86e7a47093a53be290554351c (patch)
treee595964139c83a0e7cabfb32ac8f85e1766f2bf9 /include/net
parent952484610cc2f67303be4feedb0e52a519c31470 (diff)
parent7354fcb0a3a3a5518107f8de117a6ce5ce08cc7c (diff)
downloadop-kernel-dev-6c49b5e26004eef86e7a47093a53be290554351c.zip
op-kernel-dev-6c49b5e26004eef86e7a47093a53be290554351c.tar.gz
Merge branch 'dsa-parsing-stage'
Vivien Didelot says: ==================== net: dsa: parsing stage When registering a DSA switch, there is basically two stages. The first stage is the parsing of the switch device, from either device tree or platform data. It fetches the DSA tree to which it belongs, and validates its ports. The switch device is then added to the tree, and the second stage is called if this was the last switch of the tree. The second stage is the setup of the tree, which validates that the tree is complete, sets up the routing tables, the default CPU port for user ports, sets up the switch drivers and finally the master interfaces, which makes the whole switch fabric functional. This patch series covers the first parsing stage. It fixes the type of the switch and tree indexes to unsigned int, simplifies the tree reference counting and the switch and CPU ports parsing. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/dsa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h
index 50e276d..e543329 100644
--- a/include/net/dsa.h
+++ b/include/net/dsa.h
@@ -116,7 +116,7 @@ struct dsa_switch_tree {
struct raw_notifier_head nh;
/* Tree identifier */
- u32 tree;
+ unsigned int index;
/* Number of switches attached to this tree */
struct kref refcount;
@@ -209,7 +209,7 @@ struct dsa_switch {
* Parent switch tree, and switch index.
*/
struct dsa_switch_tree *dst;
- int index;
+ unsigned int index;
/* Listener for switch fabric events */
struct notifier_block nb;
OpenPOWER on IntegriCloud