Skip to content
Commit 79dde73c authored by Valentin Longchamp's avatar Valentin Longchamp Committed by David S. Miller
Browse files

net/ethernet/freescale: rework quiesce/activate for ucc_geth



ugeth_quiesce/activate are used to halt the controller when there is a
link change that requires to reconfigure the mac.

The previous implementation called netif_device_detach(). This however
causes the initial activation of the netdevice to fail precisely because
it's detached. For details, see [1].

A possible workaround was the revert of commit
net: linkwatch: add check for netdevice being present to linkwatch_do_dev
However, the check introduced in the above commit is correct and shall be
kept.

The netif_device_detach() is thus replaced with
netif_tx_stop_all_queues() that prevents any tranmission. This allows to
perform mac config change required by the link change, without detaching
the corresponding netdevice and thus not preventing its initial
activation.

[1] https://lists.openwall.net/netdev/2020/01/08/201

Signed-off-by: default avatarValentin Longchamp <valentin@longchamp.me>
Acked-by: default avatarMatteo Ghidoni <matteo.ghidoni@ch.abb.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d3e8e4c1
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment