Re: lvds downclocking breaks on G45/thinkpad T500

2009-12-27 Thread ykzhao
On Sun, 2009-12-27 at 01:41 +0800, Andres Freund wrote: On Saturday 26 December 2009 17:49:29 Andres Freund wrote: On 2.6.33-rc1 I noticed that the display of my T500 with a G45 reacts very slowly (you can see the text appearing) and colors take a time to solidify. I.e. making a white

[Bug 25063] Scaled mode doesn't actually scale

2009-12-27 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25063 Gavin Kinsey ga...@trollgod.org.uk changed: What|Removed |Added Component|DRM/Radeon |Driver/Radeon

[Bug 25063] Scaled mode doesn't actually scale

2009-12-27 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25063 Gavin Kinsey ga...@trollgod.org.uk changed: What|Removed |Added OS/Version|All |Linux (All)

Re: lvds downclocking breaks on G45/thinkpad T500

2009-12-27 Thread Andres Freund
On Sunday 27 December 2009 14:10:55 ykzhao wrote: On Sun, 2009-12-27 at 01:41 +0800, Andres Freund wrote: On Saturday 26 December 2009 17:49:29 Andres Freund wrote: On 2.6.33-rc1 I noticed that the display of my T500 with a G45 reacts very slowly (you can see the text appearing) and

[Bug 25728] PATCH: Correction to drm_mm.c, part of kernel driver

2009-12-27 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25728 Bob Gleitsmann rjgle...@bellsouth.net changed: What|Removed |Added CC|

[Bug 25728] PATCH: Correction to drm_mm.c, part of kernel driver

2009-12-27 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25728 --- Comment #3 from Maarten Maathuis madman2...@gmail.com 2009-12-27 12:41:28 PST --- I've added some CC's, this looks like a bug indeed. -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving

[Bug 25728] PATCH: Correction to drm_mm.c, part of kernel driver

2009-12-27 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25728 Dave Airlie airl...@freedesktop.org changed: What|Removed |Added Status|NEW |ASSIGNED ---

[Bug 25728] PATCH: Correction to drm_mm.c, part of kernel driver

2009-12-27 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=25728 Dave Airlie airl...@freedesktop.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug 14910] Stable version 2.6.32.2 broke my KMS Radeon setup

2009-12-27 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14910 Alex Deucher alexdeuc...@gmail.com changed: What|Removed |Added CC||alexdeuc...@gmail.com

Re: lvds downclocking breaks on G45/thinkpad T500

2009-12-27 Thread ykzhao
On Sun, 2009-12-27 at 22:18 +0800, Andres Freund wrote: On Sunday 27 December 2009 14:10:55 ykzhao wrote: On Sun, 2009-12-27 at 01:41 +0800, Andres Freund wrote: On Saturday 26 December 2009 17:49:29 Andres Freund wrote: On 2.6.33-rc1 I noticed that the display of my T500 with a G45

[PATCH 3/5] drivers/gpu: Correct NULL test

2009-12-27 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk Test the just-allocated value for NULL rather than some other value. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // smpl @@ expression x,y; statement S; @@ x = \(kmalloc\|kcalloc\|kzalloc\)(...); ( if ((x) == NULL) S |