]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: dsa: remove ds->rtable
authorVivien Didelot <vivien.didelot@gmail.com>
Thu, 31 Oct 2019 02:09:14 +0000 (22:09 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 31 Oct 2019 21:26:38 +0000 (14:26 -0700)
Drivers do not use the ds->rtable static arrays anymore, get rid of it.

Signed-off-by: Vivien Didelot <vivien.didelot@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/dsa.h
net/dsa/dsa2.c

index 3d7366d634d810333a81624d7e1467b752d8c3de..b46222adb5c208ebd3659b837fe4589c7560bbee 100644 (file)
@@ -258,13 +258,6 @@ struct dsa_switch {
         */
        const struct dsa_switch_ops     *ops;
 
-       /*
-        * An array of which element [a] indicates which port on this
-        * switch should be used to send packets to that are destined
-        * for switch a. Can be NULL if there is only one switch chip.
-        */
-       s8              rtable[DSA_MAX_SWITCHES];
-
        /*
         * Slave mii_bus and devices for the individual ports.
         */
index 222d7dbfcfea6a6be68359ac5336c1725e39575c..efd7453f308ef53e24ba59cb4ee07f6c0726a803 100644 (file)
@@ -181,10 +181,6 @@ static bool dsa_switch_setup_routing_table(struct dsa_switch *ds)
        struct dsa_switch_tree *dst = ds->dst;
        bool complete = true;
        struct dsa_port *dp;
-       int i;
-
-       for (i = 0; i < DSA_MAX_SWITCHES; i++)
-               ds->rtable[i] = DSA_RTABLE_NONE;
 
        list_for_each_entry(dp, &dst->ports, list) {
                if (dp->ds == ds && dsa_port_is_dsa(dp)) {