Glitch in newer drm-next/drm-radeon-testing

2010-08-02 Thread Dave Airlie
On Mon, Aug 2, 2010 at 8:12 PM, Marius Gr?ger wrote: > Am 07.06.2010 00:15, wrote Dave Airlie: >> >> On Mon, Jun 7, 2010 at 3:52 AM, Marius Gr?ger >> ?wrote: >>> >>> Am 06.06.2010 18:47, schrieb James Simmons: >> Apologies for such an unspecific description, and for what almost >>

[PATCH] drm/radeon/kms/igp: sideport is AMD only

2010-08-02 Thread Alex Deucher
Intel variants don't support it. Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_atombios.c | 15 ++- drivers/gpu/drm/radeon/radeon_combios.c |4 drivers/gpu/drm/radeon/rs600.c |1 - drivers/gpu/drm/radeon/rs690.c |2 +- 4 files

[Bug 29311] [r300g]: Compiz crashes when trying to start it with latest mesa master.

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29311 --- Comment #4 from Scott Moreau 2010-08-02 19:28:43 PDT --- (In reply to comment #3) > (In reply to comment #2) > > Fixed by commit aef4500ca4ae9e5bc57560c6f9a32d9ad892975b. > > With latest mesa master the same symptoms persist here.

2.6.35-rc6-git6: Reported regressions from 2.6.34

2010-08-02 Thread Tejun Heo
Hello, Linus. On 08/01/2010 08:01 PM, Linus Torvalds wrote: > This has a proposed patch. I don't know what the status of it is, though. > Jens? > >http://marc.info/?l=linux-kernel=127950018204029=2 > >> Bug-Entry : http://bugzilla.kernel.org/show_bug.cgi?id=16393 >> Subject :

[Bug 28800] [r300c, r300g] Texture corruption with World of Warcraft

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28800 --- Comment #13 from Chris Rankin 2010-08-02 17:25:43 PDT --- I have just upgraded this machine from 2.6.33.6 to 2.6.34.2 and have discovered that the texture corruption is now *massively* reduced. There are still artifacts here and there if I

[Bugme-new] [Bug 16488] New: [i915] Framebuffer ID error after suspend/hibernate leading to X crash

2010-08-02 Thread Andrew Morton
(switched to email. Please respond via emailed reply-to-all, not via the bugzilla web interface). On Sun, 1 Aug 2010 08:55:49 GMT bugzilla-daemon at bugzilla.kernel.org wrote: > https://bugzilla.kernel.org/show_bug.cgi?id=16488 Innocuous-looking one-liner is said to have made Milan's X server

[Bug 29311] [r300g]: Compiz crashes when trying to start it with latest mesa master.

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29311 --- Comment #3 from Scott Moreau 2010-08-02 16:49:08 PDT --- (In reply to comment #2) > Fixed by commit aef4500ca4ae9e5bc57560c6f9a32d9ad892975b. With latest mesa master the same symptoms persist here. -- Configure bugmail:

[Bug 29367] [KMS] Assertion `boi->space_accounted' failed. on rv280

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29367 --- Comment #3 from Andrew Randrianasulu 2010-08-02 15:22:26 PDT --- Forgot to say - bug happens with compositing on, using e16's built-in compositor (xrender-based) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Bug 29367] [KMS] Assertion `boi->space_accounted' failed. on rv280

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29367 --- Comment #2 from Andrew Randrianasulu 2010-08-02 14:48:33 PDT --- vblank_mode=0 | 1 helps me avoid this bug. But vblank_mode=2 expose bug, just like default. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Bug 29367] [KMS] Assertion `boi->space_accounted' failed. on rv280

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29367 --- Comment #1 from Andrew Randrianasulu 2010-08-02 14:41:40 PDT --- Created an attachment (id=37532) --> (https://bugs.freedesktop.org/attachment.cgi?id=37532) gdb.txt from ray demo I can easily produce more bt full , from glxgears for

[Bug 29367] New: [KMS] Assertion `boi->space_accounted' failed. on rv280

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29367 Summary: [KMS] Assertion `boi->space_accounted' failed. on rv280 Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW

[Bug 28800] [r300c, r300g] Texture corruption with World of Warcraft

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28800 --- Comment #12 from Chris Rankin 2010-08-02 13:48:41 PDT --- (In reply to comment #11) > Could you try this patch? Sorry, that made no difference. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[Bug 28993] [r300g] lightmap texture corruption in some games

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28993 --- Comment #5 from ?lmos 2010-08-02 12:27:12 PDT --- Sadly, the patch has no apparent effect. I tried to change the texture detail and to turn detail textures on and off in ut2004, but the always same surfaces get corrupted. In the menu of

