Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp367121yba; Wed, 3 Apr 2019 10:12:00 -0700 (PDT) X-Google-Smtp-Source: APXvYqzdbB8GFVfKuyGJe7PaUrQC2fMcGJQzBt0e9nTfLLbSQjBRJPfsiXE2paNUenAdhs02dakO X-Received: by 2002:a17:902:d889:: with SMTP id b9mr1115710plz.294.1554311520770; Wed, 03 Apr 2019 10:12:00 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1554311520; cv=none; d=google.com; s=arc-20160816; b=pNZTwOUVRhbF3kmuLFbTrMOA08DbAVQz9LPrPChBPjxqrOr4KKocwk+AqeLuY7dtfu QIfcCYxQqT66m0y7thX6n5DAFQJtScVrsFJG/uwXqSBaAUyKt8hVvUs5qxHTMy2nJNir iXoG70s7no9J32jdsPmXB1ANHGj9vDWX86yn3G/jZFD8dDGnZMZV0BPaIrRlN31ICNXy FFtpvDwnc4ztgoLptyNLZaS5Od3p/hMs/sdavz81aoQUoHBFogYHt0V674Bp7Iui31EG Kv4zrcS5r0lZf9qiO/PErh12+a0UOupgEriQosgSTqprtw0QNYsk9aEbUu/bdDAJ4/Py VTIA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=gcPJmU8OliPls8dIKGTYk7xU74BDuFXQdfHWtyxjOvY=; b=t86LKGAPF1XQsDSeB1qg9w9efQOA+LxOau0n1IV8+urctGdKk1qhXoIxVWUUZeE/D1 gcLIAcNJ4VgQ6nEMEjFKZh5mMm135TqjjWODnu27yrEeR6Ppl4tMYsdXCWc2uq/Fcs1i 8wX5+acuWlo3M3sXvvkg2y7JA4ttGovnCH+/grJNuhCislp5yqae81GOgFJy2p3phUso zE5vqklJDywoo6XfOqXG0KW00uc9UwOKfRni4M3Q1VGS7kRI7kj7YI1RXn28yNkcM1hc 4NnMtAy9jBCC0o+Q95V+rtvEph8e1ej2NzV3HnQwFkeqfsH8pzjQUAPU5/bu4NyiK+br fR8g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q1si14057592pfh.125.2019.04.03.10.11.45; Wed, 03 Apr 2019 10:12:00 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726535AbfDCRLB (ORCPT + 99 others); Wed, 3 Apr 2019 13:11:01 -0400 Received: from foss.arm.com ([217.140.101.70]:45296 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726097AbfDCRLB (ORCPT ); Wed, 3 Apr 2019 13:11:01 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 09D8C80D; Wed, 3 Apr 2019 10:11:01 -0700 (PDT) Received: from e110467-lin.cambridge.arm.com (e110467-lin.cambridge.arm.com [10.1.196.75]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 3D6393F68F; Wed, 3 Apr 2019 10:10:59 -0700 (PDT) From: Robin Murphy To: will.deacon@arm.com Cc: mark.rutland@arm.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, suzuki.poulose@arm.com, bigeasy@linutronix.de, peterz@infradead.org, clabbe.montjoie@gmail.com, Meng.Li@windriver.com Subject: [PATCH v2 1/2] perf/arm-cci: Remove broken race mitigation Date: Wed, 3 Apr 2019 18:10:53 +0100 Message-Id: X-Mailer: git-send-email 2.21.0.dirty In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Uncore PMU drivers face an awkward cyclic dependency wherein: - They have to pick a valid online CPU to associate with before registering the PMU device, since it will get exposed to userspace immediately. - The PMU registration has to be be at least partly complete before hotplug events can be handled, since trying to migrate an uninitialised context would be bad. - The hotplug handler has to be ready as soon as a CPU is chosen, lest it go offline without the user-visible cpumask value getting updated. The arm-cci driver has tried to solve this by using get_cpu() to pick the current CPU and prevent it from disappearing while both registrations are performed, but that results in taking mutexes with preemption disabled, which makes certain configurations very unhappy: [ 1.983337] BUG: sleeping function called from invalid context at kernel/locking/rtmutex.c:2004 [ 1.983340] in_atomic(): 1, irqs_disabled(): 0, pid: 1, name: swapper/0 [ 1.983342] Preemption disabled at: [ 1.983353] [] cci_pmu_probe+0x1dc/0x488 [ 1.983360] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.18.20-rt8-yocto-preempt-rt #1 [ 1.983362] Hardware name: ZynqMP ZCU102 Rev1.0 (DT) [ 1.983364] Call trace: [ 1.983369] dump_backtrace+0x0/0x158 [ 1.983372] show_stack+0x24/0x30 [ 1.983378] dump_stack+0x80/0xa4 [ 1.983383] ___might_sleep+0x138/0x160 [ 1.983386] __might_sleep+0x58/0x90 [ 1.983391] __rt_mutex_lock_state+0x30/0xc0 [ 1.983395] _mutex_lock+0x24/0x30 [ 1.983400] perf_pmu_register+0x2c/0x388 [ 1.983404] cci_pmu_probe+0x2bc/0x488 [ 1.983409] platform_drv_probe+0x58/0xa8 It is not feasible to resolve all the possible races outside of the perf core itself, so address the immediate bug by following the example of nearly every other PMU driver and not even trying to do so. Registering the hotplug notifier first should minimise the window in which things can go wrong, so that's about as much as we can reasonably do here. This also revealed an additional race in assigning the global pointer too late relative to the hotplug notifier, which gets fixed in the process. Reported-by: "Li, Meng" Reported-by: Corentin Labbe Signed-off-by: Robin Murphy --- drivers/perf/arm-cci.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/drivers/perf/arm-cci.c b/drivers/perf/arm-cci.c index bfd03e023308..7a29ed88bd4f 100644 --- a/drivers/perf/arm-cci.c +++ b/drivers/perf/arm-cci.c @@ -1684,19 +1684,17 @@ static int cci_pmu_probe(struct platform_device *pdev) raw_spin_lock_init(&cci_pmu->hw_events.pmu_lock); mutex_init(&cci_pmu->reserve_mutex); atomic_set(&cci_pmu->active_events, 0); - cci_pmu->cpu = get_cpu(); - - ret = cci_pmu_init(cci_pmu, pdev); - if (ret) { - put_cpu(); - return ret; - } + cci_pmu->cpu = raw_smp_processor_id(); + g_cci_pmu = cci_pmu; cpuhp_setup_state_nocalls(CPUHP_AP_PERF_ARM_CCI_ONLINE, "perf/arm/cci:online", NULL, cci_pmu_offline_cpu); - put_cpu(); - g_cci_pmu = cci_pmu; + + ret = cci_pmu_init(cci_pmu, pdev); + if (ret) + return ret; + pr_info("ARM %s PMU driver probed", cci_pmu->model->name); return 0; } -- 2.21.0.dirty