Re: [PATCH v2 6/9] perf/cxl: Unfreeze counters after handling an overflow interrupt
Jonathan Cameron <[email protected]> Wed, 29 Jul 2026 20:24:26 +0100
| Newsgroups | org.kernel.vger.linux-cxl,org.kernel.vger.linux-perf-users |
|---|---|
| Message-ID | <20260729202426.5b2f70b3@jic23-huawei> |
On Wed, 29 Jul 2026 07:55:52 -0700 Dave Jiang <[email protected]> wrote: > The counters are configured with Freeze on Overflow, so when any counter > overflows the CPMU freezes every counter in the block (CXL r4.0 > ยง8.2.7.2.1). cxl_pmu_irq() reads the overflowed counters and clears the > overflow status, but never writes the CPMU Freeze register to unfreeze, > so all counters stay frozen until the next pmu_enable() and events in > that window are silently lost. > > Unfreeze after clearing the overflow status so counting resumes. > > Fixes: 5d7107c72796 ("perf: CXL Performance Monitoring Unit driver") > Reported-by: [email protected] > Closes: https://sashiko.dev/#/patchset/[email protected]?part=1 > Assisted-by: Claude:claude-opus-4-8 > Signed-off-by: Dave Jiang <[email protected]> Guess I had an emulation bug. The disadvantage of developing against emulation written by the same person writing the kernel driver. Reviewed-by: Jonathan Cameron <[email protected]> > --- > drivers/perf/cxl_pmu.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/drivers/perf/cxl_pmu.c b/drivers/perf/cxl_pmu.c > index 8b89db8f4d68..52e78a6e0960 100644 > --- a/drivers/perf/cxl_pmu.c > +++ b/drivers/perf/cxl_pmu.c > @@ -804,6 +804,15 @@ static irqreturn_t cxl_pmu_irq(int irq, void *data) > > writeq(overflowed, base + CXL_PMU_OVERFLOW_REG); > > + /* > + * Counters are configured to freeze on overflow (Freeze on Overflow), > + * which freezes every counter in the CPMU. Once the overflowed counters > + * have been read and their status cleared, unfreeze so counting resumes; > + * otherwise all counters stay frozen until the next pmu_enable() and > + * events are silently lost. > + */ > + writeq(0, base + CXL_PMU_FREEZE_REG); > + > return IRQ_HANDLED; > } >