[PATCH] drm/radeon/kms: handle the case of no active displays properly in the bandwidth code

2010-08-02 Thread Alex Deucher
Logic was: if (mode0 && mode1) else if (mode0) else Should be: if (mode0 && mode1) else if (mode0) else if (mode1) Otherwise we may end up calculating the priority regs with unitialized values. Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=16492 Signed-off-by: Alex Deucher Cc: stable at

[PATCH] [drm-core-next] drm: Fixed coding style issues

2010-08-02 Thread Nicolas Kaiser
Fixed some brace, spacing and whitespace, printk, and initialisation of statics and globals coding style issues. Signed-off-by: Nicolas Kaiser --- Against drm-core-next. Supersedes "drm: fixed brace, spacing and whitespace coding style issues" drivers/gpu/drm/ati_pcigart.c |

[Bug 28341] Flickering screen in Neverball on drm-radeon-testing

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28341 Mario Kleiner changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #14 from Alex Deucher 2010-08-02 11:57:53 PDT --- (In reply to comment #13) > (In reply to comment #12) > > Unfortunately, load detection for tv-out is inherently unreliable on a lot > > of > > boards (You can end up with false

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #13 from Marius Groeger 2010-08-02 11:33:07 PDT --- (In reply to comment #12) > Unfortunately, load detection for tv-out is inherently unreliable on a lot of > boards (You can end up with false positives and false negatives). The

[Bug 29137] [r300g] troubles with wine and "r300: Max size of the constant buffer is 256*4 floats."

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #9 from Sven Arvidsson 2010-08-02 11:20:35 PDT --- (In reply to comment #6) > It won't certainly get fixed in r300g, we would have to reorder constants > every > draw call, which would incur noticable perfomance drop (in Gallium,

[Bug 28386] [KMS] echo standby > /sys/power/state hang machine forever

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28386 Andrew Randrianasulu changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 29363] [r300g] Starcraft 2: "r300 VP: Compiler error"

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29363 --- Comment #3 from Pavel Ondra?ka 2010-08-02 09:50:35 PDT --- Created an attachment (id=37530) --> (https://bugs.freedesktop.org/attachment.cgi?id=37530) output with RADEON_DEBUG=vp -- Configure bugmail:

[Bug 29363] [r300g] Starcraft 2: "r300 VP: Compiler error"

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29363 --- Comment #2 from Tom Stellard 2010-08-02 09:22:37 PDT --- Can you run the program again with the environment variable RADEON_DEBUG=vp and post the output. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ---

[Bug 29363] [r300g] Starcraft 2: "r300 VP: Compiler error"

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29363 --- Comment #1 from Pavel Ondra?ka 2010-08-02 09:15:13 PDT --- Created an attachment (id=37528) --> (https://bugs.freedesktop.org/attachment.cgi?id=37528) screenshot -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Bug 29363] New: [r300g] Starcraft 2: "r300 VP: Compiler error"

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29363 Summary: [r300g] Starcraft 2: "r300 VP: Compiler error" Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium

[Bug 29355] M92 : Xserver fails to start

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29355 Alex Deucher changed: What|Removed |Added Product|Mesa|DRI Component|Drivers/DRI/R600

[Bug 29355] M92 : Xserver fails to start

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29355 --- Comment #2 from Alex Deucher 2010-08-02 09:03:21 PDT --- Since you are using kms, can you attach the dmesg output as well? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail

[Bug 29355] M92 : Xserver fails to start

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29355 Alex Deucher changed: What|Removed |Added Attachment #37517|application/octet-stream|text/plain mime type|

[Bug 28993] [r300g] lightmap texture corruption in some games

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28993 --- Comment #4 from Marek Ol??k 2010-08-02 08:54:15 PDT --- Created an attachment (id=37526) View: https://bugs.freedesktop.org/attachment.cgi?id=37526 Review: https://bugs.freedesktop.org/review?bug=28993=37526 possible workaround Could

[Bug 29311] [r300g]: Compiz crashes when trying to start it with latest mesa master.

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29311 Marek Ol??k changed: What|Removed |Added Resolution|WONTFIX |FIXED --- Comment #2 from Marek Ol??k

[Bug 28615] [r300g] Hard freeze when running POP: Sands of time under wine

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28615 --- Comment #4 from Marek Ol??k 2010-08-02 08:43:57 PDT --- I've fixed the hardlock we were getting in wine tests. Could you please test POP again? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[Bug 29020] [r300g] Wine d3d9 tests hardlock

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29020 Marek Ol??k changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[PATCH] drm: fixed brace, spacing and whitespace coding style issues

