Re: [Intel-gfx] [PATCH v5 12/35] drm/i915: Added deferred work handler for scheduler

2016-03-01 Thread John Harrison
On 01/03/2016 09:16, Joonas Lahtinen wrote: On to, 2016-02-18 at 14:27 +, john.c.harri...@intel.com wrote: From: John Harrison The scheduler needs to do interrupt triggered work that is too complex to do in the interrupt handler. Thus it requires a deferred work handler to process such tas

Re: [Intel-gfx] [PATCH v5 12/35] drm/i915: Added deferred work handler for scheduler

2016-03-01 Thread Joonas Lahtinen
On to, 2016-02-18 at 14:27 +, john.c.harri...@intel.com wrote: > From: John Harrison > > The scheduler needs to do interrupt triggered work that is too complex > to do in the interrupt handler. Thus it requires a deferred work > handler to process such tasks asynchronously. > > v2: Updated t

[Intel-gfx] [PATCH v5 12/35] drm/i915: Added deferred work handler for scheduler

2016-02-18 Thread John . C . Harrison
From: John Harrison The scheduler needs to do interrupt triggered work that is too complex to do in the interrupt handler. Thus it requires a deferred work handler to process such tasks asynchronously. v2: Updated to reduce mutex lock usage. The lock is now only held for the minimum time within