drm/i915/guc: Check if expecting reply before decrementing outstanding_submission_g2h
authorJesus Narvaez <jesus.narvaez@intel.com>
Wed, 14 May 2025 22:52:24 +0000 (15:52 -0700)
committerJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
Mon, 2 Jun 2025 09:19:08 +0000 (12:19 +0300)
When sending a H2G message where a reply is expected in
guc_submission_send_busy_loop(), outstanding_submission_g2h is
incremented before the send. However, if there is an error sending the
message, outstanding_submission_g2h is decremented without checking if a
reply is expected.

Therefore, check if reply is expected when there is a failure before
decrementing outstanding_submission_g2h.

Fixes: 2f2cc53b5fe7 ("drm/i915/guc: Close deregister-context race against CT-loss")
Signed-off-by: Jesus Narvaez <jesus.narvaez@intel.com>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Alan Previn <alan.previn.teres.alexis@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Mousumi Jana <mousumi.jana@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Signed-off-by: John Harrison <John.C.Harrison@Intel.com>
Link: https://lore.kernel.org/r/20250514225224.4142684-1-jesus.narvaez@intel.com
(cherry picked from commit a6a26786f22a4ab0227bcf610510c4c9c2df0808)
Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c

index f8cb7c630d5b832b49ce97ff9298e72763e97bc3..108331a699958b97a3dd6642f334fea31f8cba57 100644 (file)
@@ -633,7 +633,7 @@ static int guc_submission_send_busy_loop(struct intel_guc *guc,
                atomic_inc(&guc->outstanding_submission_g2h);
 
        ret = intel_guc_send_busy_loop(guc, action, len, g2h_len_dw, loop);
-       if (ret)
+       if (ret && g2h_len_dw)
                atomic_dec(&guc->outstanding_submission_g2h);
 
        return ret;