2010-08-02 Thread Jesse Barnes
On Mon, 02 Aug 2010 10:16:53 +1000 Dave Airlie wrote: > On Wed, 2010-07-14 at 16:11 +0200, Nicolas Kaiser wrote: > > Fixed brace, spacing and whitespace coding style issues. > > Failed to apply to drm-core-next, might always be a pain to get > something like this to apply though, whitespace

[Bug 29137] [r300g] troubles with wine and "r300: Max size of the constant buffer is 256*4 floats."

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #8 from Henri Verbeet 2010-08-02 08:10:10 PDT --- (In reply to comment #7) > One last question. Is it OK to report bugs spotted with this hack applied? The patch is fairly safe, but in general you shouldn't report (Wine) bugs with

[Bug 29137] [r300g] troubles with wine and "r300: Max size of the constant buffer is 256*4 floats."

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #7 from Pavel Ondra?ka 2010-08-02 07:57:10 PDT --- One last question. Is it OK to report bugs spotted with this hack applied? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving

[Bug 29137] [r300g] troubles with wine and "r300: Max size of the constant buffer is 256*4 floats."

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #6 from Marek Ol??k 2010-08-02 07:40:17 PDT --- It won't certainly get fixed in r300g, we would have to reorder constants every draw call, which would incur noticable perfomance drop (in Gallium, constant buffers may be reused for

[Bug 29137] [r300g] troubles with wine and "r300: Max size of the constant buffer is 256*4 floats."

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #5 from Pavel Ondra?ka 2010-08-02 07:31:59 PDT --- (In reply to comment #4) > Created an attachment (id=37525) View: https://bugs.freedesktop.org/attachment.cgi?id=37525 Review: https://bugs.freedesktop.org/review?bug=29137=37525

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #12 from Alex Deucher 2010-08-02 07:25:08 PDT --- (In reply to comment #11) > I verified this issue is still present with 2.6.35rc6 and the current X > packages on xorg-edgers. Something new I noticed with Ubuntu 10.04: if I set >

[Bug 29137] [r300g] troubles with wine and "r300: Max size of the constant buffer is 256*4 floats."

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #4 from Henri Verbeet 2010-08-02 06:52:06 PDT --- Created an attachment (id=37525) View: https://bugs.freedesktop.org/attachment.cgi?id=37525 Review: https://bugs.freedesktop.org/review?bug=29137=37525 wined3d hack Something

[Bug 29137] [r300g] troubles with wine and "r300: Max size of the constant buffer is 256*4 floats."

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #3 from Pavel Ondra?ka 2010-08-02 06:41:10 PDT --- (In reply to comment #2) > As a quick workaround you could modify Wine to use a slightly smaller array in > shader_generate_glsl_declarations(), but we can't do that in general in

[Bug 29355] M92 : Xserver fails to start

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29355 --- Comment #1 from samit vats 2010-08-02 03:41:28 PDT --- Created an attachment (id=37518) --> (https://bugs.freedesktop.org/attachment.cgi?id=37518) xorg.conf -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Bug 29355] New: M92 : Xserver fails to start

2010-08-02 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29355 Summary: M92 : Xserver fails to start Product: Mesa Version: unspecified Platform: x86-64 (AMD64) OS/Version: All Status: NEW Severity: critical Priority: medium

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #11 from Marius Groeger marius.groe...@web.de 2010-08-02 03:03:13 PDT --- I verified this issue is still present with 2.6.35rc6 and the current X packages on xorg-edgers. Something new I noticed with Ubuntu 10.04: if I set

Re: Glitch in newer drm-next/drm-radeon-testing

2010-08-02 Thread Marius Gröger
Am 07.06.2010 00:15, wrote Dave Airlie: On Mon, Jun 7, 2010 at 3:52 AM, Marius Gröger marius.groe...@googlemail.com wrote: Am 06.06.2010 18:47, schrieb James Simmons: Apologies for such an unspecific description, and for what almost seems like a support request for MythTV. I wouldn't post

Re: Glitch in newer drm-next/drm-radeon-testing

2010-08-02 Thread Dave Airlie
On Mon, Aug 2, 2010 at 8:12 PM, Marius Gröger marius.groe...@googlemail.com wrote: Am 07.06.2010 00:15, wrote Dave Airlie: On Mon, Jun 7, 2010 at 3:52 AM, Marius Gröger marius.groe...@googlemail.com  wrote: Am 06.06.2010 18:47, schrieb James Simmons: Apologies for such an unspecific

[PATCH] [drm-core-next] drm: Fixed coding style issues

