Re: [Intel-gfx] [CI 05/20] drm/i915: Make queueing the hangcheck work inline

2016-05-19 Thread Chris Wilson
On Thu, May 19, 2016 at 01:53:51PM +0100, Tvrtko Ursulin wrote: > > > On 19/05/16 12:32, Chris Wilson wrote: > >Since the function is a small wrapper around schedule_delayed_work(), > >move it inline to remove the function call overhead for the principle > >caller. > > Alternatively move it to i

Re: [Intel-gfx] [CI 05/20] drm/i915: Make queueing the hangcheck work inline

2016-05-19 Thread Tvrtko Ursulin
On 19/05/16 12:32, Chris Wilson wrote: Since the function is a small wrapper around schedule_delayed_work(), move it inline to remove the function call overhead for the principle caller. Alternatively move it to i915_gem.c and let the compiler decide? But it is small enough, so anyway: Revie

[Intel-gfx] [CI 05/20] drm/i915: Make queueing the hangcheck work inline

2016-05-19 Thread Chris Wilson
Since the function is a small wrapper around schedule_delayed_work(), move it inline to remove the function call overhead for the principle caller. Signed-off-by: Chris Wilson --- drivers/gpu/drm/i915/i915_drv.h | 17 - drivers/gpu/drm/i915/i915_irq.c | 16 2 fil