From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 76C1D40099B; Fri, 7 Aug 2026 14:58:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786114694; cv=none; b=XCQotESJUPw2ld+oHWsoGIret0MAHJCsoFDQoINelMZNTN9tSEwIyk1oU86jTU2VegXqBd4A6jeJlEMwjSWDSi8nGr9cFDBuplhhaZjK3EZbYlN3vne7j+plPh1Cfy3Jhlf0bCglH0/FxxwklR2yWTqxKl4BsRoXZiZ1fIf+C3o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786114694; c=relaxed/simple; bh=sE1WwUfnoc/SP1M4mPLD6HqU9pnOdHf/QHQq/RttSg0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZDWTVvqBiIfHxfJa2NVVmf8hsjhJWC+DC5+RZePsPOfM4Fk3d2pcvHTM5hmUmmrn+sVe48EAHEGx4j7DXXE5U51ld2lkhFP3huYaEbp5Dl/zwO17vbPH9mJWkALPbcAlFeH+mIM3aXvSxah5vaIFM6f+40RADQ393+g8hU2uxQk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hmyJiUwP; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="hmyJiUwP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D76021F000E9; Fri, 7 Aug 2026 14:58:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786114693; bh=v6gAhL5yypFdXEzygxGgsKjs+Z30Po7ADoVTahV2Y74=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=hmyJiUwP5pFly4zr39usTWCROet1yyk6z5wox5p0u3UcxVZPM2RNyAZ+Ru9rm+sDo DdVFU4+x96J52ZSnmE7f17lXBaXawzRowp/G8LWc9oktueoxlxx6+wTgnxkrfLFlUn Ly3ziWJwlR1mODGzFKi6C+Hnxbw+YRDlm2+tSSfk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hongling Zeng , Jernej Skrabec , Frank Li , Frank Li , Vinod Koul , Sasha Levin Subject: [PATCH 6.18 016/396] dmaengine: sun6i-dma: Fix reclaim descriptors while terminating DMA Date: Fri, 7 Aug 2026 16:32:56 +0200 Message-ID: <20260807143424.627181321@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143424.272339768@linuxfoundation.org> References: <20260807143424.272339768@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hongling Zeng [ Upstream commit ab1150115e68a46b687eb38c1ab92782018c9f2c ] When terminating DMA transfers, active descriptors are not properly reclaimed. Only cyclic descriptors were handled, leaving non-cyclic descriptors and their LLI chains to be permanently leaked. Fix by using vchan_terminate_vdesc() which handles both cyclic and non-cyclic descriptors by adding them to desc_terminated queue for proper cleanup. Add pchan->desc != pchan->done check to prevent double-adding completed descriptors, which would corrupt the list. Fixes: 555859308723 ("dmaengine: sun6i: Add driver for the Allwinner A31 DMA controller") Signed-off-by: Hongling Zeng Acked-by: Jernej Skrabec Suggested-by: Frank Li Reviewed-by: Frank Li Link: https://patch.msgid.link/20260701045733.33654-1-zenghongling@kylinos.cn Signed-off-by: Vinod Koul Signed-off-by: Sasha Levin --- drivers/dma/sun6i-dma.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/dma/sun6i-dma.c b/drivers/dma/sun6i-dma.c index f9d876deb1f05..ae362a2f7c40f 100644 --- a/drivers/dma/sun6i-dma.c +++ b/drivers/dma/sun6i-dma.c @@ -935,16 +935,13 @@ static int sun6i_dma_terminate_all(struct dma_chan *chan) spin_lock_irqsave(&vchan->vc.lock, flags); - if (vchan->cyclic) { - vchan->cyclic = false; - if (pchan && pchan->desc) { - struct virt_dma_desc *vd = &pchan->desc->vd; - struct virt_dma_chan *vc = &vchan->vc; + if (pchan && pchan->desc && pchan->desc != pchan->done) { + struct virt_dma_desc *vd = &pchan->desc->vd; - list_add_tail(&vd->node, &vc->desc_completed); - } + vchan_terminate_vdesc(vd); } + vchan->cyclic = false; vchan_get_all_descriptors(&vchan->vc, &head); if (pchan) { -- 2.53.0