[Bug 49817] radeon: The kernel rejected CS when running shader example from SFML library

2012-07-04 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=49817 C?dric Legrand changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

[PATCH] gma500: Fix lid related crash

2012-07-04 Thread Alan Cox
From: Alan Cox We set up the lid timer before we set up the backlight. On some devices that causes a crash as we do a backlight change before or during the setup. As this fixes a crash on boot on some setups it ought to go in ASAP. Signed-off-by: Alan Cox Tested-by:

Linux 3.2: After resume screen only turned on after switching terminals

2012-07-04 Thread Paul Menzel
gt; > > Does someone have an idea what the problem might be and how to fix it? > > Is this a regression? If so can you bisect? I do not think so. But the problem is I just got that board, have only used it with Linux 3.2.x (from Debian Sid/unstable) and this issue is not reproducible, that means, it happens in less then 5(?) percent of the suspend and resume cycles. Any idea what these acpid messages could mean? Thanks, Paul -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20120704/1275e324/attachment-0001.pgp>

Linux 3.2: After resume screen only turned on after switching terminals

2012-07-04 Thread Paul Menzel
what the problem might be and how to fix it? Thanks, Paul -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20120704/4888c87e/attachment.pgp>

[PATCH 1/2] drm/radeon: add error handling to fence_wait_empty_locked

2012-07-04 Thread Jerome Glisse
On Wed, Jul 4, 2012 at 9:25 AM, Alex Deucher wrote: > On Wed, Jul 4, 2012 at 4:25 AM, Christian K?nig > wrote: >> Instead of returning the error handle it directly >> and while at it fix the comments about the ring lock. >> >> Signed-off-by: Christian K?nig >> Reviewed-by: Michel D?nzer > >

[MMTests] IO metadata on XFS

2012-07-04 Thread Mel Gorman
On Wed, Jul 04, 2012 at 10:47:06AM +1000, Dave Chinner wrote: > > > > > > > > [c999a223: xfs: introduce an allocation workqueue] > > > > > > Which indicates that there is workqueue scheduling issues, I think. > > > The same amount of work is being done, but half of it is being > > > pushed off

[MMTests] IO metadata on XFS

2012-07-04 Thread Dave Chinner
On Tue, Jul 03, 2012 at 11:59:51AM +0100, Mel Gorman wrote: > On Tue, Jul 03, 2012 at 10:19:28AM +1000, Dave Chinner wrote: > > On Mon, Jul 02, 2012 at 08:35:16PM +0100, Mel Gorman wrote: > > > Adding dri-devel and a few others because an i915 patch contributed to > > > the regression. > > > > >

[PATCH 2/2] drm/radeon: add error handling to radeon_vm_unbind_locked

2012-07-04 Thread Christian König
Waiting for a fence can fail for different reasons, the most common is a deadlock. Signed-off-by: Christian K?nig Reviewed-by: Michel D?nzer --- drivers/gpu/drm/radeon/radeon_gart.c | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git

[PATCH 1/2] drm/radeon: add error handling to fence_wait_empty_locked

2012-07-04 Thread Christian König
Instead of returning the error handle it directly and while at it fix the comments about the ring lock. Signed-off-by: Christian K?nig Reviewed-by: Michel D?nzer --- drivers/gpu/drm/radeon/radeon.h |2 +- drivers/gpu/drm/radeon/radeon_fence.c | 33 +

[PATCH v2] of: Add videomode helper

2012-07-04 Thread Sascha Hauer
This patch adds a helper function for parsing videomodes from the devicetree. The videomode can be either converted to a struct drm_display_mode or a struct fb_videomode. Signed-off-by: Sascha Hauer --- changes since v1: - use hyphens instead of underscores for property names

Linux 3.2: After resume screen only turned on after switching terminals

2012-07-04 Thread Alex Deucher
On Wed, Jul 4, 2012 at 9:41 AM, Paul Menzel wrote: > Am Samstag, den 30.06.2012, 21:00 +0200 schrieb Paul Menzel: >> Am Dienstag, den 26.06.2012, 07:42 +0200 schrieb Michel D?nzer: >> > On Mon, 2012-06-25 at 21:14 +0200, Paul Menzel wrote: >> > > >> > > resuming from suspend to RAM the monitor

[PATCH 1/2] drm/radeon: add error handling to fence_wait_empty_locked

2012-07-04 Thread Alex Deucher
On Wed, Jul 4, 2012 at 4:25 AM, Christian K?nig wrote: > Instead of returning the error handle it directly > and while at it fix the comments about the ring lock. > > Signed-off-by: Christian K?nig > Reviewed-by: Michel D?nzer For the series: Reviewed-by: Alex Deucher > --- >

[Bug 42627] Hibernation fails to resume - Toshiba Satellite L755-161 notebook

2012-07-04 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=42627 Zhang Rui changed: What|Removed |Added Component|Hibernation/Suspend |Video(DRI - non Intel)

Re: Is drm-radeon-testing broken for anyone else?

