On Fri, 14 May 2010 03:59:08 +0530, Jaswinder Singh Rajput wrote:
> Hello Chris,
>
> I am also getting display error on another PC :
>
> [ 34.198957] render error detected, EIR: 0x0010
> [ 34.198972] [drm:i915_handle_error] *ERROR* EIR stuck: 0x0010, masking
> [ 34.198998] render e
From: Julia Lawall
Use kzalloc rather than the combination of kmalloc and memset.
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
//
@@
expression x,size,flags;
statement S;
@@
-x = kmalloc(size,flags);
+x = kzalloc(size,flags);
if (x == NULL) S
-memset(
On Thu, May 13, 2010 at 3:58 PM, Julia Lawall wrote:
> From: Julia Lawall
>
> Use kzalloc rather than the combination of kmalloc and memset.
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> //
> @@
> expression x,size,flags;
> statement S;
> @@
>
>
https://bugs.freedesktop.org/show_bug.cgi?id=27996
--- Comment #6 from Marek Olšák 2010-05-13 18:55:16 PDT ---
Could you please re-test the game with current mesa git?
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
https://bugs.freedesktop.org/show_bug.cgi?id=27996
--- Comment #6 from Marek Ol??k 2010-05-13 18:55:16 PDT
---
Could you please re-test the game with current mesa git?
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: --
On Thu, May 13, 2010 at 3:58 PM, Julia Lawall wrote:
> From: Julia Lawall
>
> Use kzalloc rather than the combination of kmalloc and memset.
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> //
> @@
> expression x,size,flags;
> statement S;
> @@
>
>
On Fri, 14 May 2010 03:59:08 +0530, Jaswinder Singh Rajput
wrote:
> Hello Chris,
>
> I am also getting display error on another PC :
>
> [ 34.198957] render error detected, EIR: 0x0010
> [ 34.198972] [drm:i915_handle_error] *ERROR* EIR stuck: 0x0010, masking
> [ 34.198998] render
On Thu, May 13, 2010 at 12:58 PM, Julia Lawall wrote:
> From: Julia Lawall
>
> Use kzalloc rather than the combination of kmalloc and memset.
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> //
> @@
> expression x,size,flags;
> statement S;
> @@
>
>
On Thu, May 13, 2010 at 12:58 PM, Julia Lawall wrote:
> From: Julia Lawall
>
> Use kzalloc rather than the combination of kmalloc and memset.
>
> The semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
>
> //
> @@
> expression x,size,flags;
> statement S;
> @@
>
>
Hello Chris,
I am also getting display error on another PC :
[ 34.198957] render error detected, EIR: 0x0010
[ 34.198972] [drm:i915_handle_error] *ERROR* EIR stuck: 0x0010, masking
[ 34.198998] render error detected, EIR: 0x0010
dmesg : http://userweb.kernel.org/~jaswinder/P4_
Having hsync both start and end on pixel 1072 ain't gonna work very
well. Matches the X server's list.
Signed-off-by: Adam Jackson
---
drivers/gpu/drm/drm_edid.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
ind
https://bugs.freedesktop.org/show_bug.cgi?id=28095
--- Comment #1 from Brent 2010-05-13 14:39:28 PDT ---
Created an attachment (id=35643)
--> (https://bugs.freedesktop.org/attachment.cgi?id=35643)
Xorg log (1.7.6-3, 0.0.16, 2.4.20, 2.6.34-rc5)
--
Configure bugmail: https://bugs.freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28095
--- Comment #1 from Brent 2010-05-13 14:39:28 PDT
---
Created an attachment (id=35643)
--> (https://bugs.freedesktop.org/attachment.cgi?id=35643)
Xorg log (1.7.6-3, 0.0.16, 2.4.20, 2.6.34-rc5)
--
Configure bugmail: https://bugs.freedesktop.or
https://bugs.freedesktop.org/show_bug.cgi?id=28095
Summary: X crash with PFIFO_CACHE_ERROR. (Nouveau on Riva TNT).
Product: DRI
Version: unspecified
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
https://bugs.freedesktop.org/show_bug.cgi?id=28095
Summary: X crash with PFIFO_CACHE_ERROR. (Nouveau on Riva TNT).
Product: DRI
Version: unspecified
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
https://bugs.freedesktop.org/show_bug.cgi?id=26639
Alex Deucher changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|
https://bugs.freedesktop.org/show_bug.cgi?id=26639
Alex Deucher changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|
Hello Chris,
On Wed, May 12, 2010 at 8:01 PM, Jaswinder Singh Rajput
wrote:
> Hello Chris,
>
> On Wed, May 12, 2010 at 7:20 PM, Chris Wilson
> wrote:
>> On Wed, 12 May 2010 18:45:55 +0530, Jaswinder Singh Rajput
>> wrote:
>>> Hello Chris,
>>>
>>> With this patch after XWindows freezes, I get
From: Julia Lawall
Use kzalloc rather than the combination of kmalloc and memset.
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)
//
@@
expression x,size,flags;
statement S;
@@
-x = kmalloc(size,flags);
+x = kzalloc(size,flags);
if (x == NULL) S
-memset(
https://bugs.freedesktop.org/show_bug.cgi?id=27211
Marcin Kościelnicki changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|
https://bugs.freedesktop.org/show_bug.cgi?id=27211
Marcin Ko?cielnicki changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|
https://bugs.freedesktop.org/show_bug.cgi?id=27211
--- Comment #15 from Brent 2010-05-13 13:07:23 PDT ---
Created an attachment (id=35641)
--> (https://bugs.freedesktop.org/attachment.cgi?id=35641)
kernel log spam
Spam generated by adding "options drm debug=1" to /etc/modprobe.d/modprobe.conf
https://bugs.freedesktop.org/show_bug.cgi?id=27211
--- Comment #15 from Brent 2010-05-13 13:07:23 PDT
---
Created an attachment (id=35641)
--> (https://bugs.freedesktop.org/attachment.cgi?id=35641)
kernel log spam
Spam generated by adding "options drm debug=1" to /etc/modprobe.d/modprobe.conf
https://bugs.freedesktop.org/show_bug.cgi?id=27211
Brent changed:
What|Removed |Added
Attachment #35639|0 |1
is obsolete|
https://bugs.freedesktop.org/show_bug.cgi?id=27211
Brent changed:
What|Removed |Added
Attachment #35639|0 |1
is obsolete|
https://bugs.freedesktop.org/show_bug.cgi?id=27211
--- Comment #13 from Brent 2010-05-13 12:56:48 PDT ---
Created an attachment (id=35639)
--> (https://bugs.freedesktop.org/attachment.cgi?id=35639)
Xorg log (1.7.6-3, 0.0.16, 2.4.20, 2.6.34-rc5)
Tried again, this time with the latest source code
https://bugs.freedesktop.org/show_bug.cgi?id=27211
--- Comment #13 from Brent 2010-05-13 12:56:48 PDT
---
Created an attachment (id=35639)
--> (https://bugs.freedesktop.org/attachment.cgi?id=35639)
Xorg log (1.7.6-3, 0.0.16, 2.4.20, 2.6.34-rc5)
Tried again, this time with the latest source cod
https://bugs.freedesktop.org/show_bug.cgi?id=28082
Marek Olšák changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|
https://bugs.freedesktop.org/show_bug.cgi?id=28082
Marek Ol??k changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|
Having hsync both start and end on pixel 1072 ain't gonna work very
well. Matches the X server's list.
Signed-off-by: Adam Jackson
---
drivers/gpu/drm/drm_edid.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
ind
https://bugs.freedesktop.org/show_bug.cgi?id=27784
--- Comment #8 from Andrew Randrianasulu 2010-05-13 11:09:02
PDT ---
According to http://article.gmane.org/gmane.comp.video.dri.devel/46026
("Regression: commit 566d84d1 breaks glxgears on r200") it was commit
566d84d172161cb6c0c4dd834c34abbac6b
https://bugs.freedesktop.org/show_bug.cgi?id=27784
--- Comment #8 from Andrew Randrianasulu 2010-05-13
11:09:02 PDT ---
According to http://article.gmane.org/gmane.comp.video.dri.devel/46026
("Regression: commit 566d84d1 breaks glxgears on r200") it was commit
566d84d172161cb6c0c4dd834c34abbac6b
https://bugs.freedesktop.org/show_bug.cgi?id=27211
Brent changed:
What|Removed |Added
Attachment #34263|0 |1
is obsolete|
https://bugs.freedesktop.org/show_bug.cgi?id=27211
Brent changed:
What|Removed |Added
Attachment #34263|0 |1
is obsolete|
https://bugs.freedesktop.org/show_bug.cgi?id=27211
--- Comment #11 from Xavier 2010-05-13 02:10:38 PDT ---
AFAIK, your last combination is fine and is what I wanted you to try.
Can you also paste a full kernel log with that ?
I am afraid that very few people use nouveau on a tnt card, so it's mu
https://bugs.freedesktop.org/show_bug.cgi?id=27211
--- Comment #11 from Xavier 2010-05-13 02:10:38 PDT ---
AFAIK, your last combination is fine and is what I wanted you to try.
Can you also paste a full kernel log with that ?
I am afraid that very few people use nouveau on a tnt card, so it's mu
36 matches
Mail list logo