Re: [PATCH] hw/sd/sdhci: free irq on exit

2025-03-31 Thread Philippe Mathieu-Daudé
On 28/3/25 10:49, Zheng Huang wrote: Hi, This patch fixes a memory leak bug in `sdhci_pci_realize()`. `s->irq` is not freed in `sdhci_pci_exit()`. Signed-off-by: Zheng Huang --- hw/sd/sdhci-pci.c | 2 ++ 1 file changed, 2 insertions(+) Queued to hw-misc, thanks!

Re: [PATCH] hw/sd/sdhci: free irq on exit

2025-03-28 Thread Philippe Mathieu-Daudé
On 28/3/25 10:49, Zheng Huang wrote: Hi, This patch fixes a memory leak bug in `sdhci_pci_realize()`. `s->irq` is not freed in `sdhci_pci_exit()`. Signed-off-by: Zheng Huang --- hw/sd/sdhci-pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/sd/sdhci-pci.c b/hw/sd/sdhci-pci.c in

[PATCH] hw/sd/sdhci: free irq on exit

2025-03-28 Thread Zheng Huang
Hi, This patch fixes a memory leak bug in `sdhci_pci_realize()`. `s->irq` is not freed in `sdhci_pci_exit()`. Signed-off-by: Zheng Huang --- hw/sd/sdhci-pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/sd/sdhci-pci.c b/hw/sd/sdhci-pci.c index 5268c0dee5..f5296d58ca 100644 --- a/h