diff options
author | Anna-Maria Gleixner <anna-maria@linutronix.de> | 2016-03-11 10:10:23 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-14 15:22:10 -0400 |
commit | 0df83e7a6b58674683677f572e4e2361b2a69eea (patch) | |
tree | f88224e1ee7b564c37030c68bc66730c9533591c /drivers | |
parent | 7c82a7b998c6c6a2cb8a42aeb1d5d3450e51afb3 (diff) | |
download | linux-stable-0df83e7a6b58674683677f572e4e2361b2a69eea.tar.gz linux-stable-0df83e7a6b58674683677f572e4e2361b2a69eea.tar.bz2 linux-stable-0df83e7a6b58674683677f572e4e2361b2a69eea.zip |
net: mvneta: Add missing hotplug notifier transition
The mvneta_percpu_notifier() hotplug callback lacks handling of the
CPU_DOWN_FAILED case. That means, if CPU_DOWN_PREPARE failes, the
driver is not well configured on the CPU.
Add handling for CPU_DOWN_FAILED[_FROZEN] hotplug notifier transition
to setup the driver.
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: netdev@vger.kernel.org
Signed-off-by: Anna-Maria Gleixner <anna-maria@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/marvell/mvneta.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c index 3d8e7d357ec9..be92668faf3e 100644 --- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -3328,6 +3328,8 @@ static int mvneta_percpu_notifier(struct notifier_block *nfb, switch (action) { case CPU_ONLINE: case CPU_ONLINE_FROZEN: + case CPU_DOWN_FAILED: + case CPU_DOWN_FAILED_FROZEN: spin_lock(&pp->lock); /* Configuring the driver for a new CPU while the * driver is stopping is racy, so just avoid it. |