[PATCH] intel/decode: VERTEX_ELEMENT_STATE, 1 means valid

2012-06-24 Thread Ben Widawsky
The logic seemed to be inverse to me. Signed-off-by: Ben Widawsky --- intel/intel_decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intel/intel_decode.c b/intel/intel_decode.c index c9bfee4..eac48c3 100644 --- a/intel/intel_decode.c +++ b/intel/intel_decode.c @@

[PATCH] mgag200: Fix a memory leak in mgag200fb_create()

2012-06-24 Thread Jesper Juhl
On Fri, 22 Jun 2012, devendra.aaru wrote: > On Fri, Jun 22, 2012 at 3:43 AM, Jesper Juhl wrote: > > First we allocate memory for 'sysram' with vmalloc() and subsequently > > we allocate for 'info' with framebuffer_alloc(). If the second > > allocation fails we return -ENOMEM, but neglect to

[PATCH 02/12] drm/sis: clean up reclaim_buffers

2012-06-24 Thread Daniel Vetter
On Thu, Jun 14, 2012 at 12:24:57PM +0200, Daniel Vetter wrote: > Like for via. > > v2: Actually drop the idlelock again if taken. > > v3: Fixup. > > v4: Fixup the "has master" vs. "is master" confusion the refactor > introduced. > > v5: Drop the idlelock in the early return path. > >

[PATCH] drm/sis: fixup sis_mm ioctl structs

2012-06-24 Thread Daniel Vetter
Userspace uses long in quite a few places more than the kernel. Which gives me neat proof that I'm the only guy on this side of the galaxy who ever tried to run glxgears on a 64bit machine with sis graphics on linux. Note that the longs in drm_sis_mem_t aren't aligned properly, so this won't even

[Bug 51383] New: 'make clean' broken after switching to automake

2012-06-24 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=51383 Bug #: 51383 Summary: 'make clean' broken after switching to automake Classification: Unclassified Product: Mesa Version: git Platform: Other OS/Version: All Status:

[Bug 51344] massive corruption on RV410

2012-06-24 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=51344 --- Comment #3 from Tom Stellard 2012-06-24 10:57:40 PDT --- Can you try to bisect this using git bisect and find the first bad commit? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this

[PATCH RESEND] drm: fix drm_read() returning 0

2012-06-24 Thread David Herrmann
Imagine two threads read()'ing on the drm file and both are asleep waiting for events in drm_read(). If a single event occurs, both threads are woken up and start fetching the event. One thread will get it and return, the other thread will notice that there is no further event and return 0 to

[Bug 50422] Furmark.exe crash with wine (32 bits under 64 bits) with llvm-3.1 and r600-llvm-compiler enabled

2012-06-24 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=50422 --- Comment #5 from Laurent carlier 2012-06-24 06:33:47 PDT --- (In reply to comment #3) > This isn't just another instance of "Clang is broken" / bug 44466, right? llvm and mesa are all built with a multilib gcc, perhaps it's the culprit ?

[Bug 50422] Furmark.exe crash with wine (32 bits under 64 bits) with llvm-3.1 and r600-llvm-compiler enabled

2012-06-24 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=50422 --- Comment #4 from Laurent carlier 2012-06-24 06:20:02 PDT --- (In reply to comment #2) > I've been seeing a few strange crashes in the LLVM backend when using wine. > What version of wine are you using? Does it work with an older version of

[Bug 50422] Furmark.exe crash with wine (32 bits under 64 bits) with llvm-3.1 and r600-llvm-compiler enabled

2012-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50422 --- Comment #5 from Laurent carlier lordhea...@gmail.com 2012-06-24 06:33:47 PDT --- (In reply to comment #3) This isn't just another instance of Clang is broken / bug 44466, right? llvm and mesa are all built with a multilib gcc, perhaps it's

[PATCH RESEND] drm: fix drm_read() returning 0

2012-06-24 Thread David Herrmann
Imagine two threads read()'ing on the drm file and both are asleep waiting for events in drm_read(). If a single event occurs, both threads are woken up and start fetching the event. One thread will get it and return, the other thread will notice that there is no further event and return 0 to

[PATCH] drm/sis: fixup sis_mm ioctl structs

2012-06-24 Thread Daniel Vetter
Userspace uses long in quite a few places more than the kernel. Which gives me neat proof that I'm the only guy on this side of the galaxy who ever tried to run glxgears on a 64bit machine with sis graphics on linux. Note that the longs in drm_sis_mem_t aren't aligned properly, so this won't even

[Bug 51344] massive corruption on RV410

2012-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51344 --- Comment #3 from Tom Stellard tstel...@gmail.com 2012-06-24 10:57:40 PDT --- Can you try to bisect this using git bisect and find the first bad commit? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 51383] New: 'make clean' broken after switching to automake

2012-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51383 Bug #: 51383 Summary: 'make clean' broken after switching to automake Classification: Unclassified Product: Mesa Version: git Platform: Other OS/Version: All Status:

Re: [PATCH 02/12] drm/sis: clean up reclaim_buffers

2012-06-24 Thread Daniel Vetter
On Thu, Jun 14, 2012 at 12:24:57PM +0200, Daniel Vetter wrote: Like for via. v2: Actually drop the idlelock again if taken. v3: Fixup. v4: Fixup the has master vs. is master confusion the refactor introduced. v5: Drop the idlelock in the early return path. Signed-off-by: Daniel

Re: [PATCH] mgag200: Fix a memory leak in mgag200fb_create()

2012-06-24 Thread Jesper Juhl
On Fri, 22 Jun 2012, devendra.aaru wrote: On Fri, Jun 22, 2012 at 3:43 AM, Jesper Juhl j...@chaosbits.net wrote: First we allocate memory for 'sysram' with vmalloc() and subsequently we allocate for 'info' with framebuffer_alloc(). If the second allocation fails we return -ENOMEM, but

[Bug 43448] No native 3D acceleration with Radeon FirePro M7740 (m97 / rv740) - llvm pipe

2012-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43448 --- Comment #20 from Jack Dodds brmda...@hushmail.com 2012-06-24 18:42:24 PDT --- Further to the above - I have tried all the patches listed above, in various combinations, and the problem still exists. The startup of X fails with the messages

[PATCH] intel/decode: VERTEX_ELEMENT_STATE, 1 means valid

2012-06-24 Thread Ben Widawsky
The logic seemed to be inverse to me. Signed-off-by: Ben Widawsky b...@bwidawsk.net --- intel/intel_decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intel/intel_decode.c b/intel/intel_decode.c index c9bfee4..eac48c3 100644 --- a/intel/intel_decode.c +++