public inbox for linux-staging@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH 1/2] staging: vme_user: add list_del in the error handling of tsi148_dma_list_add
@ 2022-11-26 12:56 Dongliang Mu
  2022-11-26 12:56 ` [PATCH 2/2] staging: vme_user: fix coding style Dongliang Mu
  2022-11-26 15:31 ` [PATCH 1/2] staging: vme_user: add list_del in the error handling of tsi148_dma_list_add Christophe JAILLET
  0 siblings, 2 replies; 5+ messages in thread
From: Dongliang Mu @ 2022-11-26 12:56 UTC (permalink / raw)
  To: Martyn Welch, Manohar Vanga, Greg Kroah-Hartman, Dongliang Mu,
	Arnd Bergmann, Mingyi Kang
  Cc: linux-kernel, linux-staging

Smatch reports the following issue:
drivers/staging/vme_user/vme_tsi148.c:1757 tsi148_dma_list_add()
warn: '&entry->list' not removed from list

Fix this by adding list_del in the error handling code.

Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
---
 drivers/staging/vme_user/vme_tsi148.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/staging/vme_user/vme_tsi148.c b/drivers/staging/vme_user/vme_tsi148.c
index 020e0b3bce64..0171f46d1848 100644
--- a/drivers/staging/vme_user/vme_tsi148.c
+++ b/drivers/staging/vme_user/vme_tsi148.c
@@ -1751,6 +1751,7 @@ static int tsi148_dma_list_add(struct vme_dma_list *list,
 	return 0;
 
 err_dma:
+	list_del(&entry->list);
 err_dest:
 err_source:
 err_align:
-- 
2.37.1 (Apple Git-137.1)


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-12-05 12:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-26 12:56 [PATCH 1/2] staging: vme_user: add list_del in the error handling of tsi148_dma_list_add Dongliang Mu
2022-11-26 12:56 ` [PATCH 2/2] staging: vme_user: fix coding style Dongliang Mu
2022-12-05 12:22   ` Greg Kroah-Hartman
2022-12-05 12:33     ` Dongliang Mu
2022-11-26 15:31 ` [PATCH 1/2] staging: vme_user: add list_del in the error handling of tsi148_dma_list_add Christophe JAILLET

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox