]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ath10k: Fix memory leak in qmi
authorDundi Raviteja <dundi@codeaurora.org>
Tue, 25 Jun 2019 14:25:48 +0000 (19:55 +0530)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 28 Jun 2019 19:09:11 +0000 (22:09 +0300)
Currently the memory allocated for qmi handle is
not being freed during de-init which leads to memory leak.

Free the allocated qmi memory in qmi deinit
to avoid memory leak.

Tested HW: WCN3990
Tested FW: WLAN.HL.3.1-01040-QCAHLSWMTPLZ-1

Fixes: fda6fee0001e ("ath10k: add QMI message handshake for wcn3990 client")
Signed-off-by: Dundi Raviteja <dundi@codeaurora.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/ath10k/qmi.c

index e94173ece3ca08f5613761c78b97192f2438ddf5..3b63b6257c433e2d99fde9df026879c20994b570 100644 (file)
@@ -1048,6 +1048,7 @@ int ath10k_qmi_deinit(struct ath10k *ar)
        qmi_handle_release(&qmi->qmi_hdl);
        cancel_work_sync(&qmi->event_work);
        destroy_workqueue(qmi->event_wq);
+       kfree(qmi);
        ar_snoc->qmi = NULL;
 
        return 0;