[Bug 31499] [r300g] KWin Lanczos filter problems - Black Windows using effects

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31499 --- Comment #6 from Tom Stellard 2010-11-20 00:07:55 PST --- As the shader is currently written, it should use 50 constants, your hardware only supports 32. So unless the KDE devs can modify the shader to use less constants, it won't work with

[Bug 31780] DRM/Nouveau Blank Screen with 8500 GT

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31780 Kevin Winchester changed: What|Removed |Added AssignedTo|dri-de...@lists.freedesktop |nouv...@lists.freedesktop.o

[Bug 29787] random XRandR failures (i2c related?)

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29787 --- Comment #14 from Arno Schuring 2010-11-20 05:13:34 PST --- Grumble. So, how will this be fixed? Sprinkle the code with preempt_disable()/enable() pairs? Advise all users (well, me) to disable preemption? Change the code so it no longer acts

[Bug 31788] New: r600g: Fix location for clip plane registers

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31788 Summary: r600g: Fix location for clip plane registers Product: Mesa Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: medium

[Bug 31788] r600g: Fix location for clip plane registers

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31788 --- Comment #1 from Owen Taylor 2010-11-20 06:44:08 PST --- Created an attachment (id=40436) View: https://bugs.freedesktop.org/attachment.cgi?id=40436 Review: https://bugs.freedesktop.org/review?bug=31788&attachment=40436 r600g: Fix location

Re: [00/66] 2.6.36.1-stable review

2010-11-20 Thread Andrew Lutomirski
On Sat, Nov 20, 2010 at 10:52 AM, Greg KH wrote: > On Sat, Nov 20, 2010 at 09:24:05AM -0500, Andy Lutomirski wrote: >> Greg KH wrote: >>> This is the start of the stable review cycle for the 2.6.36.1 release. >>> There are 66 patches in this series, all will be posted as a response >>> to this one

Re: git repos, r600g prerequites

2010-11-20 Thread Marius Gröger
Am 18.11.2010 15:34, schrieb Jerome Glisse: Best is to use mesa master repository. And kernel 2.6.36 or newer, the other drm kernel tree are mostly to fix issues and are interesting if you are facing one of those issues or just want to help in testing drm. Just a quick follow-up: current drm gi

[Bug 29787] random XRandR failures (i2c related?)

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29787 --- Comment #15 from Alex Deucher 2010-11-20 09:10:56 PST --- (In reply to comment #14) > Grumble. So, how will this be fixed? Sprinkle the code with > preempt_disable()/enable() pairs? Advise all users (well, me) to disable > preemption? Change

[Bug 31788] r600g: Fix location for clip plane registers

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31788 Alex Deucher changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: 2.6.37-rc2-git4: Reported regressions 2.6.35 -> 2.6.36

2010-11-20 Thread Mark Lord
On 10-11-19 11:39 AM, Alex Deucher wrote: On Thu, Nov 18, 2010 at 7:47 PM, Mark Lord wrote: My non-Intel graphics notebook (has ATI X1400 graphics) also has a resume regression with 2.6.36. But it does work fine with 2.6.35 (and earlier, back many years). As a result, I'm stuck with 2.6.35 f

Re: 2.6.37-rc2-git4: Reported regressions 2.6.35 -> 2.6.36

