]> git.droids-corp.org - dpdk.git/commit
dma/idxd: fix null dereference in PCI remove
authorKevin Laatz <kevin.laatz@intel.com>
Mon, 4 Jul 2022 15:27:51 +0000 (16:27 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 5 Jul 2022 19:37:25 +0000 (21:37 +0200)
commitb29427649b6d51b3b49187cbaeaa6587ce80ce72
tree0315d8f509fc47f817334ce0c0658fadfb0bb599
parent1a57c8d553a022a282cc466712bf7f4ce6de20a4
dma/idxd: fix null dereference in PCI remove

The 'info' struct was being declared as a NULL pointer. If a NULL
pointer is passed to 'rte_dma_info_get', EINVAL is returned and the
struct is not populated. This subsequently causes a segfault when
dereferencing 'info'.

This patch fixes the issue by simply declaring 'info' on the stack and
passing its address to 'rte_dma_info_get'.

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