2012-07-04 Thread David Witbrodt
Oh I wasn't aware anyone still used it, I just pushed a branch for Jerome the other day to test something, its known broken. Oh, boy... sorry for the noise, then. This was caused by the way I am using git: I cloned the Linus Torvalds tree, and then used 'git add' to include several

Re: [MMTests] IO metadata on XFS

2012-07-04 Thread Dave Chinner
On Tue, Jul 03, 2012 at 11:59:51AM +0100, Mel Gorman wrote: On Tue, Jul 03, 2012 at 10:19:28AM +1000, Dave Chinner wrote: On Mon, Jul 02, 2012 at 08:35:16PM +0100, Mel Gorman wrote: Adding dri-devel and a few others because an i915 patch contributed to the regression. On Mon, Jul

[PATCH v2] of: Add videomode helper

2012-07-04 Thread Sascha Hauer
This patch adds a helper function for parsing videomodes from the devicetree. The videomode can be either converted to a struct drm_display_mode or a struct fb_videomode. Signed-off-by: Sascha Hauer s.ha...@pengutronix.de --- changes since v1: - use hyphens instead of underscores for property

[PATCH 1/2] drm/radeon: add error handling to fence_wait_empty_locked

2012-07-04 Thread Christian König
Instead of returning the error handle it directly and while at it fix the comments about the ring lock. Signed-off-by: Christian König deathsim...@vodafone.de Reviewed-by: Michel Dänzer michel.daen...@amd.com --- drivers/gpu/drm/radeon/radeon.h |2 +-

[PATCH 2/2] drm/radeon: add error handling to radeon_vm_unbind_locked

2012-07-04 Thread Christian König
Waiting for a fence can fail for different reasons, the most common is a deadlock. Signed-off-by: Christian König deathsim...@vodafone.de Reviewed-by: Michel Dänzer michel.daen...@amd.com --- drivers/gpu/drm/radeon/radeon_gart.c | 17 ++--- 1 file changed, 14 insertions(+), 3

Re: [PATCH 1/2] drm/radeon: add error handling to fence_wait_empty_locked

2012-07-04 Thread Alex Deucher
On Wed, Jul 4, 2012 at 4:25 AM, Christian König deathsim...@vodafone.de wrote: Instead of returning the error handle it directly and while at it fix the comments about the ring lock. Signed-off-by: Christian König deathsim...@vodafone.de Reviewed-by: Michel Dänzer michel.daen...@amd.com For

Re: Linux 3.2: After resume screen only turned on after switching terminals

2012-07-04 Thread Paul Menzel
Am Samstag, den 30.06.2012, 21:00 +0200 schrieb Paul Menzel: Am Dienstag, den 26.06.2012, 07:42 +0200 schrieb Michel Dänzer: On Mon, 2012-06-25 at 21:14 +0200, Paul Menzel wrote: resuming from suspend to RAM the monitor was indicating by a blinking LED that it did not receive any

Re: Linux 3.2: After resume screen only turned on after switching terminals

2012-07-04 Thread Alex Deucher
On Wed, Jul 4, 2012 at 9:41 AM, Paul Menzel paulepan...@users.sourceforge.net wrote: Am Samstag, den 30.06.2012, 21:00 +0200 schrieb Paul Menzel: Am Dienstag, den 26.06.2012, 07:42 +0200 schrieb Michel Dänzer: On Mon, 2012-06-25 at 21:14 +0200, Paul Menzel wrote: resuming from suspend to

Re: Linux 3.2: After resume screen only turned on after switching terminals

2012-07-04 Thread Paul Menzel
Am Mittwoch, den 04.07.2012, 09:55 -0400 schrieb Alex Deucher: On Wed, Jul 4, 2012 at 9:41 AM, Paul Menzel wrote: Am Samstag, den 30.06.2012, 21:00 +0200 schrieb Paul Menzel: Am Dienstag, den 26.06.2012, 07:42 +0200 schrieb Michel Dänzer: On Mon, 2012-06-25 at 21:14 +0200, Paul Menzel

[PATCH] gma500: Fix lid related crash

2012-07-04 Thread Alan Cox
From: Alan Cox a...@linux.intel.com We set up the lid timer before we set up the backlight. On some devices that causes a crash as we do a backlight change before or during the setup. As this fixes a crash on boot on some setups it ought to go in ASAP. Signed-off-by: Alan Cox

Re: [PATCH 1/2] drm/radeon: add error handling to fence_wait_empty_locked

2012-07-04 Thread Jerome Glisse
On Wed, Jul 4, 2012 at 9:25 AM, Alex Deucher alexdeuc...@gmail.com wrote: On Wed, Jul 4, 2012 at 4:25 AM, Christian König deathsim...@vodafone.de wrote: Instead of returning the error handle it directly and while at it fix the comments about the ring lock. Signed-off-by: Christian König

[Bug 49817] radeon: The kernel rejected CS when running shader example from SFML library

2012-07-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49817 Cédric Legrand legrand.cedric...@gmail.com changed: What|Removed |Added Status|RESOLVED|REOPENED