Commit b9078845 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by David S. Miller
Browse files

net: mana: Fix a memory leak in an error handling path in 'mana_create_txq()'



If this test fails we must free some resources as in all the other error
handling paths of this function.

Fixes: ca9c54d2 ("net: mana: Add a driver for Microsoft Azure Network Adapter (MANA)")
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: default avatarDexuan Cui <decui@microsoft.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4f35dabb
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1230,8 +1230,10 @@ static int mana_create_txq(struct mana_port_context *apc,

		cq->gdma_id = cq->gdma_cq->id;

		if (WARN_ON(cq->gdma_id >= gc->max_num_cqs))
			return -EINVAL;
		if (WARN_ON(cq->gdma_id >= gc->max_num_cqs)) {
			err = -EINVAL;
			goto out;
		}

		gc->cq_table[cq->gdma_id] = cq->gdma_cq;