瀏覽代碼

msm: ipa4: Don't decrease channel ref conunt for GCI channel

Because of decreasing channel reference count two times one
channel ref count value going to negetive value and failed to
deallocate this event ring. Add changes to avoid decreasing the
reference count for GCI channel.

Change-Id: Id85d476cb9ccf138dc3e5979395ce853d53dd317
Signed-off-by: Arnav Sharma <[email protected]>
Ashok Vuyyuru 5 年之前
父節點
當前提交
39d9f83d20
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gsi/gsi.c

+ 1 - 1
gsi/gsi.c

@@ -3147,7 +3147,7 @@ int gsi_dealloc_channel(unsigned long chan_hdl)
 	}
 	devm_kfree(gsi_ctx->dev, ctx->user_data);
 	ctx->allocated = false;
-	if (ctx->evtr)
+	if (ctx->evtr && (ctx->props.prot != GSI_CHAN_PROT_GCI))
 		atomic_dec(&ctx->evtr->chan_ref_cnt);
 	atomic_dec(&gsi_ctx->num_chan);