myri10ge: Fix an error handling path in myri10ge_probe()
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 18 Dec 2022 18:08:40 +0000 (19:08 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 19 Dec 2022 12:30:32 +0000 (12:30 +0000)
Some memory allocated in myri10ge_probe_slices() is not released in the
error handling path of myri10ge_probe().

Add the corresponding kfree(), as already done in the remove function.

Fixes: 0dcffac1a329 ("myri10ge: add multislices support")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/myricom/myri10ge/myri10ge.c

index 8073d7a..c5687d9 100644 (file)
@@ -3912,6 +3912,7 @@ abort_with_slices:
        myri10ge_free_slices(mgp);
 
 abort_with_firmware:
+       kfree(mgp->msix_vectors);
        myri10ge_dummy_rdma(mgp, 0);
 
 abort_with_ioremap: