Merge branch 'dsa-mv88e6xxx-fix-hardware-bridging'
Vivien Didelot says: ==================== net: dsa: mv88e6xxx: fix hardware bridging DSA and its drivers currently hook the NETDEV_CHANGEUPPER net_device event in order to configure the VLAN map of every port. This VLAN map is a feature of these switch chips to hardcode and restrict which output ports a given input port can egress frames to. A Linux bridge is a simple untagged VLAN propagated by the bridge code itself. With a proper 802.1Q support, a driver does not need this hook anymore, and will simply program the related VLAN object. This patchset improves the hardware bridging code in the mv88e6xxx driver with a strict 802.1Q mode. Ideally, the equivalent must be done for Broadcom Starfighter 2 and Rocker, before completely getting rid of this hook. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
f83665d0c4
5 changed files with 26 additions and 203 deletions
|
@ -113,8 +113,6 @@ struct dsa_switch_driver mv88e6171_switch_driver = {
|
||||||
#endif
|
#endif
|
||||||
.get_regs_len = mv88e6xxx_get_regs_len,
|
.get_regs_len = mv88e6xxx_get_regs_len,
|
||||||
.get_regs = mv88e6xxx_get_regs,
|
.get_regs = mv88e6xxx_get_regs,
|
||||||
.port_join_bridge = mv88e6xxx_join_bridge,
|
|
||||||
.port_leave_bridge = mv88e6xxx_leave_bridge,
|
|
||||||
.port_stp_update = mv88e6xxx_port_stp_update,
|
.port_stp_update = mv88e6xxx_port_stp_update,
|
||||||
.port_pvid_get = mv88e6xxx_port_pvid_get,
|
.port_pvid_get = mv88e6xxx_port_pvid_get,
|
||||||
.port_pvid_set = mv88e6xxx_port_pvid_set,
|
.port_pvid_set = mv88e6xxx_port_pvid_set,
|
||||||
|
|
|
@ -340,8 +340,6 @@ struct dsa_switch_driver mv88e6352_switch_driver = {
|
||||||
.set_eeprom = mv88e6352_set_eeprom,
|
.set_eeprom = mv88e6352_set_eeprom,
|
||||||
.get_regs_len = mv88e6xxx_get_regs_len,
|
.get_regs_len = mv88e6xxx_get_regs_len,
|
||||||
.get_regs = mv88e6xxx_get_regs,
|
.get_regs = mv88e6xxx_get_regs,
|
||||||
.port_join_bridge = mv88e6xxx_join_bridge,
|
|
||||||
.port_leave_bridge = mv88e6xxx_leave_bridge,
|
|
||||||
.port_stp_update = mv88e6xxx_port_stp_update,
|
.port_stp_update = mv88e6xxx_port_stp_update,
|
||||||
.port_pvid_get = mv88e6xxx_port_pvid_get,
|
.port_pvid_get = mv88e6xxx_port_pvid_get,
|
||||||
.port_pvid_set = mv88e6xxx_port_pvid_set,
|
.port_pvid_set = mv88e6xxx_port_pvid_set,
|
||||||
|
|
|
@ -1046,11 +1046,6 @@ static int _mv88e6xxx_atu_flush(struct dsa_switch *ds, u16 fid, bool static_too)
|
||||||
return _mv88e6xxx_atu_flush_move(ds, &entry, static_too);
|
return _mv88e6xxx_atu_flush_move(ds, &entry, static_too);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int _mv88e6xxx_flush_fid(struct dsa_switch *ds, int fid)
|
|
||||||
{
|
|
||||||
return _mv88e6xxx_atu_flush(ds, fid, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int _mv88e6xxx_atu_move(struct dsa_switch *ds, u16 fid, int from_port,
|
static int _mv88e6xxx_atu_move(struct dsa_switch *ds, u16 fid, int from_port,
|
||||||
int to_port, bool static_too)
|
int to_port, bool static_too)
|
||||||
{
|
{
|
||||||
|
@ -1112,132 +1107,23 @@ abort:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Must be called with smi lock held */
|
static int _mv88e6xxx_port_vlan_map_set(struct dsa_switch *ds, int port,
|
||||||
static int _mv88e6xxx_update_port_config(struct dsa_switch *ds, int port)
|
u16 output_ports)
|
||||||
{
|
{
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
||||||
u8 fid = ps->fid[port];
|
const u16 mask = (1 << ps->num_ports) - 1;
|
||||||
u16 reg = fid << 12;
|
int reg;
|
||||||
|
|
||||||
if (dsa_is_cpu_port(ds, port))
|
reg = _mv88e6xxx_reg_read(ds, REG_PORT(port), PORT_BASE_VLAN);
|
||||||
reg |= ds->phys_port_mask;
|
if (reg < 0)
|
||||||
else
|
return reg;
|
||||||
reg |= (ps->bridge_mask[fid] |
|
|
||||||
(1 << dsa_upstream_port(ds))) & ~(1 << port);
|
reg &= ~mask;
|
||||||
|
reg |= output_ports & mask;
|
||||||
|
|
||||||
return _mv88e6xxx_reg_write(ds, REG_PORT(port), PORT_BASE_VLAN, reg);
|
return _mv88e6xxx_reg_write(ds, REG_PORT(port), PORT_BASE_VLAN, reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Must be called with smi lock held */
|
|
||||||
static int _mv88e6xxx_update_bridge_config(struct dsa_switch *ds, int fid)
|
|
||||||
{
|
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
|
||||||
int port;
|
|
||||||
u32 mask;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
mask = ds->phys_port_mask;
|
|
||||||
while (mask) {
|
|
||||||
port = __ffs(mask);
|
|
||||||
mask &= ~(1 << port);
|
|
||||||
if (ps->fid[port] != fid)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
ret = _mv88e6xxx_update_port_config(ds, port);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return _mv88e6xxx_flush_fid(ds, fid);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bridge handling functions */
|
|
||||||
|
|
||||||
int mv88e6xxx_join_bridge(struct dsa_switch *ds, int port, u32 br_port_mask)
|
|
||||||
{
|
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
|
||||||
int ret = 0;
|
|
||||||
u32 nmask;
|
|
||||||
int fid;
|
|
||||||
|
|
||||||
/* If the bridge group is not empty, join that group.
|
|
||||||
* Otherwise create a new group.
|
|
||||||
*/
|
|
||||||
fid = ps->fid[port];
|
|
||||||
nmask = br_port_mask & ~(1 << port);
|
|
||||||
if (nmask)
|
|
||||||
fid = ps->fid[__ffs(nmask)];
|
|
||||||
|
|
||||||
nmask = ps->bridge_mask[fid] | (1 << port);
|
|
||||||
if (nmask != br_port_mask) {
|
|
||||||
netdev_err(ds->ports[port],
|
|
||||||
"join: Bridge port mask mismatch fid=%d mask=0x%x expected 0x%x\n",
|
|
||||||
fid, br_port_mask, nmask);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
mutex_lock(&ps->smi_mutex);
|
|
||||||
|
|
||||||
ps->bridge_mask[fid] = br_port_mask;
|
|
||||||
|
|
||||||
if (fid != ps->fid[port]) {
|
|
||||||
clear_bit(ps->fid[port], ps->fid_bitmap);
|
|
||||||
ps->fid[port] = fid;
|
|
||||||
ret = _mv88e6xxx_update_bridge_config(ds, fid);
|
|
||||||
}
|
|
||||||
|
|
||||||
mutex_unlock(&ps->smi_mutex);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
int mv88e6xxx_leave_bridge(struct dsa_switch *ds, int port, u32 br_port_mask)
|
|
||||||
{
|
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
|
||||||
u8 fid, newfid;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
fid = ps->fid[port];
|
|
||||||
|
|
||||||
if (ps->bridge_mask[fid] != br_port_mask) {
|
|
||||||
netdev_err(ds->ports[port],
|
|
||||||
"leave: Bridge port mask mismatch fid=%d mask=0x%x expected 0x%x\n",
|
|
||||||
fid, br_port_mask, ps->bridge_mask[fid]);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If the port was the last port of a bridge, we are done.
|
|
||||||
* Otherwise assign a new fid to the port, and fix up
|
|
||||||
* the bridge configuration.
|
|
||||||
*/
|
|
||||||
if (br_port_mask == (1 << port))
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
mutex_lock(&ps->smi_mutex);
|
|
||||||
|
|
||||||
newfid = find_next_zero_bit(ps->fid_bitmap, VLAN_N_VID, 1);
|
|
||||||
if (unlikely(newfid > ps->num_ports)) {
|
|
||||||
netdev_err(ds->ports[port], "all first %d FIDs are used\n",
|
|
||||||
ps->num_ports);
|
|
||||||
ret = -ENOSPC;
|
|
||||||
goto unlock;
|
|
||||||
}
|
|
||||||
|
|
||||||
ps->fid[port] = newfid;
|
|
||||||
set_bit(newfid, ps->fid_bitmap);
|
|
||||||
ps->bridge_mask[fid] &= ~(1 << port);
|
|
||||||
ps->bridge_mask[newfid] = 1 << port;
|
|
||||||
|
|
||||||
ret = _mv88e6xxx_update_bridge_config(ds, fid);
|
|
||||||
if (!ret)
|
|
||||||
ret = _mv88e6xxx_update_bridge_config(ds, newfid);
|
|
||||||
|
|
||||||
unlock:
|
|
||||||
mutex_unlock(&ps->smi_mutex);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
int mv88e6xxx_port_stp_update(struct dsa_switch *ds, int port, u8 state)
|
int mv88e6xxx_port_stp_update(struct dsa_switch *ds, int port, u8 state)
|
||||||
{
|
{
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
||||||
|
@ -1547,6 +1433,7 @@ static int _mv88e6xxx_vlan_init(struct dsa_switch *ds, u16 vid,
|
||||||
struct mv88e6xxx_vtu_stu_entry vlan = {
|
struct mv88e6xxx_vtu_stu_entry vlan = {
|
||||||
.valid = true,
|
.valid = true,
|
||||||
.vid = vid,
|
.vid = vid,
|
||||||
|
.fid = vid, /* We use one FID per VLAN */
|
||||||
};
|
};
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -1580,22 +1467,10 @@ static int _mv88e6xxx_vlan_init(struct dsa_switch *ds, u16 vid,
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Non-bridged ports and bridge groups use FIDs from 1 to
|
|
||||||
* num_ports; VLANs use FIDs from num_ports+1 to 4095.
|
|
||||||
*/
|
|
||||||
vlan.fid = find_next_zero_bit(ps->fid_bitmap, VLAN_N_VID,
|
|
||||||
ps->num_ports + 1);
|
|
||||||
if (unlikely(vlan.fid == VLAN_N_VID)) {
|
|
||||||
pr_err("no more FID available for VLAN %d\n", vid);
|
|
||||||
return -ENOSPC;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Clear all MAC addresses from the new database */
|
/* Clear all MAC addresses from the new database */
|
||||||
err = _mv88e6xxx_atu_flush(ds, vlan.fid, true);
|
err = _mv88e6xxx_atu_flush(ds, vlan.fid, true);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
set_bit(vlan.fid, ps->fid_bitmap);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
*entry = vlan;
|
*entry = vlan;
|
||||||
|
@ -1635,7 +1510,6 @@ int mv88e6xxx_port_vlan_del(struct dsa_switch *ds, int port, u16 vid)
|
||||||
{
|
{
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
||||||
struct mv88e6xxx_vtu_stu_entry vlan;
|
struct mv88e6xxx_vtu_stu_entry vlan;
|
||||||
bool keep = false;
|
|
||||||
int i, err;
|
int i, err;
|
||||||
|
|
||||||
mutex_lock(&ps->smi_mutex);
|
mutex_lock(&ps->smi_mutex);
|
||||||
|
@ -1653,28 +1527,22 @@ int mv88e6xxx_port_vlan_del(struct dsa_switch *ds, int port, u16 vid)
|
||||||
vlan.data[port] = GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER;
|
vlan.data[port] = GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER;
|
||||||
|
|
||||||
/* keep the VLAN unless all ports are excluded */
|
/* keep the VLAN unless all ports are excluded */
|
||||||
|
vlan.valid = false;
|
||||||
for (i = 0; i < ps->num_ports; ++i) {
|
for (i = 0; i < ps->num_ports; ++i) {
|
||||||
if (dsa_is_cpu_port(ds, i))
|
if (dsa_is_cpu_port(ds, i))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (vlan.data[i] != GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER) {
|
if (vlan.data[i] != GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER) {
|
||||||
keep = true;
|
vlan.valid = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vlan.valid = keep;
|
|
||||||
err = _mv88e6xxx_vtu_loadpurge(ds, &vlan);
|
err = _mv88e6xxx_vtu_loadpurge(ds, &vlan);
|
||||||
if (err)
|
if (err)
|
||||||
goto unlock;
|
goto unlock;
|
||||||
|
|
||||||
err = _mv88e6xxx_atu_remove(ds, vlan.fid, port, false);
|
err = _mv88e6xxx_atu_remove(ds, vlan.fid, port, false);
|
||||||
if (err)
|
|
||||||
goto unlock;
|
|
||||||
|
|
||||||
if (!keep)
|
|
||||||
clear_bit(vlan.fid, ps->fid_bitmap);
|
|
||||||
|
|
||||||
unlock:
|
unlock:
|
||||||
mutex_unlock(&ps->smi_mutex);
|
mutex_unlock(&ps->smi_mutex);
|
||||||
|
|
||||||
|
@ -1801,37 +1669,13 @@ static int _mv88e6xxx_atu_load(struct dsa_switch *ds,
|
||||||
return _mv88e6xxx_atu_cmd(ds, GLOBAL_ATU_OP_LOAD_DB);
|
return _mv88e6xxx_atu_cmd(ds, GLOBAL_ATU_OP_LOAD_DB);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int _mv88e6xxx_port_vid_to_fid(struct dsa_switch *ds, int port, u16 vid)
|
|
||||||
{
|
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
|
||||||
struct mv88e6xxx_vtu_stu_entry vlan;
|
|
||||||
int err;
|
|
||||||
|
|
||||||
if (vid == 0)
|
|
||||||
return ps->fid[port];
|
|
||||||
|
|
||||||
err = _mv88e6xxx_port_vtu_getnext(ds, port, vid - 1, &vlan);
|
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
|
|
||||||
if (vlan.vid == vid)
|
|
||||||
return vlan.fid;
|
|
||||||
|
|
||||||
return -ENOENT;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int _mv88e6xxx_port_fdb_load(struct dsa_switch *ds, int port,
|
static int _mv88e6xxx_port_fdb_load(struct dsa_switch *ds, int port,
|
||||||
const unsigned char *addr, u16 vid,
|
const unsigned char *addr, u16 vid,
|
||||||
u8 state)
|
u8 state)
|
||||||
{
|
{
|
||||||
struct mv88e6xxx_atu_entry entry = { 0 };
|
struct mv88e6xxx_atu_entry entry = { 0 };
|
||||||
int ret;
|
|
||||||
|
|
||||||
ret = _mv88e6xxx_port_vid_to_fid(ds, port, vid);
|
entry.fid = vid; /* We use one FID per VLAN */
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
entry.fid = ret;
|
|
||||||
entry.state = state;
|
entry.state = state;
|
||||||
ether_addr_copy(entry.mac, addr);
|
ether_addr_copy(entry.mac, addr);
|
||||||
if (state != GLOBAL_ATU_DATA_STATE_UNUSED) {
|
if (state != GLOBAL_ATU_DATA_STATE_UNUSED) {
|
||||||
|
@ -1846,6 +1690,10 @@ int mv88e6xxx_port_fdb_prepare(struct dsa_switch *ds, int port,
|
||||||
const struct switchdev_obj_port_fdb *fdb,
|
const struct switchdev_obj_port_fdb *fdb,
|
||||||
struct switchdev_trans *trans)
|
struct switchdev_trans *trans)
|
||||||
{
|
{
|
||||||
|
/* We don't use per-port FDB */
|
||||||
|
if (fdb->vid == 0)
|
||||||
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
/* We don't need any dynamic resource from the kernel (yet),
|
/* We don't need any dynamic resource from the kernel (yet),
|
||||||
* so skip the prepare phase.
|
* so skip the prepare phase.
|
||||||
*/
|
*/
|
||||||
|
@ -1943,16 +1791,11 @@ int mv88e6xxx_port_fdb_getnext(struct dsa_switch *ds, int port,
|
||||||
{
|
{
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
||||||
struct mv88e6xxx_atu_entry next;
|
struct mv88e6xxx_atu_entry next;
|
||||||
u16 fid;
|
u16 fid = *vid; /* We use one FID per VLAN */
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
mutex_lock(&ps->smi_mutex);
|
mutex_lock(&ps->smi_mutex);
|
||||||
|
|
||||||
ret = _mv88e6xxx_port_vid_to_fid(ds, port, *vid);
|
|
||||||
if (ret < 0)
|
|
||||||
goto unlock;
|
|
||||||
fid = ret;
|
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (is_broadcast_ether_addr(addr)) {
|
if (is_broadcast_ether_addr(addr)) {
|
||||||
struct mv88e6xxx_vtu_stu_entry vtu;
|
struct mv88e6xxx_vtu_stu_entry vtu;
|
||||||
|
@ -2003,7 +1846,7 @@ static void mv88e6xxx_bridge_work(struct work_struct *work)
|
||||||
static int mv88e6xxx_setup_port(struct dsa_switch *ds, int port)
|
static int mv88e6xxx_setup_port(struct dsa_switch *ds, int port)
|
||||||
{
|
{
|
||||||
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
struct mv88e6xxx_priv_state *ps = ds_to_priv(ds);
|
||||||
int ret, fid;
|
int ret;
|
||||||
u16 reg;
|
u16 reg;
|
||||||
|
|
||||||
mutex_lock(&ps->smi_mutex);
|
mutex_lock(&ps->smi_mutex);
|
||||||
|
@ -2129,7 +1972,7 @@ static int mv88e6xxx_setup_port(struct dsa_switch *ds, int port)
|
||||||
reg |= PORT_CONTROL_2_FORWARD_UNKNOWN;
|
reg |= PORT_CONTROL_2_FORWARD_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
reg |= PORT_CONTROL_2_8021Q_FALLBACK;
|
reg |= PORT_CONTROL_2_8021Q_SECURE;
|
||||||
|
|
||||||
if (reg) {
|
if (reg) {
|
||||||
ret = _mv88e6xxx_reg_write(ds, REG_PORT(port),
|
ret = _mv88e6xxx_reg_write(ds, REG_PORT(port),
|
||||||
|
@ -2222,19 +2065,11 @@ static int mv88e6xxx_setup_port(struct dsa_switch *ds, int port)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto abort;
|
goto abort;
|
||||||
|
|
||||||
/* Port based VLAN map: give each port its own address
|
/* Port based VLAN map: do not give each port its own address
|
||||||
* database, allow the CPU port to talk to each of the 'real'
|
* database, and allow every port to egress frames on all other ports.
|
||||||
* ports, and allow each of the 'real' ports to only talk to
|
|
||||||
* the upstream port.
|
|
||||||
*/
|
*/
|
||||||
fid = port + 1;
|
reg = BIT(ps->num_ports) - 1; /* all ports */
|
||||||
ps->fid[port] = fid;
|
ret = _mv88e6xxx_port_vlan_map_set(ds, port, reg & ~port);
|
||||||
set_bit(fid, ps->fid_bitmap);
|
|
||||||
|
|
||||||
if (!dsa_is_cpu_port(ds, port))
|
|
||||||
ps->bridge_mask[fid] = 1 << port;
|
|
||||||
|
|
||||||
ret = _mv88e6xxx_update_port_config(ds, port);
|
|
||||||
if (ret)
|
if (ret)
|
||||||
goto abort;
|
goto abort;
|
||||||
|
|
||||||
|
|
|
@ -402,12 +402,6 @@ struct mv88e6xxx_priv_state {
|
||||||
int id; /* switch product id */
|
int id; /* switch product id */
|
||||||
int num_ports; /* number of switch ports */
|
int num_ports; /* number of switch ports */
|
||||||
|
|
||||||
/* hw bridging */
|
|
||||||
|
|
||||||
DECLARE_BITMAP(fid_bitmap, VLAN_N_VID); /* FIDs 1 to 4095 available */
|
|
||||||
u16 fid[DSA_MAX_PORTS]; /* per (non-bridged) port FID */
|
|
||||||
u16 bridge_mask[DSA_MAX_PORTS]; /* br groups (indexed by FID) */
|
|
||||||
|
|
||||||
unsigned long port_state_update_mask;
|
unsigned long port_state_update_mask;
|
||||||
u8 port_state[DSA_MAX_PORTS];
|
u8 port_state[DSA_MAX_PORTS];
|
||||||
|
|
||||||
|
@ -464,8 +458,6 @@ int mv88e6xxx_phy_write_indirect(struct dsa_switch *ds, int addr, int regnum,
|
||||||
int mv88e6xxx_get_eee(struct dsa_switch *ds, int port, struct ethtool_eee *e);
|
int mv88e6xxx_get_eee(struct dsa_switch *ds, int port, struct ethtool_eee *e);
|
||||||
int mv88e6xxx_set_eee(struct dsa_switch *ds, int port,
|
int mv88e6xxx_set_eee(struct dsa_switch *ds, int port,
|
||||||
struct phy_device *phydev, struct ethtool_eee *e);
|
struct phy_device *phydev, struct ethtool_eee *e);
|
||||||
int mv88e6xxx_join_bridge(struct dsa_switch *ds, int port, u32 br_port_mask);
|
|
||||||
int mv88e6xxx_leave_bridge(struct dsa_switch *ds, int port, u32 br_port_mask);
|
|
||||||
int mv88e6xxx_port_stp_update(struct dsa_switch *ds, int port, u8 state);
|
int mv88e6xxx_port_stp_update(struct dsa_switch *ds, int port, u8 state);
|
||||||
int mv88e6xxx_port_pvid_get(struct dsa_switch *ds, int port, u16 *vid);
|
int mv88e6xxx_port_pvid_get(struct dsa_switch *ds, int port, u16 *vid);
|
||||||
int mv88e6xxx_port_pvid_set(struct dsa_switch *ds, int port, u16 vid);
|
int mv88e6xxx_port_pvid_set(struct dsa_switch *ds, int port, u16 vid);
|
||||||
|
|
|
@ -1276,7 +1276,7 @@ int dsa_slave_netdevice_event(struct notifier_block *unused,
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
err = dsa_slave_master_changed(dev);
|
err = dsa_slave_master_changed(dev);
|
||||||
if (err)
|
if (err && err != -EOPNOTSUPP)
|
||||||
netdev_warn(dev, "failed to reflect master change\n");
|
netdev_warn(dev, "failed to reflect master change\n");
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue