dsp: Add afe_close in locked context

Process port command DEVICE_STOP with
afe_cmd_lock to avoid any race condition.

Change-Id: I6e888a70e439cb6f3408d00644fb98a85ae53ef4
Signed-off-by: Soumya Managoli <smanag@codeaurora.org>
This commit is contained in:
Soumya Managoli
2019-10-14 14:30:17 +05:30
committed by Gerrit - the friendly Code Review server
szülő 669089fdbd
commit 6b5e249af4

Fájl megtekintése

@@ -7463,6 +7463,7 @@ int afe_close(int port_id)
pr_debug("%s: Not a MAD port\n", __func__);
}
mutex_lock(&this_afe.afe_cmd_lock);
port_index = afe_get_port_index(port_id);
if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
this_afe.afe_sample_rates[port_index] = 0;
@@ -7505,6 +7506,7 @@ int afe_close(int port_id)
pr_err("%s: AFE close failed %d\n", __func__, ret);
fail_cmd:
mutex_unlock(&this_afe.afe_cmd_lock);
return ret;
}
EXPORT_SYMBOL(afe_close);