search for: 113005

Displaying 5 results from an estimated 5 matches for "113005".

Did you mean: 11305
2006 Jun 30
2
aggregate data.frame by one column
...NA NA NA NA 112 112002 2 3 3 6 2 6 112 112002 2 1 1 3 4 4 112 112003 2 6 6 6 5 6 112 112003 2 5 7 6 6 6 112 112003 2 6 6 6 4 5 114 114004 2 2 3 3 2 4 114 114004 2 5 3 4 4 2 114 114004 2 NA NA NA NA NA 113 113005 2 5 5 6 6 5 113 113005 2 7 7 4 7 6 111 111006 2 5 7 7 7 7 112 112007 2 7 7 7 2 2 112 112007 2 6 6 6 1 2 112 112007 2 7 6 6 2 2 111 111008 2 4 1 3 1 4 111 111008 2 3 1 5 3 2 This is only a small part of...
2016 Jul 13
2
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
...ast patch series. This patch is only needed for drivers that use console_lock (for drm_fb_helper_set_suspend) in their runtime resume functions. Lukas posted fixes for runtime PM reference leaks, those are different from this deadlock (see https://lists.freedesktop.org/archives/dri-devel/2016-July/113005.html for a backtrace for this issue). The deadlock could also be avoided if the device backing the fbcon is somehow runtime-resumed outside the lock, but that feels like a larger hack that does not seem easy. The i915 patch was done to reduce resume time (due to console_lock contention), that fea...
2016 Jul 15
1
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
...eded for drivers that use console_lock (for > > drm_fb_helper_set_suspend) in their runtime resume functions. > > Lukas posted fixes for runtime PM reference leaks, those are different > > from this deadlock (see > > https://lists.freedesktop.org/archives/dri-devel/2016-July/113005.html > > for a backtrace for this issue). > > > > The deadlock could also be avoided if the device backing the fbcon is > > somehow runtime-resumed outside the lock, but that feels like a larger > > hack that does not seem easy. > > > > The i915 patch was...
2016 Jul 13
0
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
...his patch is only needed for drivers that use console_lock (for > drm_fb_helper_set_suspend) in their runtime resume functions. > Lukas posted fixes for runtime PM reference leaks, those are different > from this deadlock (see > https://lists.freedesktop.org/archives/dri-devel/2016-July/113005.html > for a backtrace for this issue). > > The deadlock could also be avoided if the device backing the fbcon is > somehow runtime-resumed outside the lock, but that feels like a larger > hack that does not seem easy. > > The i915 patch was done to reduce resume time (due to...
2016 Jul 12
6
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
The FBIOPUT_CON2FBMAP ioctl takes a console_lock(). When this is called while nouveau was runtime suspended, a deadlock would occur due to nouveau_fbcon_set_suspend also trying to obtain console_lock(). Fix this by delaying the drm_fb_helper_set_suspend call. Based on the i915 code (which was done for performance reasons though). Cc: Chris Wilson <chris at chris-wilson.co.uk> Cc: Daniel