Re: [Intel-gfx] [PATCH 3/5] drm/i915/gt: Lift stop_ring() to reset_prepare

2021-01-19 Thread Chris Wilson
Quoting Mika Kuoppala (2021-01-19 10:33:17) > Chris Wilson writes: > > > Push the sleeping stop_ring() out of the reset resume function to reset > > prepare; we are not allowed to sleep in the former. > > > > Signed-off-by: Chris Wilson > > --- > > .../gpu/drm/i915/gt/intel_ring_submission.c

Re: [Intel-gfx] [PATCH 3/5] drm/i915/gt: Lift stop_ring() to reset_prepare

2021-01-19 Thread Mika Kuoppala
Chris Wilson writes: > Push the sleeping stop_ring() out of the reset resume function to reset > prepare; we are not allowed to sleep in the former. > > Signed-off-by: Chris Wilson > --- > .../gpu/drm/i915/gt/intel_ring_submission.c | 97 +++ > 1 file changed, 36 insertions(+)

[Intel-gfx] [PATCH 3/5] drm/i915/gt: Lift stop_ring() to reset_prepare

2021-01-19 Thread Chris Wilson
Push the sleeping stop_ring() out of the reset resume function to reset prepare; we are not allowed to sleep in the former. Signed-off-by: Chris Wilson --- .../gpu/drm/i915/gt/intel_ring_submission.c | 97 +++ 1 file changed, 36 insertions(+), 61 deletions(-) diff --git a/driv