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

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

Merge "soc: qcom: glink: Ensure open acks are processed before migration"

parents d3d92fb2 7bb67728
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2793,7 +2793,8 @@ static struct channel_ctx *find_l_ctx_get(struct channel_ctx *r_ctx)
			list_for_each_entry(ctx, &xprt->channels,
							port_list_node)
				if (!strcmp(ctx->name, r_ctx->name) &&
							ctx->local_xprt_req) {
							ctx->local_xprt_req &&
							ctx->local_xprt_resp) {
					l_ctx = ctx;
					rwref_get(&l_ctx->ch_state_lhc0);
				}
@@ -2834,7 +2835,8 @@ static struct channel_ctx *find_r_ctx_get(struct channel_ctx *l_ctx)
			list_for_each_entry(ctx, &xprt->channels,
							port_list_node)
				if (!strcmp(ctx->name, l_ctx->name) &&
							ctx->remote_xprt_req) {
							ctx->remote_xprt_req &&
							ctx->remote_xprt_resp) {
					r_ctx = ctx;
					rwref_get(&r_ctx->ch_state_lhc0);
				}