Explorar el Código

Merge "msm: ipa3: Changes to decrease the num_of_chan_allocated count"

qctecmdr hace 4 años
padre
commit
7038889f3f
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      drivers/platform/msm/gsi/gsi.c

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

@@ -1939,6 +1939,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);
@@ -3505,8 +3506,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) {