2010-08-02 Thread Nicolas Kaiser
Fixed some brace, spacing and whitespace, printk, and initialisation of statics and globals coding style issues. Signed-off-by: Nicolas Kaiser ni...@nikai.net --- Against drm-core-next. Supersedes drm: fixed brace, spacing and whitespace coding style issues

[Bug 29355] New: M92 : Xserver fails to start

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29355 Summary: M92 : Xserver fails to start Product: Mesa Version: unspecified Platform: x86-64 (AMD64) OS/Version: All Status: NEW Severity: critical Priority: medium

[Bug 29355] M92 : Xserver fails to start

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29355 --- Comment #1 from samit vats hysv...@gmail.com 2010-08-02 03:41:28 PDT --- Created an attachment (id=37518) -- (https://bugs.freedesktop.org/attachment.cgi?id=37518) xorg.conf -- Configure bugmail:

[Bug 29137] [r300g] troubles with wine and r300: Max size of the constant buffer is 256*4 floats.

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #3 from Pavel Ondračka dra...@centrum.cz 2010-08-02 06:41:10 PDT --- (In reply to comment #2) As a quick workaround you could modify Wine to use a slightly smaller array in shader_generate_glsl_declarations(), but we can't do that

[Bug 29137] [r300g] troubles with wine and r300: Max size of the constant buffer is 256*4 floats.

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #4 from Henri Verbeet hverb...@gmail.com 2010-08-02 06:52:06 PDT --- Created an attachment (id=37525) View: https://bugs.freedesktop.org/attachment.cgi?id=37525 Review: https://bugs.freedesktop.org/review?bug=29137attachment=37525

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #12 from Alex Deucher ag...@yahoo.com 2010-08-02 07:25:08 PDT --- (In reply to comment #11) I verified this issue is still present with 2.6.35rc6 and the current X packages on xorg-edgers. Something new I noticed with Ubuntu 10.04:

[Bug 29137] [r300g] troubles with wine and r300: Max size of the constant buffer is 256*4 floats.

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #5 from Pavel Ondračka dra...@centrum.cz 2010-08-02 07:31:59 PDT --- (In reply to comment #4) Created an attachment (id=37525) View: https://bugs.freedesktop.org/attachment.cgi?id=37525 Review:

[Bug 29137] [r300g] troubles with wine and r300: Max size of the constant buffer is 256*4 floats.

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #6 from Marek Olšák mar...@gmail.com 2010-08-02 07:40:17 PDT --- It won't certainly get fixed in r300g, we would have to reorder constants every draw call, which would incur noticable perfomance drop (in Gallium, constant buffers may

[Bug 29137] [r300g] troubles with wine and r300: Max size of the constant buffer is 256*4 floats.

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29137 --- Comment #8 from Henri Verbeet hverb...@gmail.com 2010-08-02 08:10:10 PDT --- (In reply to comment #7) One last question. Is it OK to report bugs spotted with this hack applied? The patch is fairly safe, but in general you shouldn't report

Re: [PATCH] drm: fixed brace, spacing and whitespace coding style issues

2010-08-02 Thread Jesse Barnes
On Mon, 02 Aug 2010 10:16:53 +1000 Dave Airlie airl...@redhat.com wrote: On Wed, 2010-07-14 at 16:11 +0200, Nicolas Kaiser wrote: Fixed brace, spacing and whitespace coding style issues. Failed to apply to drm-core-next, might always be a pain to get something like this to apply though,

[Bug 29020] [r300g] Wine d3d9 tests hardlock

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29020 Marek Olšák mar...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 28615] [r300g] Hard freeze when running POP: Sands of time under wine

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28615 --- Comment #4 from Marek Olšák mar...@gmail.com 2010-08-02 08:43:57 PDT --- I've fixed the hardlock we were getting in wine tests. Could you please test POP again? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Bug 29311] [r300g]: Compiz crashes when trying to start it with latest mesa master.

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29311 Marek Olšák mar...@gmail.com changed: What|Removed |Added Resolution|WONTFIX |FIXED --- Comment #2 from

[Bug 28993] [r300g] lightmap texture corruption in some games

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28993 --- Comment #4 from Marek Olšák mar...@gmail.com 2010-08-02 08:54:15 PDT --- Created an attachment (id=37526) View: https://bugs.freedesktop.org/attachment.cgi?id=37526 Review: https://bugs.freedesktop.org/review?bug=28993attachment=37526

[Bug 29355] M92 : Xserver fails to start

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29355 Alex Deucher ag...@yahoo.com changed: What|Removed |Added Attachment #37517|application/octet-stream|text/plain mime

[Bug 29355] M92 : Xserver fails to start

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29355 Alex Deucher ag...@yahoo.com changed: What|Removed |Added Product|Mesa|DRI

