Re: [PATCH] drm: Prevent early NULL dereference of fb_helper->fb

2017-07-20 Thread Chris Wilson
Quoting Daniel Vetter (2017-07-20 09:26:32) > On Wed, Jul 19, 2017 at 04:24:50PM +0100, Chris Wilson wrote: > > Prior to the fbdev being asynchronously configured on boot, the > > fb_helper->fb may be unset. > > > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101767 > > Signed-off-by: C

Re: [PATCH] drm: Prevent early NULL dereference of fb_helper->fb

2017-07-20 Thread Daniel Vetter
On Wed, Jul 19, 2017 at 04:24:50PM +0100, Chris Wilson wrote: > Prior to the fbdev being asynchronously configured on boot, the > fb_helper->fb may be unset. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101767 > Signed-off-by: Chris Wilson > Cc: Thierry Reding > Cc: Daniel Vetter

[PATCH] drm: Prevent early NULL dereference of fb_helper->fb

2017-07-19 Thread Chris Wilson
Prior to the fbdev being asynchronously configured on boot, the fb_helper->fb may be unset. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101767 Signed-off-by: Chris Wilson Cc: Thierry Reding Cc: Daniel Vetter --- This may not be necessary with the recent async rework? One hopes. ---