From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5B47FF9EDC4 for ; Wed, 22 Apr 2026 13:22:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=2Ec6RDmCoGILkuK+c7pMSppt07wWBI23UnA13vicKYg=; b=5B62l8gvVAtdB6TYAgaDGeDbzl TgmWGRZs2mymGiIYF/3he2EfbIk2KMkw1cw1I2IK/I8fdOWh6+BS9bhojtF7ueC57BKijBv178TeN r/XRKHofBk77aeifdIKEE1Jp1d15OMPssnbS582NwqZ2lCtK3d0fB9v7fCYeWJoGvnQPRUo/Ew4Ss ftZKMLOyDogupuUFIamN0YoxQSs0Ob0LQGuUcE+HoNGFBvsKMhnBJz21pallF0a3DIQKkgi2K9A0G uoGrTuKBmA6YqaeeBjGtsRL+iYjhhKdQah0z+B3jf72vxwOYi5e3EDOac8AqDcBgD1yN9U2+PIYOJ u14eW5OQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1wFXXJ-0000000AHnB-1q4O; Wed, 22 Apr 2026 13:22:37 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1wFXX8-0000000AHe0-3MnF for linux-arm-kernel@lists.infradead.org; Wed, 22 Apr 2026 13:22:32 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 2AFE422D9; Wed, 22 Apr 2026 06:22:20 -0700 (PDT) Received: from e129823.cambridge.arm.com (e129823.arm.com [10.1.197.6]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id DBA623FD46; Wed, 22 Apr 2026 06:22:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1776864145; bh=7c8lB0GCyTaxecWeIBaA39LwkNTIZlfwq/jScNJuokc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RxsljniFNKrVN8K6aZzyRX7WSqj9yJaJGq6LlbF1xoSLpF/frI5I50gh4m3SwfT9Y H7cP757dBvHFeTNjoW8ilNeNYXvuy7PpKCke+AyG0xvP0E4cFnjlCugkV4nugfojO+ kutR6ruf+OvppDtSumRPPVEIkxXfPJbnPKQSty2M= From: Yeoreum Yun To: coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: suzuki.poulose@arm.com, mike.leach@arm.com, james.clark@linaro.org, alexander.shishkin@linux.intel.com, leo.yan@arm.com, jie.gan@oss.qualcomm.com, Yeoreum Yun Subject: [PATCH v6 08/13] coresight: etm4x: remove redundant call etm4_enable_hw() with hotplug Date: Wed, 22 Apr 2026 14:21:58 +0100 Message-Id: <20260422132203.977549-9-yeoreum.yun@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20260422132203.977549-1-yeoreum.yun@arm.com> References: <20260422132203.977549-1-yeoreum.yun@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20260422_062227_294940_67FF31E2 X-CRM114-Status: UNSURE ( 9.97 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org The cpu_online_mask is set at the CPUHP_BRINGUP_CPU step. In other words, if etm4_enable_sysfs() is called between CPUHP_BRINGUP_CPU and CPUHP_AP_ARM_CORESIGHT_STARTING, etm4_enable_hw() may be invoked in etm4_enable_sysfs_smp_call() and then executed again in etm4_starting_cpu(). To remove this redundant call, take the hotplug lock before executing etm4_enable_sysfs_smp_call(). Reviewed-by: Jie Gan Signed-off-by: Yeoreum Yun --- drivers/hwtracing/coresight/coresight-etm4x-core.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/drivers/hwtracing/coresight/coresight-etm4x-core.c b/drivers/hwtracing/coresight/coresight-etm4x-core.c index 5c74e3d63dcd..66d09e0a4171 100644 --- a/drivers/hwtracing/coresight/coresight-etm4x-core.c +++ b/drivers/hwtracing/coresight/coresight-etm4x-core.c @@ -962,8 +962,20 @@ static int etm4_enable_sysfs(struct coresight_device *csdev, struct coresight_pa arg.config = drvdata->config; raw_spin_unlock(&drvdata->spinlock); + /* + * Take the hotplug lock to prevent redundant calls to etm4_enable_hw(). + * + * The cpu_online_mask is set at the CPUHP_BRINGUP_CPU step. + * In other words, if etm4_enable_sysfs() is called between + * CPUHP_BRINGUP_CPU and CPUHP_AP_ARM_CORESIGHT_STARTING, + * etm4_enable_hw() may be invoked in etm4_enable_sysfs_smp_call() + * and then executed again in etm4_starting_cpu(). + */ + cpus_read_lock(); ret = smp_call_function_single(drvdata->cpu, etm4_enable_sysfs_smp_call, &arg, 1); + cpus_read_unlock(); + if (!ret) ret = arg.rc; if (!ret) -- LEVI:{C3F47F37-75D8-414A-A8BA-3980EC8A46D7}