Loading
dmaengine: altera-msgdma: properly free descriptor in msgdma_free_descriptor
mainline inclusion from mainline-v6.11-rc1 commit 54e4ada1a4206f878e345ae01cf37347d803d1b1 category: bugfix bugzilla: https://gitee.com/src-openeuler/kernel/issues/IARVBS CVE: CVE-2024-46716 Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=54e4ada1a4206f878e345ae01cf37347d803d1b1 -------------------------------- Remove list_del call in msgdma_chan_desc_cleanup, this should be the role of msgdma_free_descriptor. In consequence replace list_add_tail with list_move_tail in msgdma_free_descriptor. This fixes the path: msgdma_free_chan_resources -> msgdma_free_descriptors -> msgdma_free_desc_list -> msgdma_free_descriptor which does not correctly free the descriptors as first nodes were not removed from the list. Signed-off-by:Olivier Dautricourt <olivierdautricourt@gmail.com> Tested-by:
Olivier Dautricourt <olivierdautricourt@gmail.com> Link: https://lore.kernel.org/r/20240608213216.25087-3-olivierdautricourt@gmail.com Signed-off-by:
Vinod Koul <vkoul@kernel.org> Conflicts: drivers/dma/altera-msgdma.c [Context conflicts due to a34da7ef ("dmaengine: altera-msgdma: Correctly handle descriptor callbacks") is not merged.] Signed-off-by:
Jinjiang Tu <tujinjiang@huawei.com>