RE: [PATCH] drm/amdgpu/sdam: Skip SDMA queue reset for SRIOV

2025-03-18 Thread Zhang, Jesse(Jie)
[AMD Official Use Only - AMD Internal Distribution Only] In the reset queue, the check for sriov already exists. static int sdma_v4_4_2_stop_queue(struct amdgpu_device *adev, uint32_t instance_id) { ... if (amdgpu_sriov_vf(adev)) return -EINVAL; Thank Jesse -Orig

Re: [PATCH] drm/amdgpu/sdam: Skip SDMA queue reset for SRIOV

2025-03-17 Thread Lazar, Lijo
On 3/18/2025 9:19 AM, Ahmad Rehman wrote: > For SRIOV, skip the SDMA queue reset and return > error. The engine/queue reset failure will trigger > FLR in the sequence. > > Signed-off-by: Ahmad Rehman > --- > drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c | 5 + > 1 file changed, 5 insertions(+)