net: mvneta: Add missing hotplug notifier transition
authorAnna-Maria Gleixner <anna-maria@linutronix.de>
Fri, 11 Mar 2016 09:10:23 +0000 (10:10 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 14 Mar 2016 19:22:10 +0000 (15:22 -0400)
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>
drivers/net/ethernet/marvell/mvneta.c

index 3d8e7d357ec925a6f773bd1706692082679a80de..be92668faf3e473454f5f7f155d523ff25f6da2d 100644 (file)
@@ -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.
This page took 0.026998 seconds and 5 git commands to generate.