]> git.droids-corp.org - dpdk.git/commit
dma/idxd: fix partial freeing in PCI close
authorKevin Laatz <kevin.laatz@intel.com>
Mon, 4 Jul 2022 15:27:50 +0000 (16:27 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 5 Jul 2022 19:34:38 +0000 (21:34 +0200)
commit1a57c8d553a022a282cc466712bf7f4ce6de20a4
tree8b061f8c4dec1821e40f82e09f3ef2aa7f87dd06
parent8a6eb404c4a1e312a13d3a374b0cf3dcdc429ba7
dma/idxd: fix partial freeing in PCI close

During PCI device close, any allocated memory needs to be free'd.
Currently, one of the free's is being called on an incorrect idxd_dmadev
struct member, namely 'batch_idx_ring'.

At device creation, memory is allocated for both 'batch_comp_ring' and
'batch_idx_ring' simultaneously. Calling free only on 'batch_idx_ring'
meant the first half of this memory was not being free'd, leading to the
memleak.

This patch fixes this memleak by calling free on 'batch_comp_ring' which
will free the memory for both rings.

Fixes: 9449330a8458 ("dma/idxd: create dmadev instances on PCI probe")
Cc: stable@dpdk.org
Signed-off-by: Kevin Laatz <kevin.laatz@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/dma/idxd/idxd_pci.c