msm:qmi: Fix race condition

Add changes to fix race condition while sending
modem init QMI sync message.

Change-Id: I2183dd2da40b589ccd628469273b33edc2ea399d
Signed-off-by: Raghavendar rao l <rlomte@codequrora.org>
Esse commit está contido em:
raghavendar rao l
2021-02-04 18:36:02 +05:30
commit de Gerrit - the friendly Code Review server
commit 689a18333f

Ver arquivo

@@ -1772,13 +1772,13 @@ static void ipa3_q6_clnt_svc_arrive(struct work_struct *work)
IPAWANERR(
"ipa3_qmi_init_modem_send_sync_msg failed due to SSR!\n");
/* Cleanup when ipa3_wwan_remove is called */
mutex_lock(&ipa3_qmi_lock);
if (ipa_q6_clnt != NULL) {
mutex_lock(&ipa3_qmi_lock);
qmi_handle_release(ipa_q6_clnt);
vfree(ipa_q6_clnt);
ipa_q6_clnt = NULL;
mutex_unlock(&ipa3_qmi_lock);
}
mutex_unlock(&ipa3_qmi_lock);
IPAWANERR("Exit from service arrive fun\n");
return;
}