From: Jack Xiao <[email protected]>

Skip some checking for mes queue ib submission.

Signed-off-by: Jack Xiao <[email protected]>
Acked-by: Christian König <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c 
b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
index d583766ea392..d8354453cc29 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
@@ -155,12 +155,12 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned 
num_ibs,
                fence_ctx = 0;
        }
 
-       if (!ring->sched.ready) {
+       if (!ring->sched.ready && !ring->is_mes_queue) {
                dev_err(adev->dev, "couldn't schedule ib on ring <%s>\n", 
ring->name);
                return -EINVAL;
        }
 
-       if (vm && !job->vmid) {
+       if (vm && !job->vmid && !ring->is_mes_queue) {
                dev_err(adev->dev, "VM IB without ID\n");
                return -EINVAL;
        }
-- 
2.35.1

Reply via email to