Skip to content

Commit

Permalink
net: dsa: use cpu_switch instead of ds[0]
Browse files Browse the repository at this point in the history
Now that the DSA Ethernet switches are true Linux devices, the CPU
switch is not necessarily the first one. If its address is higher than
the second switch on the same MDIO bus, its index will be 1, not 0.

Avoid any confusion by using dst->cpu_switch instead of dst->ds[0].

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Vivien Didelot authored and David S. Miller committed Jan 18, 2017
1 parent b22de49 commit 9520ed8
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion net/dsa/dsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ static void dsa_remove_dst(struct dsa_switch_tree *dst)
dsa_switch_destroy(ds);
}

dsa_cpu_port_ethtool_restore(dst->ds[0]);
dsa_cpu_port_ethtool_restore(dst->cpu_switch);

dev_put(dst->master_netdev);
}
Expand Down
8 changes: 4 additions & 4 deletions net/dsa/dsa2.c
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ static int dsa_dst_apply(struct dsa_switch_tree *dst)
return err;
}

if (dst->ds[0]) {
err = dsa_cpu_port_ethtool_setup(dst->ds[0]);
if (dst->cpu_switch) {
err = dsa_cpu_port_ethtool_setup(dst->cpu_switch);
if (err)
return err;
}
Expand Down Expand Up @@ -418,8 +418,8 @@ static void dsa_dst_unapply(struct dsa_switch_tree *dst)
dsa_ds_unapply(dst, ds);
}

if (dst->ds[0])
dsa_cpu_port_ethtool_restore(dst->ds[0]);
if (dst->cpu_switch)
dsa_cpu_port_ethtool_restore(dst->cpu_switch);

pr_info("DSA: tree %d unapplied\n", dst->tree);
dst->applied = false;
Expand Down
6 changes: 3 additions & 3 deletions net/dsa/slave.c
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev,
uint64_t *data)
{
struct dsa_switch_tree *dst = dev->dsa_ptr;
struct dsa_switch *ds = dst->ds[0];
struct dsa_switch *ds = dst->cpu_switch;
s8 cpu_port = dst->cpu_port;
int count = 0;

Expand All @@ -798,7 +798,7 @@ static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev,
static int dsa_cpu_port_get_sset_count(struct net_device *dev, int sset)
{
struct dsa_switch_tree *dst = dev->dsa_ptr;
struct dsa_switch *ds = dst->ds[0];
struct dsa_switch *ds = dst->cpu_switch;
int count = 0;

if (dst->master_ethtool_ops.get_sset_count)
Expand All @@ -814,7 +814,7 @@ static void dsa_cpu_port_get_strings(struct net_device *dev,
uint32_t stringset, uint8_t *data)
{
struct dsa_switch_tree *dst = dev->dsa_ptr;
struct dsa_switch *ds = dst->ds[0];
struct dsa_switch *ds = dst->cpu_switch;
s8 cpu_port = dst->cpu_port;
int len = ETH_GSTRING_LEN;
int mcount = 0, count;
Expand Down
2 changes: 1 addition & 1 deletion net/dsa/tag_brcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static int brcm_tag_rcv(struct sk_buff *skb, struct net_device *dev,
if (unlikely(dst == NULL))
goto out_drop;

ds = dst->ds[0];
ds = dst->cpu_switch;

skb = skb_unshare(skb, GFP_ATOMIC);
if (skb == NULL)
Expand Down
2 changes: 1 addition & 1 deletion net/dsa/tag_qca.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static int qca_tag_rcv(struct sk_buff *skb, struct net_device *dev,
/* This protocol doesn't support cascading multiple switches so it's
* safe to assume the switch is first in the tree
*/
ds = dst->ds[0];
ds = dst->cpu_switch;
if (!ds)
goto out_drop;

Expand Down
2 changes: 1 addition & 1 deletion net/dsa/tag_trailer.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static int trailer_rcv(struct sk_buff *skb, struct net_device *dev,

if (unlikely(dst == NULL))
goto out_drop;
ds = dst->ds[0];
ds = dst->cpu_switch;

skb = skb_unshare(skb, GFP_ATOMIC);
if (skb == NULL)
Expand Down

0 comments on commit 9520ed8

Please sign in to comment.