Chris Wilson <[email protected]> writes:

> Rather than mixing [012] and (A1, A2, B2) for the request indices, use
> the enums throughout.
>
> Signed-off-by: Chris Wilson <[email protected]>

Yes, much more friendlier.

Reviewed-by: Mika Kuoppala <[email protected]>

> ---
>  drivers/gpu/drm/i915/gt/selftest_lrc.c | 15 ++++++++-------
>  1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gt/selftest_lrc.c 
> b/drivers/gpu/drm/i915/gt/selftest_lrc.c
> index 3d088116a055..72d52c9c042f 100644
> --- a/drivers/gpu/drm/i915/gt/selftest_lrc.c
> +++ b/drivers/gpu/drm/i915/gt/selftest_lrc.c
> @@ -1176,18 +1176,18 @@ static int live_timeslice_rewind(void *arg)
>                       goto err;
>               }
>  
> -             rq[0] = create_rewinder(ce, NULL, slot, X);
> -             if (IS_ERR(rq[0])) {
> +             rq[A1] = create_rewinder(ce, NULL, slot, X);
> +             if (IS_ERR(rq[A1])) {
>                       intel_context_put(ce);
>                       goto err;
>               }
>  
> -             rq[1] = create_rewinder(ce, NULL, slot, Y);
> +             rq[A2] = create_rewinder(ce, NULL, slot, Y);
>               intel_context_put(ce);
> -             if (IS_ERR(rq[1]))
> +             if (IS_ERR(rq[A2]))
>                       goto err;
>  
> -             err = wait_for_submit(engine, rq[1], HZ / 2);
> +             err = wait_for_submit(engine, rq[A2], HZ / 2);
>               if (err) {
>                       pr_err("%s: failed to submit first context\n",
>                              engine->name);
> @@ -1200,12 +1200,12 @@ static int live_timeslice_rewind(void *arg)
>                       goto err;
>               }
>  
> -             rq[2] = create_rewinder(ce, rq[0], slot, Z);
> +             rq[B1] = create_rewinder(ce, rq[A1], slot, Z);
>               intel_context_put(ce);
>               if (IS_ERR(rq[2]))
>                       goto err;
>  
> -             err = wait_for_submit(engine, rq[2], HZ / 2);
> +             err = wait_for_submit(engine, rq[B1], HZ / 2);
>               if (err) {
>                       pr_err("%s: failed to submit second context\n",
>                              engine->name);
> @@ -1213,6 +1213,7 @@ static int live_timeslice_rewind(void *arg)
>               }
>  
>               /* ELSP[] = { { A:rq1, A:rq2 }, { B:rq1 } } */
> +             ENGINE_TRACE(engine, "forcing tasklet for rewind\n");
>               if (i915_request_is_active(rq[A2])) { /* semaphore yielded! */
>                       /* Wait for the timeslice to kick in */
>                       del_timer(&engine->execlists.timer);
> -- 
> 2.20.1
>
> _______________________________________________
> Intel-gfx mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to