drm/amdgpu: Fix unsigned comparison with zero in gmc_v9_0_process_interrupt()
authorHarshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Mon, 22 May 2023 07:30:15 +0000 (00:30 -0700)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 9 Jun 2023 14:45:46 +0000 (10:45 -0400)
Smatch warns:
drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c:579:
unsigned 'xcc_id' is never less than zero.

gfx_v9_4_3_ih_to_xcc_inst() returns negative numbers as well.
Fix this by changing type of xcc_id to int.

Fixes: 98b2e9cad227 ("drm/amdgpu: correct the vmhub index when page fault occurs")
Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c

index f70e666cecf24ca440ced4b6039beff8894fd3a6..1e8b2aaa48c16bb34bdc7af665c4bdab4738db46 100644 (file)
@@ -557,8 +557,8 @@ static int gmc_v9_0_process_interrupt(struct amdgpu_device *adev,
        const char *hub_name;
        u64 addr;
        uint32_t cam_index = 0;
-       int ret;
-       uint32_t node_id, xcc_id = 0;
+       int ret, xcc_id = 0;
+       uint32_t node_id;
 
        node_id = entry->node_id;