drm/amdkfd: Fix iterator used outside loop in 'kfd_add_peer_prop()'
authorSrinivasan Shanmugam <srinivasan.shanmugam@amd.com>
Fri, 29 Dec 2023 09:37:09 +0000 (15:07 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 5 Jan 2024 21:10:43 +0000 (16:10 -0500)
Fix the following about iterator use:
drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_topology.c:1456 kfd_add_peer_prop() warn: iterator used outside loop: 'iolink3'

Cc: Felix Kuehling <Felix.Kuehling@amd.com>
Cc: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
Reviewed-by: Felix Kuehling <felix.kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdkfd/kfd_topology.c

index 58d775a0668dbba2dc809c52f1989c2bfb4e3410..e5f7c92eebcbbfa6a1fda115ca2b599cab48e4e8 100644 (file)
@@ -1452,17 +1452,19 @@ static int kfd_add_peer_prop(struct kfd_topology_device *kdev,
                /* CPU->CPU  link*/
                cpu_dev = kfd_topology_device_by_proximity_domain(iolink1->node_to);
                if (cpu_dev) {
-                       list_for_each_entry(iolink3, &cpu_dev->io_link_props, list)
-                               if (iolink3->node_to == iolink2->node_to)
-                                       break;
-
-                       props->weight += iolink3->weight;
-                       props->min_latency += iolink3->min_latency;
-                       props->max_latency += iolink3->max_latency;
-                       props->min_bandwidth = min(props->min_bandwidth,
-                                                       iolink3->min_bandwidth);
-                       props->max_bandwidth = min(props->max_bandwidth,
-                                                       iolink3->max_bandwidth);
+                       list_for_each_entry(iolink3, &cpu_dev->io_link_props, list) {
+                               if (iolink3->node_to != iolink2->node_to)
+                                       continue;
+
+                               props->weight += iolink3->weight;
+                               props->min_latency += iolink3->min_latency;
+                               props->max_latency += iolink3->max_latency;
+                               props->min_bandwidth = min(props->min_bandwidth,
+                                                          iolink3->min_bandwidth);
+                               props->max_bandwidth = min(props->max_bandwidth,
+                                                          iolink3->max_bandwidth);
+                               break;
+                       }
                } else {
                        WARN(1, "CPU node not found");
                }