mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
net: dsa: Use conduit and user terms
Use more inclusive terms throughout the DSA subsystem by moving away from "master" which is replaced by "conduit" and "slave" which is replaced by "user". No functional changes. Acked-by: Rob Herring <robh@kernel.org> Acked-by: Stephen Hemminger <stephen@networkplumber.org> Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com> Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com> Link: https://lore.kernel.org/r/20231023181729.1191071-2-florian.fainelli@broadcom.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
00e984cb98
commit
6ca80638b9
@@ -1170,7 +1170,7 @@ int ksz9477_tc_cbs_set_cinc(struct ksz_device *dev, int port, u32 val)
|
||||
void ksz9477_hsr_join(struct dsa_switch *ds, int port, struct net_device *hsr)
|
||||
{
|
||||
struct ksz_device *dev = ds->priv;
|
||||
struct net_device *slave;
|
||||
struct net_device *user;
|
||||
struct dsa_port *hsr_dp;
|
||||
u8 data, hsr_ports = 0;
|
||||
|
||||
@@ -1202,8 +1202,8 @@ void ksz9477_hsr_join(struct dsa_switch *ds, int port, struct net_device *hsr)
|
||||
ksz_port_cfg(dev, port, REG_PORT_LUE_CTRL, PORT_SRC_ADDR_FILTER, true);
|
||||
|
||||
/* Setup HW supported features for lan HSR ports */
|
||||
slave = dsa_to_port(ds, port)->slave;
|
||||
slave->features |= KSZ9477_SUPPORTED_HSR_FEATURES;
|
||||
user = dsa_to_port(ds, port)->user;
|
||||
user->features |= KSZ9477_SUPPORTED_HSR_FEATURES;
|
||||
}
|
||||
|
||||
void ksz9477_hsr_leave(struct dsa_switch *ds, int port, struct net_device *hsr)
|
||||
|
||||
@@ -1945,14 +1945,14 @@ static int ksz_irq_phy_setup(struct ksz_device *dev)
|
||||
ret = irq;
|
||||
goto out;
|
||||
}
|
||||
ds->slave_mii_bus->irq[phy] = irq;
|
||||
ds->user_mii_bus->irq[phy] = irq;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
out:
|
||||
while (phy--)
|
||||
if (BIT(phy) & ds->phys_mii_mask)
|
||||
irq_dispose_mapping(ds->slave_mii_bus->irq[phy]);
|
||||
irq_dispose_mapping(ds->user_mii_bus->irq[phy]);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@@ -1964,7 +1964,7 @@ static void ksz_irq_phy_free(struct ksz_device *dev)
|
||||
|
||||
for (phy = 0; phy < KSZ_MAX_NUM_PORTS; phy++)
|
||||
if (BIT(phy) & ds->phys_mii_mask)
|
||||
irq_dispose_mapping(ds->slave_mii_bus->irq[phy]);
|
||||
irq_dispose_mapping(ds->user_mii_bus->irq[phy]);
|
||||
}
|
||||
|
||||
static int ksz_mdio_register(struct ksz_device *dev)
|
||||
@@ -1987,12 +1987,12 @@ static int ksz_mdio_register(struct ksz_device *dev)
|
||||
bus->priv = dev;
|
||||
bus->read = ksz_sw_mdio_read;
|
||||
bus->write = ksz_sw_mdio_write;
|
||||
bus->name = "ksz slave smi";
|
||||
bus->name = "ksz user smi";
|
||||
snprintf(bus->id, MII_BUS_ID_SIZE, "SMI-%d", ds->index);
|
||||
bus->parent = ds->dev;
|
||||
bus->phy_mask = ~ds->phys_mii_mask;
|
||||
|
||||
ds->slave_mii_bus = bus;
|
||||
ds->user_mii_bus = bus;
|
||||
|
||||
if (dev->irq > 0) {
|
||||
ret = ksz_irq_phy_setup(dev);
|
||||
@@ -2344,7 +2344,7 @@ static void ksz_mib_read_work(struct work_struct *work)
|
||||
if (!p->read) {
|
||||
const struct dsa_port *dp = dsa_to_port(dev->ds, i);
|
||||
|
||||
if (!netif_carrier_ok(dp->slave))
|
||||
if (!netif_carrier_ok(dp->user))
|
||||
mib->cnt_ptr = dev->info->reg_mib_cnt;
|
||||
}
|
||||
port_r_cnt(dev, i);
|
||||
@@ -2464,7 +2464,7 @@ static void ksz_get_ethtool_stats(struct dsa_switch *ds, int port,
|
||||
mutex_lock(&mib->cnt_mutex);
|
||||
|
||||
/* Only read dropped counters if no link. */
|
||||
if (!netif_carrier_ok(dp->slave))
|
||||
if (!netif_carrier_ok(dp->user))
|
||||
mib->cnt_ptr = dev->info->reg_mib_cnt;
|
||||
port_r_cnt(dev, port);
|
||||
memcpy(buf, mib->counters, dev->info->mib_cnt * sizeof(u64));
|
||||
@@ -2574,7 +2574,7 @@ static int ksz_port_setup(struct dsa_switch *ds, int port)
|
||||
if (!dsa_is_user_port(ds, port))
|
||||
return 0;
|
||||
|
||||
/* setup slave port */
|
||||
/* setup user port */
|
||||
dev->dev_ops->port_setup(dev, port, false);
|
||||
|
||||
/* port_stp_state_set() will be called after to enable the port so
|
||||
@@ -3567,8 +3567,8 @@ static int ksz_port_set_mac_address(struct dsa_switch *ds, int port,
|
||||
static int ksz_switch_macaddr_get(struct dsa_switch *ds, int port,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct net_device *slave = dsa_to_port(ds, port)->slave;
|
||||
const unsigned char *addr = slave->dev_addr;
|
||||
struct net_device *user = dsa_to_port(ds, port)->user;
|
||||
const unsigned char *addr = user->dev_addr;
|
||||
struct ksz_switch_macaddr *switch_macaddr;
|
||||
struct ksz_device *dev = ds->priv;
|
||||
const u16 *regs = dev->info->regs;
|
||||
|
||||
@@ -557,7 +557,7 @@ static void ksz_ptp_txtstamp_skb(struct ksz_device *dev,
|
||||
struct skb_shared_hwtstamps hwtstamps = {};
|
||||
int ret;
|
||||
|
||||
/* timeout must include DSA master to transmit data, tstamp latency,
|
||||
/* timeout must include DSA conduit to transmit data, tstamp latency,
|
||||
* IRQ latency and time for reading the time stamp.
|
||||
*/
|
||||
ret = wait_for_completion_timeout(&prt->tstamp_msg_comp,
|
||||
|
||||
Reference in New Issue
Block a user