ath10k: prevent beacon memory leak

If DMA mapping of next beacon failed ath10k leaked
the beacon.

Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
Michal Kazior 2014-04-23 19:30:06 +03:00 committed by Kalle Valo
parent 2ab03a6b96
commit ad3d2153bd

View File

@ -1441,6 +1441,7 @@ static void ath10k_wmi_event_host_swba(struct ath10k *ar, struct sk_buff *skb)
ATH10K_SKB_CB(bcn)->paddr); ATH10K_SKB_CB(bcn)->paddr);
if (ret) { if (ret) {
ath10k_warn("failed to map beacon: %d\n", ret); ath10k_warn("failed to map beacon: %d\n", ret);
dev_kfree_skb_any(bcn);
goto skip; goto skip;
} }