* [PATCH] drm/amdgpu: Fix one list corruption when create queue fails
@ 2022-07-07 10:28 xinhui pan
2022-07-07 13:39 ` philip yang
0 siblings, 1 reply; 3+ messages in thread
From: xinhui pan @ 2022-07-07 10:28 UTC (permalink / raw)
To: amd-gfx; +Cc: alexander.deucher, Felix.Kuehling, xinhui pan, christian.koenig
Queue would be freed when create_queue_cpsch fails
So lets do queue cleanup otherwise various list and memory issues
happen.
Signed-off-by: xinhui pan <xinhui.pan@amd.com>
---
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
index 93a0b6995430..e83725a28106 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
@@ -1674,14 +1674,13 @@ static int create_queue_cpsch(struct device_queue_manager *dqm, struct queue *q,
if (q->properties.is_active) {
increment_queue_count(dqm, qpd, q);
- if (!dqm->dev->shared_resources.enable_mes) {
+ if (!dqm->dev->shared_resources.enable_mes)
retval = execute_queues_cpsch(dqm,
- KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0);
- } else {
+ KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0);
+ else
retval = add_queue_mes(dqm, q, qpd);
- if (retval)
- goto cleanup_queue;
- }
+ if (retval)
+ goto cleanup_queue;
}
/*
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/amdgpu: Fix one list corruption when create queue fails
2022-07-07 10:28 [PATCH] drm/amdgpu: Fix one list corruption when create queue fails xinhui pan
@ 2022-07-07 13:39 ` philip yang
2022-07-07 15:54 ` Felix Kuehling
0 siblings, 1 reply; 3+ messages in thread
From: philip yang @ 2022-07-07 13:39 UTC (permalink / raw)
To: xinhui pan, amd-gfx; +Cc: alexander.deucher, Felix.Kuehling, christian.koenig
[-- Attachment #1: Type: text/html, Size: 2098 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/amdgpu: Fix one list corruption when create queue fails
2022-07-07 13:39 ` philip yang
@ 2022-07-07 15:54 ` Felix Kuehling
0 siblings, 0 replies; 3+ messages in thread
From: Felix Kuehling @ 2022-07-07 15:54 UTC (permalink / raw)
To: philip yang, xinhui pan, amd-gfx; +Cc: alexander.deucher, christian.koenig
Am 2022-07-07 um 09:39 schrieb philip yang:
>
>
> On 2022-07-07 06:28, xinhui pan wrote:
>> Queue would be freed when create_queue_cpsch fails
>> So lets do queue cleanup otherwise various list and memory issues
>> happen.
>
> This bug was introduced when adding MES support, as we used to ignore
> execute_queues_cpsch return value. Cleanup and return error to user
> space looks good to me.
>
This is similar to the queue destroy failure you looked at. A failure in
execute_queues_cpsch doesn't really indicate that the queue creation
failed. There is nothing specifically wrong with this queue. It just
means that HWS is probably hanging. So this problem will be handled with
a GPU reset anyway.
Regards,
Felix
> Reviewed-by: Philip Yang <Philip.Yang@amd.com>
>
>> Signed-off-by: xinhui pan<xinhui.pan@amd.com>
>> ---
>> drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c | 11 +++++------
>> 1 file changed, 5 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
>> index 93a0b6995430..e83725a28106 100644
>> --- a/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
>> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
>> @@ -1674,14 +1674,13 @@ static int create_queue_cpsch(struct device_queue_manager *dqm, struct queue *q,
>> if (q->properties.is_active) {
>> increment_queue_count(dqm, qpd, q);
>>
>> - if (!dqm->dev->shared_resources.enable_mes) {
>> + if (!dqm->dev->shared_resources.enable_mes)
>> retval = execute_queues_cpsch(dqm,
>> - KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0);
>> - } else {
>> + KFD_UNMAP_QUEUES_FILTER_DYNAMIC_QUEUES, 0);
>> + else
>> retval = add_queue_mes(dqm, q, qpd);
>> - if (retval)
>> - goto cleanup_queue;
>> - }
>> + if (retval)
>> + goto cleanup_queue;
>> }
>>
>> /*
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-07-07 15:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-07 10:28 [PATCH] drm/amdgpu: Fix one list corruption when create queue fails xinhui pan
2022-07-07 13:39 ` philip yang
2022-07-07 15:54 ` Felix Kuehling
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox