• Thomas Gleixner's avatar
    ACPI/processor: Use cpu_hotplug_disable() instead of get_online_cpus() · fdaf0a51
    Thomas Gleixner authored
    Converting the hotplug locking, i.e. get_online_cpus(), to a percpu rwsem
    unearthed a circular lock dependency which was hidden from lockdep due to
    the lockdep annotation of get_online_cpus() which prevents lockdep from
    creating full dependency chains.
    
    CPU0                    CPU1
    ----                    ----
    lock((&wfc.work));
                             lock(cpu_hotplug_lock.rw_sem);
                             lock((&wfc.work));
    lock(cpu_hotplug_lock.rw_sem);
    
    This dependency is established via acpi_processor_start() which calls into
    the work queue code. And the work queue code establishes the reverse
    dependency.
    
    This is not a problem of get_online_cpus() recursion, it's a possible
    deadlock undetected by lockdep so far.
    
    The cure is to use cpu_hotplug_disable() instead of get_online_cpus() to
    protect the probing from acpi_processor_start().
    
    There is a side effect to this: cpu_hotplug_disable() makes a concurrent
    cpu hotplug attempt via the sysfs interfaces fail with -EBUSY, but that
    probing usually happens during the boot process where no interaction is
    possible. Any later invocations are infrequent enough and concurrent
    hotplug attempts are so unlikely that the danger of user space visible
    regressions is very close to zero. Anyway, thats preferrable over a real
    deadlock.
    Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
    Acked-by: default avatarIngo Molnar <mingo@kernel.org>
    Acked-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
    Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
    Cc: Peter Zijlstra <peterz@infradead.org>
    Cc: Sebastian Siewior <bigeasy@linutronix.de>
    Cc: Steven Rostedt <rostedt@goodmis.org>
    Cc: linux-acpi@vger.kernel.org
    Cc: Len Brown <lenb@kernel.org>
    Link: http://lkml.kernel.org/r/20170524081548.851588594@linutronix.de
    fdaf0a51
processor_driver.c 8.79 KB