Re: [PATCH] drm/fb-helper: generic: Call drm_client_add() after setup is done

2019-04-03 Thread Noralf Trønnes
Den 02.04.2019 09.55, skrev Daniel Vetter: > On Mon, Apr 01, 2019 at 04:13:58PM +0200, Noralf Trønnes wrote: >> Hotplug can happen while drm_fbdev_generic_setup() is running so move >> drm_client_add() call after setup is done to avoid >> drm_fbdev_client_hotplug() running in two threads at the

Re: [PATCH] drm/fb-helper: generic: Call drm_client_add() after setup is done

2019-04-02 Thread Daniel Vetter
On Mon, Apr 01, 2019 at 04:13:58PM +0200, Noralf Trønnes wrote: > Hotplug can happen while drm_fbdev_generic_setup() is running so move > drm_client_add() call after setup is done to avoid > drm_fbdev_client_hotplug() running in two threads at the same time. > > Fixes: 9060d7f49376

[PATCH] drm/fb-helper: generic: Call drm_client_add() after setup is done

2019-04-01 Thread Noralf Trønnes
Hotplug can happen while drm_fbdev_generic_setup() is running so move drm_client_add() call after setup is done to avoid drm_fbdev_client_hotplug() running in two threads at the same time. Fixes: 9060d7f49376 ("drm/fb-helper: Finish the generic fbdev emulation") Reported-by: Daniel Vetter