dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/amdgpu: potential uninitialized variable in amdgpu_vce_ring_parse_cs()
@ 2017-09-30  8:13 Dan Carpenter
  2017-09-30  8:14 ` [PATCH 2/2] drm/amdgpu: Potential uninitialized variable in amdgpu_vm_update_directories() Dan Carpenter
  2017-09-30  8:25 ` [PATCH 1/2] drm/amdgpu: potential uninitialized variable in amdgpu_vce_ring_parse_cs() Christian König
  0 siblings, 2 replies; 5+ messages in thread
From: Dan Carpenter @ 2017-09-30  8:13 UTC (permalink / raw)
  To: Alex Deucher, Christian König
  Cc: David Airlie, Xiangliang Yu, Leo Liu, Frank Min, Junwei Zhang,
	Chris Wilson, amd-gfx, dri-devel, kernel-janitors

We shifted some code around in commit 9cca0b8e5df0 ("drm/amdgpu: move
amdgpu_cs_sysvm_access_required into find_mapping") and now my static
checker complains that "r" might not be initialized at the end of the
function.  I've reviewed the code, and that seems possible, but it's
also possible I may have missed something.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
index b46280c1279f..2918de2f39ec 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
@@ -648,7 +648,7 @@ int amdgpu_vce_ring_parse_cs(struct amdgpu_cs_parser *p, uint32_t ib_idx)
 	uint32_t allocated = 0;
 	uint32_t tmp, handle = 0;
 	uint32_t *size = &tmp;
-	int i, r, idx = 0;
+	int i, r = 0, idx = 0;
 
 	p->job->vm = NULL;
 	ib->gpu_addr = amdgpu_sa_bo_gpu_addr(ib->sa_bo);

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-11-08 20:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-30  8:13 [PATCH 1/2] drm/amdgpu: potential uninitialized variable in amdgpu_vce_ring_parse_cs() Dan Carpenter
2017-09-30  8:14 ` [PATCH 2/2] drm/amdgpu: Potential uninitialized variable in amdgpu_vm_update_directories() Dan Carpenter
2017-09-30  8:25 ` [PATCH 1/2] drm/amdgpu: potential uninitialized variable in amdgpu_vce_ring_parse_cs() Christian König
     [not found]   ` <0b5a4cef-085d-bbeb-e673-79f8163a2e34-5C7GfCeVMHo@public.gmane.org>
2017-11-08 19:53     ` Ernst Sjöstrand
2017-11-08 20:37       ` Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox