*/
        struct dsa_port         *cpu_dp;
 
+       /* List of switch ports */
+       struct list_head ports;
+
        /*
         * Data for the individual switch chips.
         */
        struct work_struct      xmit_work;
        struct sk_buff_head     xmit_queue;
 
+       struct list_head list;
+
        /*
         * Give the switch driver somewhere to hang its per-port private data
         * structures (accessible from the tagger).
 
 
        dst->index = index;
 
+       INIT_LIST_HEAD(&dst->ports);
+
        INIT_LIST_HEAD(&dst->list);
        list_add_tail(&dst->list, &dsa_tree_list);
 
        return err;
 }
 
+static struct dsa_port *dsa_port_touch(struct dsa_switch *ds, int index)
+{
+       struct dsa_switch_tree *dst = ds->dst;
+       struct dsa_port *dp;
+
+       dp = &ds->ports[index];
+
+       dp->ds = ds;
+       dp->index = index;
+
+       INIT_LIST_HEAD(&dp->list);
+       list_add_tail(&dp->list, &dst->ports);
+
+       return dp;
+}
+
 static int dsa_port_parse_user(struct dsa_port *dp, const char *name)
 {
        if (!name)
        return 0;
 }
 
+static int dsa_switch_touch_ports(struct dsa_switch *ds)
+{
+       struct dsa_port *dp;
+       int port;
+
+       for (port = 0; port < ds->num_ports; port++) {
+               dp = dsa_port_touch(ds, port);
+               if (!dp)
+                       return -ENOMEM;
+       }
+
+       return 0;
+}
+
 static int dsa_switch_parse_of(struct dsa_switch *ds, struct device_node *dn)
 {
        int err;
        if (err)
                return err;
 
+       err = dsa_switch_touch_ports(ds);
+       if (err)
+               return err;
+
        return dsa_switch_parse_ports_of(ds, dn);
 }
 
 
 static int dsa_switch_parse(struct dsa_switch *ds, struct dsa_chip_data *cd)
 {
+       int err;
+
        ds->cd = cd;
 
        /* We don't support interconnected switches nor multiple trees via
        if (!ds->dst)
                return -ENOMEM;
 
+       err = dsa_switch_touch_ports(ds);
+       if (err)
+               return err;
+
        return dsa_switch_parse_ports(ds, cd);
 }
 
 struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n)
 {
        struct dsa_switch *ds;
-       int i;
 
        ds = devm_kzalloc(dev, struct_size(ds, ports, n), GFP_KERNEL);
        if (!ds)
        ds->dev = dev;
        ds->num_ports = n;
 
-       for (i = 0; i < ds->num_ports; ++i) {
-               ds->ports[i].index = i;
-               ds->ports[i].ds = ds;
-       }
-
        return ds;
 }
 EXPORT_SYMBOL_GPL(dsa_switch_alloc);