Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Suzuki K Poulose <suzuki.poulose@arm.com>
To: Yeoreum Yun <yeoreum.yun@arm.com>, Leo Yan <leo.yan@arm.com>
Cc: coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, mike.leach@arm.com,
	james.clark@linaro.org, alexander.shishkin@linux.intel.com,
	jie.gan@oss.qualcomm.com
Subject: Re: [PATCH v8 08/13] coresight: etm4x: fix inconsistencies with sysfs configuration
Date: Thu, 16 Jul 2026 13:42:26 +0100	[thread overview]
Message-ID: <d7498d65-50e7-4fe5-a414-dd4bdf3b2c76@arm.com> (raw)
In-Reply-To: <akzMypA6LOtjCsXz@e129823.arm.com>

On 07/07/2026 10:54, Yeoreum Yun wrote:
> On Tue, Jul 07, 2026 at 09:59:36AM +0100, Yeoreum Yun wrote:
>> On Tue, Jul 07, 2026 at 09:25:10AM +0100, Leo Yan wrote:
>>> On Mon, Jul 06, 2026 at 07:16:42PM +0100, Yeoreum Yun wrote:
>>>
>>> [...]
>>>
>>>>> I try best to not paste any non-sense AI reviews, record one from
>>>>> Sashiko [1]:
>>>>>
>>>>>   | If a user writes to a sysfs attribute like pe_sel_store(), it acquires
>>>>>   | drvdata->spinlock without disabling interrupts. If an IPI is then handled
>>>>>   | on the same CPU, etm4_enable_sysfs_smp_call() will call
>>>>>   | cscfg_csdev_enable_active_config() which attempts to acquire the exact
>>>>>   | same spinlock, hanging the CPU."
>>>>>
>>>>> The flow for acquiring drvdata->spinlock in SMP call is:
>>>>>
>>>>>    etm4_enable_sysfs_smp_call()
>>>>>      `> cscfg_csdev_enable_active_config()
>>>>>           `> cscfg_csdev_enable_config()
>>>>>                `> cscfg_prog_config()
>>>>>                     `> cscfg_set_on_enable()
>>>>>                          `> raw_spin_lock_irqsave(feat_csdev->drv_spinlock, flags);
>>>>>
>>>>> We might expect the complaint from LOCKDEP with this patch.
>>>>
>>>> Hmm. I miss the this point and there is two solution:
>>>>
>>>>    1. Remove "feat_csdev->drv_spinlock"
>>>>
>>>>      Before this patch, the "feat_csdev->drv_spinlock" is for
>>>>      synchronizing with the "drvdata->config". However,
>>>>      After this patch, the the configfs only show the "active" config
>>>>      and the active config can be used only after taking the "mode".
>>>>
>>>>      Furthermore, the sysfs only uses the "config" not "active config",
>>>>      there is no race between the sysfs and the configfs.
>>>>
>>>>      When I check the, "feat_csdev->drv_spinlock" is for the
>>>>      active/deactive the configfs config, so I seems safe to remove.
>>>
>>> My interpretation is:
>>>
>>> After this series, we updates active_config on local CPU within atomic
>>> context, it is nature to be protected. So we don't need to use
>>> feat_csdev->drv_spinlock when updating active_config.
>>>
>>> If so, it is fine for me to remove feat_csdev->drv_spinlock.
>>
>> Yes. but if I add a little bit more comment. the "active_config"
>> is accessed after "mode changed (perf of sysfs)" it accesses atomically
>> and the "active_config" is refered from the configfs not "config"
>> after this patch. So we can remove the "feat_csdev->drv_spinlock".

Ack

Suzuki


  reply	other threads:[~2026-07-16 12:42 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-29  8:59 [PATCH v8 00/13] fix several inconsistencies with sysfs configuration in etmX Yeoreum Yun
2026-06-29  8:59 ` [PATCH v8 01/13] coresight: etm4x: fix wrong check of etm4x_sspcicrn_present() Yeoreum Yun
2026-06-29  8:59 ` [PATCH v8 02/13] coresight: etm4x: fix underflow for usage of (nrseqstate - 1) Yeoreum Yun
2026-06-29  8:59 ` [PATCH v8 03/13] coresight: etm4x: introduce struct etm4_caps Yeoreum Yun
2026-06-29  8:59 ` [PATCH v8 04/13] coresight: etm4x: exclude ss_status from drvdata->config Yeoreum Yun
2026-06-29  8:59 ` [PATCH v8 05/13] coresight: etm4x: remove s_ex_level from config Yeoreum Yun
2026-06-29  8:59 ` [PATCH v8 06/13] coresight: etm4x: remove redundant fields in etmv4_save_state Yeoreum Yun
2026-06-29  9:00 ` [PATCH v8 07/13] coresight: etm4x: fix leaked trace id Yeoreum Yun
2026-06-29  9:00 ` [PATCH v8 08/13] coresight: etm4x: fix inconsistencies with sysfs configuration Yeoreum Yun
2026-07-06 17:21   ` Leo Yan
2026-07-06 18:16     ` Yeoreum Yun
2026-07-07  8:25       ` Leo Yan
2026-07-07  8:59         ` Yeoreum Yun
2026-07-07  9:54           ` Yeoreum Yun
2026-07-16 12:42             ` Suzuki K Poulose [this message]
2026-07-06 17:39   ` Leo Yan
2026-07-06 18:20     ` Yeoreum Yun
2026-07-07  8:07       ` Leo Yan
2026-07-16 12:41     ` Suzuki K Poulose
2026-07-16 20:09       ` Yeoreum Yun
2026-07-16 12:46   ` Suzuki K Poulose
2026-07-16 19:57     ` Yeoreum Yun
2026-06-29  9:00 ` [PATCH v8 09/13] coresight: etm4x: missing cscfg_csdev_disable_active_config() in perf enable Yeoreum Yun
2026-06-29  9:00 ` [PATCH v8 10/13] coresight: etm3x: change drvdata->spinlock type to raw_spin_lock_t Yeoreum Yun
2026-06-29  9:00 ` [PATCH v8 11/13] coresight: etm3x: introduce struct etm_caps Yeoreum Yun
2026-06-29  9:00 ` [PATCH v8 12/13] coresight: etm3x: fix inconsistencies with sysfs configuration Yeoreum Yun
2026-06-29  9:00 ` [PATCH v8 13/13] coresight: etm3x: remove redundant cpu online check on etm_enable_sysfs() Yeoreum Yun
2026-07-16 12:48 ` [PATCH v8 00/13] fix several inconsistencies with sysfs configuration in etmX Suzuki K Poulose
2026-07-16 19:24   ` Yeoreum Yun
2026-07-16 20:11     ` Yeoreum Yun

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d7498d65-50e7-4fe5-a414-dd4bdf3b2c76@arm.com \
    --to=suzuki.poulose@arm.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=coresight@lists.linaro.org \
    --cc=james.clark@linaro.org \
    --cc=jie.gan@oss.qualcomm.com \
    --cc=leo.yan@arm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mike.leach@arm.com \
    --cc=yeoreum.yun@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox