* [PATCH] cxl: Fix premature commit_end increment on decoder commit failure
@ 2026-01-29 6:45 Yuxiong Wang
2026-01-29 17:47 ` Alison Schofield
2026-01-30 16:16 ` Dave Jiang
0 siblings, 2 replies; 4+ messages in thread
From: Yuxiong Wang @ 2026-01-29 6:45 UTC (permalink / raw)
To: dave, jonathan.cameron, dave.jiang, alison.schofield,
vishal.l.verma, ira.weiny, dan.j.williams
Cc: ming.li, rrichter, linux-cxl, linux-kernel, Yuxiong Wang,
Huang Ying
In cxl_decoder_commit(), commit_end is incremented before verifying whether the
commit succeeded, and the CXL_DECODER_F_ENABLE bit in cxld->flags is only set
after a successful commit. As a result, if the commit fails, commit_end has been
incremented and cxld->reset() has no effect since the flag is not set, so commit_end
remains incorrectly incremented. The inconsistency between commit_end and
CXL_DECODER_F_ENABLE causes failure during subsequent either commit or reset
operations.
Fix this by incrementing commit_end only after confirming the commit succeeded.
Also, remove the ineffective cxld->reset() call. According to CXL 3.2 Spec 8.2.4.20.12
Committing Decoder Programming, since cxld_await_commit() has cleared the decoder
commit bit on failure, no additional reset is required.
Fixes: 176baef ("cxl/hdm: Commit decoder state to hardware")
Signed-off-by: Yuxiong Wang <yuxiong.wang@linux.alibaba.com>
Acked-by: Huang Ying <ying.huang@linux.alibaba.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Reviewed-by: Alison Schofield <alison.schofield@intel.com>
---
Change log:
* Added CXL 3.2 Spec 8.2.4.20.12 Committing Decoder Programming statement. Thanks
Alison.
* Collected reviewed-by. Thanks Dave and Alison.
RFC Link: https://lore.kernel.org/linux-cxl/aXqKC-bscufh1ggq@aschofie-mobl2.lan/
---
drivers/cxl/core/hdm.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c
index eb5a3a7640c6..912f648a6b7a 100644
--- a/drivers/cxl/core/hdm.c
+++ b/drivers/cxl/core/hdm.c
@@ -844,14 +844,13 @@ static int cxl_decoder_commit(struct cxl_decoder *cxld)
scoped_guard(rwsem_read, &cxl_rwsem.dpa)
setup_hw_decoder(cxld, hdm);
- port->commit_end++;
rc = cxld_await_commit(hdm, cxld->id);
if (rc) {
dev_dbg(&port->dev, "%s: error %d committing decoder\n",
dev_name(&cxld->dev), rc);
- cxld->reset(cxld);
return rc;
}
+ port->commit_end++;
cxld->flags |= CXL_DECODER_F_ENABLE;
return 0;
--
2.50.1 (Apple Git-155)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] cxl: Fix premature commit_end increment on decoder commit failure
2026-01-29 6:45 [PATCH] cxl: Fix premature commit_end increment on decoder commit failure Yuxiong Wang
@ 2026-01-29 17:47 ` Alison Schofield
2026-01-30 3:11 ` Yuxiong Wang
2026-01-30 16:16 ` Dave Jiang
1 sibling, 1 reply; 4+ messages in thread
From: Alison Schofield @ 2026-01-29 17:47 UTC (permalink / raw)
To: Yuxiong Wang
Cc: dave, jonathan.cameron, dave.jiang, vishal.l.verma, ira.weiny,
dan.j.williams, ming.li, rrichter, linux-cxl, linux-kernel,
Huang Ying
On Thu, Jan 29, 2026 at 02:45:52PM +0800, Yuxiong Wang wrote:
> In cxl_decoder_commit(), commit_end is incremented before verifying whether the
> commit succeeded, and the CXL_DECODER_F_ENABLE bit in cxld->flags is only set
> after a successful commit. As a result, if the commit fails, commit_end has been
> incremented and cxld->reset() has no effect since the flag is not set, so commit_end
> remains incorrectly incremented. The inconsistency between commit_end and
> CXL_DECODER_F_ENABLE causes failure during subsequent either commit or reset
> operations.
>
> Fix this by incrementing commit_end only after confirming the commit succeeded.
> Also, remove the ineffective cxld->reset() call. According to CXL 3.2 Spec 8.2.4.20.12
DaveJ - Maybe s/3.2/4.0 above on applying please.
It's the same section either way but lets encourage new references to use the
latest version of CXL Spec.
> Committing Decoder Programming, since cxld_await_commit() has cleared the decoder
> commit bit on failure, no additional reset is required.
>
> Fixes: 176baef ("cxl/hdm: Commit decoder state to hardware")
> Signed-off-by: Yuxiong Wang <yuxiong.wang@linux.alibaba.com>
> Acked-by: Huang Ying <ying.huang@linux.alibaba.com>
> Reviewed-by: Dave Jiang <dave.jiang@intel.com>
> Reviewed-by: Alison Schofield <alison.schofield@intel.com>
> ---
> Change log:
> * Added CXL 3.2 Spec 8.2.4.20.12 Committing Decoder Programming statement. Thanks
> Alison.
> * Collected reviewed-by. Thanks Dave and Alison.
> RFC Link: https://lore.kernel.org/linux-cxl/aXqKC-bscufh1ggq@aschofie-mobl2.lan/
> ---
> drivers/cxl/core/hdm.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c
> index eb5a3a7640c6..912f648a6b7a 100644
> --- a/drivers/cxl/core/hdm.c
> +++ b/drivers/cxl/core/hdm.c
> @@ -844,14 +844,13 @@ static int cxl_decoder_commit(struct cxl_decoder *cxld)
> scoped_guard(rwsem_read, &cxl_rwsem.dpa)
> setup_hw_decoder(cxld, hdm);
>
> - port->commit_end++;
> rc = cxld_await_commit(hdm, cxld->id);
> if (rc) {
> dev_dbg(&port->dev, "%s: error %d committing decoder\n",
> dev_name(&cxld->dev), rc);
> - cxld->reset(cxld);
> return rc;
> }
> + port->commit_end++;
> cxld->flags |= CXL_DECODER_F_ENABLE;
>
> return 0;
> --
> 2.50.1 (Apple Git-155)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cxl: Fix premature commit_end increment on decoder commit failure
2026-01-29 17:47 ` Alison Schofield
@ 2026-01-30 3:11 ` Yuxiong Wang
0 siblings, 0 replies; 4+ messages in thread
From: Yuxiong Wang @ 2026-01-30 3:11 UTC (permalink / raw)
To: Alison Schofield; +Cc: dave.jiang, ying.huang, linux-cxl, linux-kernel
On Thu, Jan 29, 2026 at 09:47:35AM -0800, Alison Schofield wrote:
> On Thu, Jan 29, 2026 at 02:45:52PM +0800, Yuxiong Wang wrote:
> > In cxl_decoder_commit(), commit_end is incremented before verifying whether the
> > commit succeeded, and the CXL_DECODER_F_ENABLE bit in cxld->flags is only set
> > after a successful commit. As a result, if the commit fails, commit_end has been
> > incremented and cxld->reset() has no effect since the flag is not set, so commit_end
> > remains incorrectly incremented. The inconsistency between commit_end and
> > CXL_DECODER_F_ENABLE causes failure during subsequent either commit or reset
> > operations.
> >
> > Fix this by incrementing commit_end only after confirming the commit succeeded.
> > Also, remove the ineffective cxld->reset() call. According to CXL 3.2 Spec 8.2.4.20.12
>
> DaveJ - Maybe s/3.2/4.0 above on applying please.
>
> It's the same section either way but lets encourage new references to use the
> latest version of CXL Spec.
Thanks for the advice! I'll refer to the latest version of CXL Spec in future work.
Best Regards,
Yuxiong
>
> > Committing Decoder Programming, since cxld_await_commit() has cleared the decoder
> > commit bit on failure, no additional reset is required.
> >
> > Fixes: 176baef ("cxl/hdm: Commit decoder state to hardware")
> > Signed-off-by: Yuxiong Wang <yuxiong.wang@linux.alibaba.com>
> > Acked-by: Huang Ying <ying.huang@linux.alibaba.com>
> > Reviewed-by: Dave Jiang <dave.jiang@intel.com>
> > Reviewed-by: Alison Schofield <alison.schofield@intel.com>
> > ---
> > Change log:
> > * Added CXL 3.2 Spec 8.2.4.20.12 Committing Decoder Programming statement. Thanks
> > Alison.
> > * Collected reviewed-by. Thanks Dave and Alison.
> > RFC Link: https://lore.kernel.org/linux-cxl/aXqKC-bscufh1ggq@aschofie-mobl2.lan/
> > ---
> > drivers/cxl/core/hdm.c | 3 +--
> > 1 file changed, 1 insertion(+), 2 deletions(-)
> >
> > diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c
> > index eb5a3a7640c6..912f648a6b7a 100644
> > --- a/drivers/cxl/core/hdm.c
> > +++ b/drivers/cxl/core/hdm.c
> > @@ -844,14 +844,13 @@ static int cxl_decoder_commit(struct cxl_decoder *cxld)
> > scoped_guard(rwsem_read, &cxl_rwsem.dpa)
> > setup_hw_decoder(cxld, hdm);
> >
> > - port->commit_end++;
> > rc = cxld_await_commit(hdm, cxld->id);
> > if (rc) {
> > dev_dbg(&port->dev, "%s: error %d committing decoder\n",
> > dev_name(&cxld->dev), rc);
> > - cxld->reset(cxld);
> > return rc;
> > }
> > + port->commit_end++;
> > cxld->flags |= CXL_DECODER_F_ENABLE;
> >
> > return 0;
> > --
> > 2.50.1 (Apple Git-155)
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cxl: Fix premature commit_end increment on decoder commit failure
2026-01-29 6:45 [PATCH] cxl: Fix premature commit_end increment on decoder commit failure Yuxiong Wang
2026-01-29 17:47 ` Alison Schofield
@ 2026-01-30 16:16 ` Dave Jiang
1 sibling, 0 replies; 4+ messages in thread
From: Dave Jiang @ 2026-01-30 16:16 UTC (permalink / raw)
To: Yuxiong Wang, dave, jonathan.cameron, alison.schofield,
vishal.l.verma, ira.weiny, dan.j.williams
Cc: ming.li, rrichter, linux-cxl, linux-kernel, Huang Ying
On 1/28/26 11:45 PM, Yuxiong Wang wrote:
> In cxl_decoder_commit(), commit_end is incremented before verifying whether the
> commit succeeded, and the CXL_DECODER_F_ENABLE bit in cxld->flags is only set
> after a successful commit. As a result, if the commit fails, commit_end has been
> incremented and cxld->reset() has no effect since the flag is not set, so commit_end
> remains incorrectly incremented. The inconsistency between commit_end and
> CXL_DECODER_F_ENABLE causes failure during subsequent either commit or reset
> operations.
>
> Fix this by incrementing commit_end only after confirming the commit succeeded.
> Also, remove the ineffective cxld->reset() call. According to CXL 3.2 Spec 8.2.4.20.12
> Committing Decoder Programming, since cxld_await_commit() has cleared the decoder
> commit bit on failure, no additional reset is required.
>
> Fixes: 176baef ("cxl/hdm: Commit decoder state to hardware")
> Signed-off-by: Yuxiong Wang <yuxiong.wang@linux.alibaba.com>
> Acked-by: Huang Ying <ying.huang@linux.alibaba.com>
> Reviewed-by: Dave Jiang <dave.jiang@intel.com>
> Reviewed-by: Alison Schofield <alison.schofield@intel.com>
Applied to cxl/next
7b6f9d9b1ea05c9c22570126547c780e8c6c3f62
> ---
> Change log:
> * Added CXL 3.2 Spec 8.2.4.20.12 Committing Decoder Programming statement. Thanks
> Alison.
> * Collected reviewed-by. Thanks Dave and Alison.
> RFC Link: https://lore.kernel.org/linux-cxl/aXqKC-bscufh1ggq@aschofie-mobl2.lan/
> ---
> drivers/cxl/core/hdm.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c
> index eb5a3a7640c6..912f648a6b7a 100644
> --- a/drivers/cxl/core/hdm.c
> +++ b/drivers/cxl/core/hdm.c
> @@ -844,14 +844,13 @@ static int cxl_decoder_commit(struct cxl_decoder *cxld)
> scoped_guard(rwsem_read, &cxl_rwsem.dpa)
> setup_hw_decoder(cxld, hdm);
>
> - port->commit_end++;
> rc = cxld_await_commit(hdm, cxld->id);
> if (rc) {
> dev_dbg(&port->dev, "%s: error %d committing decoder\n",
> dev_name(&cxld->dev), rc);
> - cxld->reset(cxld);
> return rc;
> }
> + port->commit_end++;
> cxld->flags |= CXL_DECODER_F_ENABLE;
>
> return 0;
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-01-30 16:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-29 6:45 [PATCH] cxl: Fix premature commit_end increment on decoder commit failure Yuxiong Wang
2026-01-29 17:47 ` Alison Schofield
2026-01-30 3:11 ` Yuxiong Wang
2026-01-30 16:16 ` Dave Jiang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox