[PATCH] drm/amdgpu: Skip virt_exchange_init on SDMA poison consumption
Victor Skvortsov
victor.skvortsov at amd.com
Wed Mar 13 02:08:43 UTC 2024
From: Victor Skvortsov <Victor.Skvortsov at amd.com>
Host will initiate an FLR in SDMA poison consumption scenario.
Guest should wait for FLR message to re-init data exchange.
Signed-off-by: Victor Skvortsov <Victor.Skvortsov at amd.com>
---
drivers/gpu/drm/amd/amdgpu/mxgpu_nv.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/mxgpu_nv.c b/drivers/gpu/drm/amd/amdgpu/mxgpu_nv.c
index 77f5b55decf9..a1bad772d932 100644
--- a/drivers/gpu/drm/amd/amdgpu/mxgpu_nv.c
+++ b/drivers/gpu/drm/amd/amdgpu/mxgpu_nv.c
@@ -444,7 +444,8 @@ static void xgpu_nv_ras_poison_handler(struct amdgpu_device *adev,
amdgpu_virt_fini_data_exchange(adev);
xgpu_nv_send_access_requests_with_param(adev,
IDH_RAS_POISON, block, 0, 0);
- amdgpu_virt_init_data_exchange(adev);
+ if (block != AMDGPU_RAS_BLOCK__SDMA)
+ amdgpu_virt_init_data_exchange(adev);
}
}
--
2.25.1
More information about the amd-gfx
mailing list