From: Bryan O'Donoghue <bod@kernel.org>
To: Hungyu Lin <dennylin0707@gmail.com>,
vikash.garodia@oss.qualcomm.com,
dikshita.agarwal@oss.qualcomm.com
Cc: abhinav.kumar@linux.dev, mchehab@kernel.org,
konrad.dybcio@oss.qualcomm.com, linux-media@vger.kernel.org,
linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5] media: qcom: iris: use disable_irq() during power-off
Date: Tue, 30 Jun 2026 13:40:57 +0100 [thread overview]
Message-ID: <3ef9a28d-d2f2-4202-9c4b-ef98f585e28a@kernel.org> (raw)
In-Reply-To: <20260610141511.92352-1-dennylin0707@gmail.com>
On 10/06/2026 15:15, Hungyu Lin wrote:
> The IRQ is registered as a threaded IRQ.
>
> Using disable_irq_nosync() in iris_vpu_power_off() does not wait
> for an already queued threaded IRQ handler to complete before
> returning.
Which means what. Elaborate on the consequences of this statement.
> Replace it with disable_irq() so the power-off path waits for any
> in-flight threaded handler before returning.
> Suggested-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> Signed-off-by: Hungyu Lin <dennylin0707@gmail.com>
> ---
> v5:
> - Drop the runtime PM check in the threaded IRQ handler.
> - Use disable_irq() instead of disable_irq_nosync() in the power-off path,
> as suggested by Konrad Dybcio.
>
> v4:
> - Clarify the possible ordering between IRQ_WAKE_THREAD,
> runtime PM suspend, and the threaded IRQ handler.
> - Describe the race condition motivating the runtime PM check.
>
> v3:
> - Remove the early enable_irq() from the PM-inactive early-return path.
> - IRQ re-enablement is already handled by iris_vpu_power_on() after power-on.
>
> v2:
> - Use pm_runtime_get_if_active() instead of pm_runtime_get_if_in_use().
> - Handle negative runtime PM return values correctly.
> - Return IRQ_NONE when interrupt processing is skipped.
>
> drivers/media/platform/qcom/iris/iris_vpu_common.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/qcom/iris/iris_vpu_common.c b/drivers/media/platform/qcom/iris/iris_vpu_common.c
> index 69e6126dc4d9..538659284c7b 100644
> --- a/drivers/media/platform/qcom/iris/iris_vpu_common.c
> +++ b/drivers/media/platform/qcom/iris/iris_vpu_common.c
> @@ -236,7 +236,7 @@ void iris_vpu_power_off(struct iris_core *core)
> iris_unset_icc_bw(core);
>
> if (!iris_vpu_watchdog(core, core->intr_status))
> - disable_irq_nosync(core->irq);
> + disable_irq(core->irq);
> }
>
> int iris_vpu_power_on_controller(struct iris_core *core)
> --
> 2.34.1
>
>
You've described a bug so you need
- Fixes
- Cc: stable
---
bod
prev parent reply other threads:[~2026-06-30 12:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <FMV9sqmXHlHk1raxOJt6oAJ_agj4VQ41KVu7POI8lC49BVloufRM4zNyqYWH9cU6N_WwahIykSQbHdOwhQF58Q==@protonmail.internalid>
2026-06-10 14:15 ` [PATCH v5] media: qcom: iris: use disable_irq() during power-off Hungyu Lin
2026-06-12 7:51 ` Dmitry Baryshkov
2026-06-29 14:31 ` Konrad Dybcio
2026-06-30 12:40 ` Bryan O'Donoghue [this message]
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=3ef9a28d-d2f2-4202-9c4b-ef98f585e28a@kernel.org \
--to=bod@kernel.org \
--cc=abhinav.kumar@linux.dev \
--cc=dennylin0707@gmail.com \
--cc=dikshita.agarwal@oss.qualcomm.com \
--cc=konrad.dybcio@oss.qualcomm.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=vikash.garodia@oss.qualcomm.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