Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f8a62db authored by Michal Kazior's avatar Michal Kazior Committed by Kalle Valo
Browse files

ath10k: plug possible memory leak in WMI



There was a possible memory leak when WMI command
queue reached it's limit. Command buffers were not
freed.

Signed-off-by: default avatarMichal Kazior <michal.kazior@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent dfa95b50
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -110,6 +110,7 @@ static int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb,
	if (atomic_add_return(1, &ar->wmi.pending_tx_count) >
	    WMI_MAX_PENDING_TX_COUNT) {
		/* avoid using up memory when FW hangs */
		dev_kfree_skb(skb);
		atomic_dec(&ar->wmi.pending_tx_count);
		return -EBUSY;
	}