Skip to content

Commit

Permalink
net: dsa: felix: access QSYS_TAG_CONFIG under tas_lock in vsc9959_sch…
Browse files Browse the repository at this point in the history
…ed_speed_set

[ Upstream commit a4bb481 ]

The read-modify-write of QSYS_TAG_CONFIG from vsc9959_sched_speed_set()
runs unlocked with respect to the other functions that access it, which
are vsc9959_tas_guard_bands_update(), vsc9959_qos_port_tas_set() and
vsc9959_tas_clock_adjust(). All the others are under ocelot->tas_lock,
so move the vsc9959_sched_speed_set() access under that lock as well, to
resolve the concurrency.

Fixes: 55a515b ("net: dsa: felix: drop oversized frames with tc-taprio instead of hanging the port")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
vladimiroltean authored and gregkh committed Sep 15, 2022
1 parent 27474e8 commit e502794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/dsa/ocelot/felix_vsc9959.c
Expand Up @@ -1664,13 +1664,13 @@ static void vsc9959_sched_speed_set(struct ocelot *ocelot, int port,
break;
}

mutex_lock(&ocelot->tas_lock);

ocelot_rmw_rix(ocelot,
QSYS_TAG_CONFIG_LINK_SPEED(tas_speed),
QSYS_TAG_CONFIG_LINK_SPEED_M,
QSYS_TAG_CONFIG, port);

mutex_lock(&ocelot->tas_lock);

if (ocelot_port->taprio)
vsc9959_tas_guard_bands_update(ocelot, port);

Expand Down

0 comments on commit e502794

Please sign in to comment.