2010-11-20 Thread Alex Deucher
On Fri, Nov 19, 2010 at 5:55 PM, Mark Lord wrote: > On 10-11-19 11:39 AM, Alex Deucher wrote: >> >> On Thu, Nov 18, 2010 at 7:47 PM, Mark Lord  wrote: >> >>> My non-Intel graphics notebook (has ATI X1400 graphics) also has a resume >>> regression with 2.6.36.  But it does work fine with 2.6.35 (an

Re: 2.6.37-rc2-git4: Reported regressions 2.6.35 -> 2.6.36

2010-11-20 Thread Mark Lord
On 10-11-19 05:58 PM, Alex Deucher wrote: On Fri, Nov 19, 2010 at 5:55 PM, Mark Lord wrote: It now comes back at resume time. So that patch helped? I think so. It didn't used to resume from suspend with 2.6.36, and now it does. But suffers long delays (also sometimes with 2.6.35) doing

Re: 2.6.37-rc2-git4: Reported regressions 2.6.35 -> 2.6.36

2010-11-20 Thread Alex Deucher
On Fri, Nov 19, 2010 at 6:16 PM, Mark Lord wrote: > On 10-11-19 05:58 PM, Alex Deucher wrote: >> >> On Fri, Nov 19, 2010 at 5:55 PM, Mark Lord  wrote: >> >>> It now comes back at resume time. >> >> So that patch helped? > > I think so.  It didn't used to resume from suspend with 2.6.36, and now it

bug report: potential integer overflow in validate_exec_list()

2010-11-20 Thread Dan Carpenter
Hello Chris, Is there an integer overflow in validate_exec_list()? drivers/gpu/drm/i915/i915_gem.c 3633 size_t length = exec[i].relocation_count * sizeof(struct drm_i915_gem_relocation_entry); 3634 3635 if (!access_ok(VERIFY_READ, ptr, length)) 3636 r

[PATCH 2/3] kms/radeon: Reorder vblank and pageflip interrupt handling.

2010-11-20 Thread Alex Deucher
From: Mario Kleiner In the vblank irq handler, calls to actual vblank handling, or at least drm_handle_vblank(), need to happen before calls to radeon_crtc_handle_flip(). Reason: The high precision pageflip timestamping and some other pageflip optimizations will need the updated vblank count and

[PATCH 3/3] kms/radeon: Use high precision timestamps for pageflip completion events.

2010-11-20 Thread Alex Deucher
From: Mario Kleiner Signed-off-by: Mario Kleiner Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_display.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_display.c b/drivers/gpu/drm/radeon/radeon_display.c index f6493f4..

[Bug 31499] [r300g] KWin Lanczos filter problems - Black Windows using effects

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31499 --- Comment #7 from Tom Stellard 2010-11-20 11:35:49 PST --- Actually calculating the offset values inside the shader would be even better. So something like this: uniform sampler2D texUnit; uniform vec4 kernel[25]; uniform int direction; unif

[Bug 31800] New: [r300g] src/mesa/state_tracker/st_mesa_to_tgsi.c:228:src_register: Assertion `index >= 0' failed.

2010-11-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31800 Summary: [r300g] src/mesa/state_tracker/st_mesa_to_tgsi.c:228:src_regis ter: Assertion `index >= 0' failed. Product: Mesa Version: git Platform: x86 (IA32)

[git pull] drm fixes

2010-11-20 Thread Dave Airlie
On Sat, Nov 20, 2010 at 5:04 AM, Linus Torvalds wrote: > On Fri, Nov 19, 2010 at 2:02 AM, Chris Wilson > wrote: >> >> Note it also contains a couple of fluff fallout patches from the recent >> drm-fixes rebase. (I thought it would be wise to include any core drm >> changes in our testing before

[Bug 31499] [r300g] KWin Lanczos filter problems - Black Windows using effects

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31499 --- Comment #6 from Tom Stellard 2010-11-20 00:07:55 PST --- As the shader is currently written, it should use 50 constants, your hardware only supports 32. So unless the KDE devs can modify the shader to use less constants, it won't work with

[Bug 31780] DRM/Nouveau Blank Screen with 8500 GT

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31780 Kevin Winchester changed: What|Removed |Added AssignedTo|dri-devel at lists.freedesktop |nouveau at lists.freedesktop.o

[Bug 29787] random XRandR failures (i2c related?)

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29787 --- Comment #14 from Arno Schuring 2010-11-20 05:13:34 PST --- Grumble. So, how will this be fixed? Sprinkle the code with preempt_disable()/enable() pairs? Advise all users (well, me) to disable preemption? Change the code so it no longer acts

[Bug 31788] New: r600g: Fix location for clip plane registers

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31788 Summary: r600g: Fix location for clip plane registers Product: Mesa Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: medium

[Bug 31788] r600g: Fix location for clip plane registers

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31788 --- Comment #1 from Owen Taylor 2010-11-20 06:44:08 PST --- Created an attachment (id=40436) View: https://bugs.freedesktop.org/attachment.cgi?id=40436 Review: https://bugs.freedesktop.org/review?bug=31788&attachment=40436 r600g: Fix location

[00/66] 2.6.36.1-stable review

2010-11-20 Thread Andrew Lutomirski
On Sat, Nov 20, 2010 at 10:52 AM, Greg KH wrote: > On Sat, Nov 20, 2010 at 09:24:05AM -0500, Andy Lutomirski wrote: >> Greg KH wrote: >>> This is the start of the stable review cycle for the 2.6.36.1 release. >>> There are 66 patches in this series, all will be posted as a response >>> to this one

git repos, r600g prerequites

2010-11-20 Thread Marius Gröger
Am 18.11.2010 15:34, schrieb Jerome Glisse: > Best is to use mesa master repository. And kernel 2.6.36 or newer, the > other drm kernel tree are mostly to fix issues and are interesting if > you are facing one of those issues or just want to help in testing > drm. Just a quick follow-up: current d

[Bug 29787] random XRandR failures (i2c related?)

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29787 --- Comment #15 from Alex Deucher 2010-11-20 09:10:56 PST --- (In reply to comment #14) > Grumble. So, how will this be fixed? Sprinkle the code with > preempt_disable()/enable() pairs? Advise all users (well, me) to disable > preemption? Change

[Bug 31788] r600g: Fix location for clip plane registers

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31788 Alex Deucher changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

bug report: potential integer overflow in validate_exec_list()

2010-11-20 Thread Dan Carpenter
Hello Chris, Is there an integer overflow in validate_exec_list()? drivers/gpu/drm/i915/i915_gem.c 3633 size_t length = exec[i].relocation_count * sizeof(struct drm_i915_gem_relocation_entry); 3634 3635 if (!access_ok(VERIFY_READ, ptr, length)) 3636 r

[PATCH 1/3] drm/radeon/kms: add pageflip ioctl support (v2)

2010-11-20 Thread Alex Deucher
This adds support for dri2 pageflipping. v2: precision updates from Mario Kleiner. Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/evergreen.c | 301 --- drivers/gpu/drm/radeon/evergreen_reg.h |6 + drivers/gpu/drm/radeon/r100.c | 70 +++

[PATCH 2/3] kms/radeon: Reorder vblank and pageflip interrupt handling.

2010-11-20 Thread Alex Deucher
From: Mario Kleiner In the vblank irq handler, calls to actual vblank handling, or at least drm_handle_vblank(), need to happen before calls to radeon_crtc_handle_flip(). Reason: The high precision pageflip timestamping and some other pageflip optimizations will need the updated vblank count and

[PATCH 3/3] kms/radeon: Use high precision timestamps for pageflip completion events.

2010-11-20 Thread Alex Deucher
From: Mario Kleiner Signed-off-by: Mario Kleiner Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_display.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_display.c b/drivers/gpu/drm/radeon/radeon_display.c index f6493f4..

[Bug 31499] [r300g] KWin Lanczos filter problems - Black Windows using effects

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31499 --- Comment #7 from Tom Stellard 2010-11-20 11:35:49 PST --- Actually calculating the offset values inside the shader would be even better. So something like this: uniform sampler2D texUnit; uniform vec4 kernel[25]; uniform int direction; unif

[Bug 31800] New: [r300g] src/mesa/state_tracker/st_mesa_to_tgsi.c:228:src_register: Assertion `index >= 0' failed.

2010-11-20 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31800 Summary: [r300g] src/mesa/state_tracker/st_mesa_to_tgsi.c:228:src_regis ter: Assertion `index >= 0' failed. Product: Mesa Version: git Platform: x86 (IA32)