[Intel-gfx] [PATCH] drm/i915: make fbdev initialization asynchronous v2

2014-05-28 Thread Jesse Barnes
This gets us out of our init code and out to userspace quite a bit faster, but does open us up to some bugs given the state of our init time locking. v2: switch to async_schedule (Chris) check with lockdep, seems happy (Jesse) move hotplug enable flag set to fbdev_initial_config (Jesse) S

Re: [Intel-gfx] [PATCH] drm/i915: make fbdev initialization asynchronous v2

2014-08-29 Thread Chris Wilson
On Wed, May 28, 2014 at 02:39:03PM -0700, Jesse Barnes wrote: > This gets us out of our init code and out to userspace quite a bit > faster, but does open us up to some bugs given the state of our init > time locking. > > v2: switch to async_schedule (Chris) > check with lockdep, seems happy (

Re: [Intel-gfx] [PATCH] drm/i915: make fbdev initialization asynchronous v2

2014-08-29 Thread Daniel Vetter
On Fri, Aug 29, 2014 at 07:52:10PM +0100, Chris Wilson wrote: > On Wed, May 28, 2014 at 02:39:03PM -0700, Jesse Barnes wrote: > > This gets us out of our init code and out to userspace quite a bit > > faster, but does open us up to some bugs given the state of our init > > time locking. > > > > v2

Re: [Intel-gfx] [PATCH] drm/i915: make fbdev initialization asynchronous v2

2014-05-28 Thread Daniel Vetter
On Wed, May 28, 2014 at 02:39:03PM -0700, Jesse Barnes wrote: > This gets us out of our init code and out to userspace quite a bit > faster, but does open us up to some bugs given the state of our init > time locking. > > v2: switch to async_schedule (Chris) > check with lockdep, seems happy (

Re: [Intel-gfx] [PATCH] drm/i915: make fbdev initialization asynchronous v2

2014-05-28 Thread Jesse Barnes
On Wed, 28 May 2014 23:40:47 +0200 Daniel Vetter wrote: > On Wed, May 28, 2014 at 02:39:03PM -0700, Jesse Barnes wrote: > > This gets us out of our init code and out to userspace quite a bit > > faster, but does open us up to some bugs given the state of our init > > time locking. > > > > v2: sw