[PATCH v11 7/7] arm: pmu: Add PMU definitions for cores not initially online
From: Jeremy Linton <hidden>
Date: 2016-12-06 17:56:56
Also in:
linux-acpi
Hi, On 12/06/2016 09:21 AM, Will Deacon wrote:
On Fri, Dec 02, 2016 at 12:56:01PM -0600, Jeremy Linton wrote:quoted
ACPI CPUs aren't associated with a PMU until they have been put online. This means that we potentially have to update a PMU definition the first time a CPU is hot added to the machine. Signed-off-by: Jeremy Linton <redacted> --- drivers/perf/arm_pmu.c | 38 ++++++++++++++++++++++++++++++++++++-- include/linux/perf/arm_pmu.h | 4 ++++ 2 files changed, 40 insertions(+), 2 deletions(-)diff --git a/drivers/perf/arm_pmu.c b/drivers/perf/arm_pmu.c index fa40294..4abb2fe 100644 --- a/drivers/perf/arm_pmu.c +++ b/drivers/perf/arm_pmu.c@@ -711,6 +711,30 @@ static int cpu_pmu_request_irq(struct arm_pmu *cpu_pmu, irq_handler_t handler) return 0; } +static DEFINE_SPINLOCK(arm_pmu_resource_lock);Why do you need this spinlock? The hotplug notifiers are serialised afaik, and you don't take it anywhere else.
Well, I assumed they were serialized, but then I went looking for a guarantee and couldn't find one specific to the notifiers, even though the previous lock was removed. Admittedly, I didn't spend too long looking, but there is a piece missing... Which is the sync between the hotplug notification and perf start/stop. By itself that extends this lock into the consumers of the resource structure. Which might not be the right choice because even without these ACPI specific bits, simply running a few cpus online/offline while simultaneously doing something like `perf stat -e cache-misses ls &` in a loop causes deadlocks/crashes. That problem doesn't appear to be specific to the ACPI/PMU so I've stayed away from it in this patch set, although potentially a larger fix might cover this as well.