From: Suzuki K Poulose <suzuki.poulose@arm.com>
To: James Clark <james.clark@arm.com>,
coresight@lists.linaro.org, quic_jinlmao@quicinc.com,
mike.leach@linaro.org
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>,
Leo Yan <leo.yan@linaro.org>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/3] coresight: cti: Prevent negative values of enable count
Date: Fri, 6 Jan 2023 16:41:32 +0000 [thread overview]
Message-ID: <6e6272ae-1aff-335e-4390-09c7d522dd46@arm.com> (raw)
In-Reply-To: <20230106152331.1374973-2-james.clark@arm.com>
Hi James,
Thanks for fixing this.
On 06/01/2023 15:23, James Clark wrote:
> Writing 0 to the enable control repeatedly results in a negative value
> for enable_req_count. After this, writing 1 to the enable control
> appears to not work until the count returns to positive.
>
> Change it so that it's impossible for enable_req_count to be < 0.
I prefer rephrasing the following :
> Returning an error will also allow us to decide whether to call
> runtime_pm_put() or not in the following commit.
"Return an error to indicate the disable request was invalid"
and don't mention the forward dependency.
>
May be also add ?
Fixes: 835d722ba10a ("coresight: cti: Initial CoreSight CTI Driver")
> Signed-off-by: James Clark <james.clark@arm.com>
Rest looks fine to me.
Suzuki
> ---
> drivers/hwtracing/coresight/coresight-cti-core.c | 11 +++++++++--
> 1 file changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/hwtracing/coresight/coresight-cti-core.c b/drivers/hwtracing/coresight/coresight-cti-core.c
> index d2cf4f4848e1..838872f2484d 100644
> --- a/drivers/hwtracing/coresight/coresight-cti-core.c
> +++ b/drivers/hwtracing/coresight/coresight-cti-core.c
> @@ -151,9 +151,16 @@ static int cti_disable_hw(struct cti_drvdata *drvdata)
> {
> struct cti_config *config = &drvdata->config;
> struct coresight_device *csdev = drvdata->csdev;
> + int ret = 0;
>
> spin_lock(&drvdata->spinlock);
>
> + /* don't allow negative refcounts, return an error */
> + if (!atomic_read(&drvdata->config.enable_req_count)) {
> + ret = -EINVAL;
> + goto cti_not_disabled;
> + }
> +
> /* check refcount - disable on 0 */
> if (atomic_dec_return(&drvdata->config.enable_req_count) > 0)
> goto cti_not_disabled;
> @@ -171,12 +178,12 @@ static int cti_disable_hw(struct cti_drvdata *drvdata)
> coresight_disclaim_device_unlocked(csdev);
> CS_LOCK(drvdata->base);
> spin_unlock(&drvdata->spinlock);
> - return 0;
> + return ret;
>
> /* not disabled this call */
> cti_not_disabled:
> spin_unlock(&drvdata->spinlock);
> - return 0;
> + return ret;
> }
>
> void cti_write_single_reg(struct cti_drvdata *drvdata, int offset, u32 value)
next prev parent reply other threads:[~2023-01-06 16:43 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-06 15:23 [PATCH v2 0/3] coresight: cti: Add PM runtime call in enable_store James Clark
2023-01-06 15:23 ` [PATCH v2 1/3] coresight: cti: Prevent negative values of enable count James Clark
2023-01-06 16:41 ` Suzuki K Poulose [this message]
2023-01-06 15:23 ` [PATCH v2 2/3] coresight: cti: Add PM runtime call in enable_store James Clark
2023-01-09 16:47 ` Suzuki K Poulose
2023-01-10 5:56 ` Jinlong Mao
2023-01-10 11:08 ` James Clark
2023-01-06 15:23 ` [PATCH v2 3/3] coresight: cti: Remove atomic type from enable_req_count James Clark
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=6e6272ae-1aff-335e-4390-09c7d522dd46@arm.com \
--to=suzuki.poulose@arm.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=coresight@lists.linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=james.clark@arm.com \
--cc=leo.yan@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.poirier@linaro.org \
--cc=mike.leach@linaro.org \
--cc=quic_jinlmao@quicinc.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
all inboxes | Powered by JetHome®