From: Chris Lew <quic_clew@quicinc.com>
To: <agross@kernel.org>, <bjorn.andersson@linaro.org>,
<konrad.dybcio@somainline.org>
Cc: <linux-arm-msm@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<quic_clew@quicinc.com>
Subject: [PATCH 3/4] soc: qcom: smp2p: Add memory barrier for irq_pending
Date: Tue, 5 Jul 2022 23:02:10 -0700 [thread overview]
Message-ID: <1657087331-32455-4-git-send-email-quic_clew@quicinc.com> (raw)
In-Reply-To: <1657087331-32455-1-git-send-email-quic_clew@quicinc.com>
There is a very tight race where the irq_retrigger function is run
on one cpu and the actual retrigger softirq is running on a second
cpu. When this happens, there may be a chance that the second cpu
will not see the updated irq_pending value from first cpu.
Add a memory barrier to ensure that irq_pending is read correctly.
Signed-off-by: Chris Lew <quic_clew@quicinc.com>
---
drivers/soc/qcom/smp2p.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/soc/qcom/smp2p.c b/drivers/soc/qcom/smp2p.c
index a94cddcb0298..a1ea5f55c228 100644
--- a/drivers/soc/qcom/smp2p.c
+++ b/drivers/soc/qcom/smp2p.c
@@ -249,6 +249,9 @@ static void qcom_smp2p_notify_in(struct qcom_smp2p *smp2p)
status = val ^ entry->last_value;
entry->last_value = val;
+
+ /* Ensure irq_pending is read correctly */
+ mb();
status |= *entry->irq_pending;
/* No changes of this entry? */
@@ -356,6 +359,11 @@ static int smp2p_retrigger_irq(struct irq_data *irqd)
set_bit(irq, entry->irq_pending);
+ /* Ensure irq_pending is visible to all cpus that retried interrupt
+ * can run on
+ */
+ mb();
+
return 0;
}
--
2.7.4
next prev parent reply other threads:[~2022-07-06 6:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-06 6:02 [PATCH 0/4] Add smp2p retrigger support Chris Lew
2022-07-06 6:02 ` [PATCH 1/4] soc: qcom: smp2p: Introduce pending state for virtual irq Chris Lew
2022-07-13 15:32 ` Doug Anderson
2022-07-06 6:02 ` [PATCH 2/4] soc: qcom: smp2p: Add proper retrigger detection Chris Lew
2022-07-06 6:02 ` Chris Lew [this message]
2022-07-06 12:52 ` [PATCH 3/4] soc: qcom: smp2p: Add memory barrier for irq_pending Manivannan Sadhasivam
2022-07-13 15:32 ` Doug Anderson
2022-07-06 6:02 ` [PATCH 4/4] soc: qcom: smp2p: Add remote_id into irq name Chris Lew
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=1657087331-32455-4-git-send-email-quic_clew@quicinc.com \
--to=quic_clew@quicinc.com \
--cc=agross@kernel.org \
--cc=bjorn.andersson@linaro.org \
--cc=konrad.dybcio@somainline.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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