[Bug 29363] New: [r300g] Starcraft 2: r300 VP: Compiler error

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29363 Summary: [r300g] Starcraft 2: r300 VP: Compiler error Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium

[Bug 29363] [r300g] Starcraft 2: r300 VP: Compiler error

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29363 --- Comment #1 from Pavel Ondračka dra...@centrum.cz 2010-08-02 09:15:13 PDT --- Created an attachment (id=37528) -- (https://bugs.freedesktop.org/attachment.cgi?id=37528) screenshot -- Configure bugmail:

[Bug 29363] [r300g] Starcraft 2: r300 VP: Compiler error

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29363 --- Comment #2 from Tom Stellard tstel...@gmail.com 2010-08-02 09:22:37 PDT --- Can you run the program again with the environment variable RADEON_DEBUG=vp and post the output. -- Configure bugmail:

[Bug 29363] [r300g] Starcraft 2: r300 VP: Compiler error

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29363 --- Comment #3 from Pavel Ondračka dra...@centrum.cz 2010-08-02 09:50:35 PDT --- Created an attachment (id=37530) -- (https://bugs.freedesktop.org/attachment.cgi?id=37530) output with RADEON_DEBUG=vp -- Configure bugmail:

[Bug 28386] [KMS] echo standby /sys/power/state hang machine forever

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28386 Andrew Randrianasulu rand...@mail.ru changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #14 from Alex Deucher ag...@yahoo.com 2010-08-02 11:57:53 PDT --- (In reply to comment #13) (In reply to comment #12) Unfortunately, load detection for tv-out is inherently unreliable on a lot of boards (You can end up with

[Bug 28341] Flickering screen in Neverball on drm-radeon-testing

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28341 Mario Kleiner mario.klei...@tuebingen.mpg.de changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 28800] [r300c, r300g] Texture corruption with World of Warcraft

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28800 --- Comment #12 from Chris Rankin ranki...@googlemail.com 2010-08-02 13:48:41 PDT --- (In reply to comment #11) Could you try this patch? Sorry, that made no difference. -- Configure bugmail:

[Bug 29367] New: [KMS] Assertion `boi-space_accounted' failed. on rv280

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29367 Summary: [KMS] Assertion `boi-space_accounted' failed. on rv280 Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW

[Bug 29367] [KMS] Assertion `boi-space_accounted' failed. on rv280

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29367 --- Comment #1 from Andrew Randrianasulu rand...@mail.ru 2010-08-02 14:41:40 PDT --- Created an attachment (id=37532) -- (https://bugs.freedesktop.org/attachment.cgi?id=37532) gdb.txt from ray demo I can easily produce more bt full , from

[Bug 29367] [KMS] Assertion `boi-space_accounted' failed. on rv280

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29367 --- Comment #2 from Andrew Randrianasulu rand...@mail.ru 2010-08-02 14:48:33 PDT --- vblank_mode=0 | 1 helps me avoid this bug. But vblank_mode=2 expose bug, just like default. -- Configure bugmail:

Re: [Bugme-new] [Bug 16488] New: [i915] Framebuffer ID error after suspend/hibernate leading to X crash

2010-08-02 Thread Andrew Morton
(switched to email. Please respond via emailed reply-to-all, not via the bugzilla web interface). On Sun, 1 Aug 2010 08:55:49 GMT bugzilla-dae...@bugzilla.kernel.org wrote: https://bugzilla.kernel.org/show_bug.cgi?id=16488 Innocuous-looking one-liner is said to have made Milan's X server

[Bug 28800] [r300c, r300g] Texture corruption with World of Warcraft

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28800 --- Comment #13 from Chris Rankin ranki...@googlemail.com 2010-08-02 17:25:43 PDT --- I have just upgraded this machine from 2.6.33.6 to 2.6.34.2 and have discovered that the texture corruption is now *massively* reduced. There are still

[PATCH] expand gamma_set

2010-08-02 Thread James Simmons
Expand the crtc_gamma_set function to accept a starting offset. The reason for this is to eventually use this function for setcolreg from drm_fb_helper.c. The fbdev colormap function can start at any offset in the color map. Signed-by: James Simmons jsimm...@infradead.org diff --git

[Bug 29311] [r300g]: Compiz crashes when trying to start it with latest mesa master.

2010-08-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29311 --- Comment #4 from Scott Moreau ore...@gmail.com 2010-08-02 19:28:43 PDT --- (In reply to comment #3) (In reply to comment #2) Fixed by commit aef4500ca4ae9e5bc57560c6f9a32d9ad892975b. With latest mesa master the same symptoms persist