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

Commit bb0649fd authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa3: fix to remove mutex lock in panic notifier"

parents 96979cf1 fbf1064b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -371,11 +371,9 @@ int ipa3_active_clients_log_print_table(char *buf, int size)
static int ipa3_active_clients_panic_notifier(struct notifier_block *this,
		unsigned long event, void *ptr)
{
	mutex_lock(&ipa3_ctx->ipa3_active_clients.mutex);
	ipa3_active_clients_log_print_table(active_clients_table_buf,
			IPA3_ACTIVE_CLIENTS_TABLE_BUF_SIZE);
	IPAERR("%s", active_clients_table_buf);
	mutex_unlock(&ipa3_ctx->ipa3_active_clients.mutex);

	return NOTIFY_DONE;
}