Re: [PATCH 2/8] drm/amdkfd: fix the kdf debugger issue

2024-05-31 Thread Felix Kuehling
On 2024-05-30 22:51, Jesse Zhang wrote: The expression caps | HSA_CAP_TRAP_DEBUG_PRECISE_MEMORY_OPERATIONS_SUPPORTED and caps | HSA_CAP_TRAP_DEBUG_PRECISE_ALU_OPERATIONS_SUPPORTED are always 1/true regardless of the values of its operand. Fixes: 75de8428c3d632 ("drm/amdkfd: enable single alu op

[PATCH 2/8] drm/amdkfd: fix the kdf debugger issue

2024-05-30 Thread Jesse Zhang
The expression caps | HSA_CAP_TRAP_DEBUG_PRECISE_MEMORY_OPERATIONS_SUPPORTED and caps | HSA_CAP_TRAP_DEBUG_PRECISE_ALU_OPERATIONS_SUPPORTED are always 1/true regardless of the values of its operand. Fixes: 75de8428c3d632 ("drm/amdkfd: enable single alu ops for gfx12") Signed-off-by: Jesse Zhang

Re: [PATCH 2/8] drm/amdkfd: fix the kdf debugger issue

2024-05-30 Thread Felix Kuehling
On 2024-05-29 23:47, Jesse Zhang wrote: the expression caps | HSA_CAP_TRAP_DEBUG_PRECISE_MEMORY_OPERATIONS_SUPPORTED is always 1/true regardless of the values of its operand. Signed-off-by: Jesse Zhang Please add a Fixes tag. I think this is the commit that introduced the problem: commit

[PATCH 2/8] drm/amdkfd: fix the kdf debugger issue

2024-05-29 Thread Jesse Zhang
the expression caps | HSA_CAP_TRAP_DEBUG_PRECISE_MEMORY_OPERATIONS_SUPPORTED is always 1/true regardless of the values of its operand. Signed-off-by: Jesse Zhang --- drivers/gpu/drm/amd/amdkfd/kfd_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amd