diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2017-09-29 23:19:18 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-01 05:15:07 +0200 |
commit | 152402483ed75b167d5628d414e876ffa7a6d4c4 (patch) | |
tree | 19cbdba3c8720900a35bddf92da7d75052a9fff4 /net/dsa/dsa_priv.h | |
parent | net: dsa: use temporary dsa_device_ops variable (diff) | |
download | linux-152402483ed75b167d5628d414e876ffa7a6d4c4.tar.xz linux-152402483ed75b167d5628d414e876ffa7a6d4c4.zip |
net: dsa: add tagging ops to port
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>
Diffstat (limited to 'net/dsa/dsa_priv.h')
-rw-r--r-- | net/dsa/dsa_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/dsa_priv.h b/net/dsa/dsa_priv.h index d429505dc4e7..9397291bb3aa 100644 --- a/net/dsa/dsa_priv.h +++ b/net/dsa/dsa_priv.h @@ -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); |