OSDN Git Service

drm/amdgpu: Fix potential uninitialized use of 'idle' in amdgpu_ids.c
authorHarry Wentland <harry.wentland@amd.com>
Fri, 9 Feb 2018 17:15:45 +0000 (12:15 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 19 Feb 2018 19:19:57 +0000 (14:19 -0500)
v2: Use NULL and reverse christmas tree ordering

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c

index 7d28057..563e747 100644 (file)
@@ -406,7 +406,8 @@ int amdgpu_vmid_grab(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
        struct amdgpu_device *adev = ring->adev;
        unsigned vmhub = ring->funcs->vmhub;
        struct amdgpu_vmid_mgr *id_mgr = &adev->vm_manager.id_mgr[vmhub];
-       struct amdgpu_vmid *id, *idle;
+       struct amdgpu_vmid *idle = NULL;
+       struct amdgpu_vmid *id = NULL;
        int r = 0;
 
        mutex_lock(&id_mgr->lock);