[Intel-gfx] [PATCH 1/5] drm/i915/execlists: Refactor -EIO markup of hung requests

Chris Wilson chris at chris-wilson.co.uk
Mon Sep 23 08:01:52 UTC 2019


Quoting Mika Kuoppala (2019-09-23 08:47:18)
> Chris Wilson <chris at chris-wilson.co.uk> writes:
> 
> > Pull setting -EIO on the hung requests into its own utility function.
> >
> > Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
> > ---
> >  drivers/gpu/drm/i915/gt/intel_lrc.c | 32 +++++++++++++++--------------
> >  1 file changed, 17 insertions(+), 15 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c
> > index 1a2b71157f08..53e823d36b28 100644
> > --- a/drivers/gpu/drm/i915/gt/intel_lrc.c
> > +++ b/drivers/gpu/drm/i915/gt/intel_lrc.c
> > @@ -234,6 +234,13 @@ static void execlists_init_reg_state(u32 *reg_state,
> >                                    struct intel_engine_cs *engine,
> >                                    struct intel_ring *ring);
> >  
> > +static void mark_eio(struct i915_request *rq)
> > +{
> > +     if (!i915_request_signaled(rq))
> > +             dma_fence_set_error(&rq->fence, -EIO);
> > +     i915_request_mark_complete(rq);
> > +}
> > +
> >  static inline u32 intel_hws_preempt_address(struct intel_engine_cs *engine)
> >  {
> >       return (i915_ggtt_offset(engine->status_page.vma) +
> > @@ -2501,12 +2508,8 @@ static void execlists_cancel_requests(struct intel_engine_cs *engine)
> >       __execlists_reset(engine, true);
> >  
> >       /* Mark all executing requests as skipped. */
> > -     list_for_each_entry(rq, &engine->active.requests, sched.link) {
> > -             if (!i915_request_signaled(rq))
> > -                     dma_fence_set_error(&rq->fence, -EIO);
> > -
> > -             i915_request_mark_complete(rq);
> > -     }
> > +     list_for_each_entry(rq, &engine->active.requests, sched.link)
> > +             mark_eio(rq);
> >  
> >       /* Flush the queued requests to the timeline list (for retiring). */
> >       while ((rb = rb_first_cached(&execlists->queue))) {
> > @@ -2514,10 +2517,8 @@ static void execlists_cancel_requests(struct intel_engine_cs *engine)
> >               int i;
> >  
> >               priolist_for_each_request_consume(rq, rn, p, i) {
> > -                     list_del_init(&rq->sched.link);
> > +                     mark_eio(rq);
> >                       __i915_request_submit(rq);
> > -                     dma_fence_set_error(&rq->fence, -EIO);
> > -                     i915_request_mark_complete(rq);
> 
> Now we marek complete before submitting. Does that bring problems?

In conjunction with the next patches in the series, it prevents a problem :)
-Chris


More information about the Intel-gfx mailing list