Browse Source

msm: ipa3: Changes to decrease the num_of_chan_allocated count

Observing gsi assert in SSR scenario due to not decreasing the
num_of_chan_allocated count. Adding changes to decrease the count
in dealloc event ring.

Change-Id: Icc0713c25bc5566c377e46fef2a4feb3feed176a
Signed-off-by: Praveen Kurapati <[email protected]>
Praveen Kurapati 4 years ago
parent
commit
4ab3b7d997
1 changed files with 4 additions and 1 deletions
  1. 4 1
      drivers/platform/msm/gsi/gsi.c

+ 4 - 1
drivers/platform/msm/gsi/gsi.c

@@ -1928,6 +1928,7 @@ int gsi_alloc_evt_ring(struct gsi_evt_ring_props *props, unsigned long dev_hdl,
 	mutex_init(&ctx->mlock);
 	init_completion(&ctx->compl);
 	atomic_set(&ctx->chan_ref_cnt, 0);
+	ctx->num_of_chan_allocated = 0;
 	ctx->props = *props;
 
 	mutex_lock(&gsi_ctx->mlock);
@@ -3481,8 +3482,10 @@ int gsi_dealloc_channel(unsigned long chan_hdl)
 	}
 	devm_kfree(gsi_ctx->dev, ctx->user_data);
 	ctx->allocated = false;
-	if (ctx->evtr && (ctx->props.prot != GSI_CHAN_PROT_GCI))
+	if (ctx->evtr && (ctx->props.prot != GSI_CHAN_PROT_GCI)) {
 		atomic_dec(&ctx->evtr->chan_ref_cnt);
+		ctx->evtr->num_of_chan_allocated--;
+	}
 	atomic_dec(&gsi_ctx->num_chan);
 
 	if (ctx->props.prot == GSI_CHAN_PROT_GCI) {