On Fri, 27 Feb 2026 22:32:05 +0000 <[email protected]> wrote: > From: Shiju Jose <[email protected]> > As for other two patches, try to indicate what sort of bug it is in the title. Something like: hw/cxl: Fix failure to remove repaired cachelines from > Add following fixes to the commit: hw/cxl: Add support for Maintenance > command and Post Package Repair (PPR). > > In cxl_perform_ppr(), remove and free the maintenance entry from QLIST > if match is found and PPR operation is performed.
Needs a fixes tag. > > Signed-off-by: Shiju Jose <[email protected]> > --- > hw/cxl/cxl-mailbox-utils.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/hw/cxl/cxl-mailbox-utils.c b/hw/cxl/cxl-mailbox-utils.c > index 9c99422cd4..66a58396ee 100644 > --- a/hw/cxl/cxl-mailbox-utils.c > +++ b/hw/cxl/cxl-mailbox-utils.c > @@ -2068,6 +2068,8 @@ static void cxl_perform_ppr(CXLType3Dev *ct3d, uint64_t > dpa) > CXL_MEMDEV_MAINT_SUBCLASS_CACHELINE_SPARING, > ent, NULL); > } > + QLIST_REMOVE(ent, node); > + g_free(ent); > break; > } > }
