OSDN Git Service

net: dsa: add tagging ops to port
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>
Fri, 29 Sep 2017 21:19:18 +0000 (17:19 -0400)
committerDavid S. Miller <davem@davemloft.net>
Sun, 1 Oct 2017 03:15:07 +0000 (04:15 +0100)
The DSA tagging protocol operations are specific to each CPU port,
thus the dsa_device_ops pointer belongs to the dsa_port structure.

>From now on assign a slave's xmit copy from its CPU port tagging
operations. This will ease the future support for multiple CPU ports.

Also keep the tag_ops at the beginning of the dsa_port structure so that
we ensure copies for hot path are in cacheline 1.

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

index 8dee216..4d1df2f 100644 (file)
@@ -175,6 +175,9 @@ struct dsa_mall_tc_entry {
 
 
 struct dsa_port {
+       /* CPU port tagging operations used by master or slave devices */
+       const struct dsa_device_ops *tag_ops;
+
        struct dsa_switch       *ds;
        unsigned int            index;
        const char              *name;
index 6a10c5c..9eac472 100644 (file)
@@ -522,6 +522,7 @@ static int dsa_cpu_parse(struct dsa_port *port, u32 index,
                return PTR_ERR(tag_ops);
        }
 
+       dst->cpu_dp->tag_ops = tag_ops;
        dst->tag_ops = tag_ops;
        dst->rcv = dst->tag_ops->rcv;
 
index d429505..9397291 100644 (file)
@@ -66,7 +66,7 @@ struct dsa_notifier_vlan_info {
 };
 
 struct dsa_slave_priv {
-       /* Copy of dp->ds->dst->tag_ops->xmit for faster access in hot path */
+       /* Copy of CPU port xmit for faster access in slave transmit hot path */
        struct sk_buff *        (*xmit)(struct sk_buff *skb,
                                        struct net_device *dev);
 
index 8e84901..4d37454 100644 (file)
@@ -152,6 +152,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds,
                if (IS_ERR(tag_ops))
                        return PTR_ERR(tag_ops);
 
+               dst->cpu_dp->tag_ops = tag_ops;
                dst->tag_ops = tag_ops;
                dst->rcv = dst->tag_ops->rcv;
        }
index bf8800d..4b634db 100644 (file)
@@ -1117,7 +1117,6 @@ int dsa_slave_resume(struct net_device *slave_dev)
 int dsa_slave_create(struct dsa_port *port, const char *name)
 {
        struct dsa_switch *ds = port->ds;
-       struct dsa_switch_tree *dst = ds->dst;
        struct net_device *master;
        struct net_device *slave_dev;
        struct dsa_slave_priv *p;
@@ -1162,7 +1161,7 @@ int dsa_slave_create(struct dsa_port *port, const char *name)
        }
        p->dp = port;
        INIT_LIST_HEAD(&p->mall_tc_list);
-       p->xmit = dst->tag_ops->xmit;
+       p->xmit = cpu_dp->tag_ops->xmit;
 
        p->old_pause = -1;
        p->old_link = -1;