[Bug 13249] Intel 945GM: Boot option`vga=0x31a' breaks display of TTYs

2009-05-24 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=13249





--- Comment #23 from Werner Lemberg w...@gnu.org  2009-05-24 06:22:50 ---
Just to be sure: I really have to compile in intelfb, right?  It's not possible
to load the intelfb module with, say initrd?

Sigh.  This means *a lot* of bisecting.  Is there any kernel version which is
confirmed to run with my graphics card (in LCD mode) so that I have at least a
starting point?

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 21770] [945GM] [UXA] Running Out of Memory with UXA

2009-05-24 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21770


Milan Bouchet-Valat nalimi...@club.fr changed:

   What|Removed |Added

 CC||nalimi...@club.fr




--- Comment #3 from Milan Bouchet-Valat nalimi...@club.fr  2009-05-24 
05:03:26 PST ---
Seeing the same dramatic symptoms with a i915 card, kernels 2.6.30rc5 and rc6,
drivers 2.6.99 (still Ubuntu). UXA is working fast with this release, though.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 13249] Intel 945GM: Boot option`vga=0x31a' breaks display of TTYs

2009-05-24 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=13249





--- Comment #24 from Michal Januszewski sp...@gentoo.org  2009-05-24 13:00:12 
---
(In reply to comment #23)
 Just to be sure: I really have to compile in intelfb, right?  It's not 
 possible
 to load the intelfb module with, say initrd?

It is, but then you'd have to use the mode= parameter instead of vga= on the
kernel command line.  I don't think this would help you in any way though --
after each bisection, you still need to rebuild both the kernel and the module.
 Otherwise the module will not load.  It's also possible that this was broken
by a commit changing code outside of intelfb, and you would not detect this if
you were only rebuilding and reloading the module.

 Sigh.  This means *a lot* of bisecting.  Is there any kernel version which is
 confirmed to run with my graphics card (in LCD mode) so that I have at least a
 starting point?

I'm not sure.  I think you should just pick a reasonably old kernel, such as
2.6.26 or 2.6.27 and try with that.  If that version doesn't work, at least you
will establish a tighter upper boundary for the bisection.

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


radeon-rewrite [patch]: Get rid of drawable/readable in radeon_dri_mirror

2009-05-24 Thread Nicolai Hähnle
Hi,

I encountered a bug testing radeon-rewrite with Compiz (both with and without 
KMS), where the X server crashed due to essentially a double-free of a 
DRIdrawable: The bound drawable was freed, but the state duplicate in 
radeon_dri_mirror didn't get updated to reflect that.

The attached patch removes the state duplication, which fixes the crash for me 
and hopefully will help avoid similar bugs in the future.

I'm only skeptical because I'm a bit surprised that nobody else has seen this 
bug. Any feedback on the patch?

cu,
Nicolai
From 73c816fa3148c8390ae32d5978688d6e1204a11d Mon Sep 17 00:00:00 2001
From: =?utf-8?q?Nicolai=20H=C3=A4hnle?= nhaeh...@gmail.com
Date: Sun, 24 May 2009 14:55:51 +0200
Subject: [PATCH] radeon: Remove drawable  readable from radeon_dri_mirror
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

The duplication of state data caused a crash due to double-free on destruction
of context, because a variable wasn't correctly null'ed out.

Signed-off-by: Nicolai Hähnle nhaeh...@gmail.com
---
 src/mesa/drivers/dri/r300/r300_ioctl.c |   16 +++---
 src/mesa/drivers/dri/r300/r300_state.c |   18 +++---
 src/mesa/drivers/dri/radeon/radeon_common.c|   63 +--
 .../drivers/dri/radeon/radeon_common_context.c |   66 
 .../drivers/dri/radeon/radeon_common_context.h |   27 
 src/mesa/drivers/dri/radeon/radeon_lock.c  |8 +-
 6 files changed, 94 insertions(+), 104 deletions(-)

diff --git a/src/mesa/drivers/dri/r300/r300_ioctl.c b/src/mesa/drivers/dri/r300/r300_ioctl.c
index 6766eb3..104079b 100644
--- a/src/mesa/drivers/dri/r300/r300_ioctl.c
+++ b/src/mesa/drivers/dri/r300/r300_ioctl.c
@@ -79,7 +79,7 @@ static void r300ClearBuffer(r300ContextPtr r300, int flags,
 {
 	BATCH_LOCALS(r300-radeon);
 	GLcontext *ctx = r300-radeon.glCtx;
-	__DRIdrawablePrivate *dPriv = r300-radeon.dri.drawable;
+	__DRIdrawablePrivate *dPriv = radeon_get_drawable(r300-radeon);
 	GLuint cbpitch = 0;
 	r300ContextPtr rmesa = r300;
 
@@ -200,7 +200,7 @@ static void r300ClearBuffer(r300ContextPtr r300, int flags,
 		OUT_BATCH_FLOAT32(ctx-Color.ClearColor[2]);
 		OUT_BATCH_FLOAT32(ctx-Color.ClearColor[3]);
 	}
-	
+
 	r300EmitCacheFlush(rmesa);
 	cp_wait(r300-radeon, R300_WAIT_3D | R300_WAIT_3D_CLEAN);
 
@@ -213,7 +213,7 @@ static void r300EmitClearState(GLcontext * ctx)
 {
 	r300ContextPtr r300 = R300_CONTEXT(ctx);
 	BATCH_LOCALS(r300-radeon);
-	__DRIdrawablePrivate *dPriv = r300-radeon.dri.drawable;
+	__DRIdrawablePrivate *dPriv = radeon_get_drawable(r300-radeon);
 	int i;
 	int has_tcl;
 	int is_r500 = 0;
@@ -447,7 +447,7 @@ static void r300EmitClearState(GLcontext * ctx)
 			R500_ALU_RGBA_G_SWIZ_0 |
 			R500_ALU_RGBA_B_SWIZ_0 |
 			R500_ALU_RGBA_A_SWIZ_0;
-		
+
 		r500fp.cmd[7] = 0;
 		emit_r500fp(ctx, r500fp);
 	}
@@ -541,9 +541,9 @@ static void r300EmitClearState(GLcontext * ctx)
 }
 
 static void r300KernelClear(GLcontext *ctx, GLuint flags)
-{	  	
+{
 	r300ContextPtr r300 = R300_CONTEXT(ctx);
-	__DRIdrawablePrivate *dPriv = r300-radeon.dri.drawable;
+	__DRIdrawablePrivate *dPriv = radeon_get_drawable(r300-radeon);
 	struct radeon_framebuffer *rfb = dPriv-driverPrivate;
 	struct radeon_renderbuffer *rrb;
 	struct radeon_renderbuffer *rrbd;
@@ -565,7 +565,7 @@ static void r300KernelClear(GLcontext *ctx, GLuint flags)
 		r300ClearBuffer(r300, CLEARBUFFER_COLOR, rrb, NULL);
 		bits = 0;
 	}
-		
+
 	if (flags  BUFFER_BIT_FRONT_LEFT) {
 		rrb = radeon_get_renderbuffer(rfb-base, BUFFER_FRONT_LEFT);
 		r300ClearBuffer(r300, bits | CLEARBUFFER_COLOR, rrb, rrbd);
@@ -590,7 +590,7 @@ static void r300KernelClear(GLcontext *ctx, GLuint flags)
 static void r300Clear(GLcontext * ctx, GLbitfield mask)
 {
 	r300ContextPtr r300 = R300_CONTEXT(ctx);
-	__DRIdrawablePrivate *dPriv = r300-radeon.dri.drawable;
+	__DRIdrawablePrivate *dPriv = radeon_get_drawable(r300-radeon);
 	const GLuint colorMask = *((GLuint *)  ctx-Color.ColorMask);
 	GLbitfield swrast_mask = 0, tri_mask = 0;
 	int i;
diff --git a/src/mesa/drivers/dri/r300/r300_state.c b/src/mesa/drivers/dri/r300/r300_state.c
index efbe5ca..582e8c2 100644
--- a/src/mesa/drivers/dri/r300/r300_state.c
+++ b/src/mesa/drivers/dri/r300/r300_state.c
@@ -967,7 +967,7 @@ static void r300StencilOpSeparate(GLcontext * ctx, GLenum face,
 static void r300UpdateWindow(GLcontext * ctx)
 {
 	r300ContextPtr rmesa = R300_CONTEXT(ctx);
-	__DRIdrawablePrivate *dPriv = rmesa-radeon.dri.drawable;
+	__DRIdrawablePrivate *dPriv = radeon_get_drawable(rmesa-radeon);
 	GLfloat xoffset = dPriv ? (GLfloat) dPriv-x : 0;
 	GLfloat yoffset = dPriv ? (GLfloat) dPriv-y + dPriv-h : 0;
 	const GLfloat *v = ctx-Viewport._WindowMap.m;
@@ -1020,7 +1020,7 @@ static void r300DepthRange(GLcontext * ctx, GLclampd nearval, GLclampd farval)
 void r300UpdateViewportOffset(GLcontext * ctx)
 {
 	r300ContextPtr rmesa = R300_CONTEXT(ctx);
-	__DRIdrawablePrivate *dPriv = ((radeonContextPtr) 

[Bug 21884] [945GM] uxa is going bad

2009-05-24 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21884





--- Comment #2 from Bruno Pio brunopi...@yahoo.com.br  2009-05-24 08:32:07 
PST ---
(In reply to comment #1)
 Could you elaborate:
 how google earth does not work? (the same with exa and uxa?)
 desktop turn off?
 

google earth acts as if in 1 fps, holding the images to a few. Even opening
another program, file or folder, Google Earth is still on top as a black screen
flashing... other programs that use 3D are the same. In both exa as uxa.

The Desktop, sometimes, is in uxa as the monitor came in idle mode and is off,
having to move the mouse to turn on, even at times when I'm in the middle of
work.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 13373] New: fbcon, intelfb, i915: INFO: possible circular locking dependency detected

2009-05-24 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=13373

   Summary: fbcon, intelfb, i915: INFO: possible circular locking
dependency detected
   Product: Drivers
   Version: 2.5
Kernel Version: 2.6.30-rc6-git6
  Platform: All
OS/Version: Linux
  Tree: Mainline
Status: NEW
  Severity: normal
  Priority: P1
 Component: Video(DRI)
AssignedTo: drivers_video-...@kernel-bugs.osdl.org
ReportedBy: r...@sisk.pl
Blocks: 13070
Regression: Yes


Subject: 2.5.30-rc6-git6 -- (fbcon, intelfb, i915?) INFO: possible circular
locking dependency detected
Submitter  : Miles Lane miles.l...@gmail.com
Date   : 2009-05-23 5:08
References : http://marc.info/?l=linux-kernelm=124305538130702w=4

This entry is being used for tracking a regression from 2.6.29.  Please don't
close it until the problem is fixed in the mainline.

-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are watching the assignee of the bug.

--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


2.6.30-rc7: Reported regressions from 2.6.29

2009-05-24 Thread Rafael J. Wysocki
[NOTE:
 Bug entries for which I know there are working patches get the
 RESOLVED / PATCH_ALREADY_AVAILABLE status in the Bugzilla, which
 makes it easier to check if the patches have been merged before sending
 out the list.  For this reason, please let me know of working patches
 for any of the regression list items or (better) change the status of the bug
 entries in case you know of a working patch (in which case please also add
 a link to the patch to the appropriate bug entry).]

This message contains a list of some regressions from 2.6.29, for which there
are no fixes in the mainline I know of.  If any of them have been fixed already,
please let me know.

If you know of any other unresolved regressions from 2.6.29, please let me know
either and I'll add them to the list.  Also, please let me know if any of the
entries below are invalid.

Each entry from the list will be sent additionally in an automatic reply to
this message with CCs to the people involved in reporting and handling the
issue.


Listed regressions statistics:

  Date  Total  Pending  Unresolved
  
  2009-05-24   92   34  27
  2009-05-16   81   36  33
  2009-04-25   55   36  26
  2009-04-17   37   35  28


Unresolved regressions
--

Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13377
Subject : Microphone no longer works on Toshiba Satellite A100
Submitter   : M. Vefa Bicakci bic...@superonline.com
Date: 2009-05-24 15:49 (1 days old)
First-Bad-Commit: 
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=23f0c048ba59ad5c2f3fd85ed98360b631dbf6f8
References  : http://marc.info/?l=linux-kernelm=124318383910011w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13374
Subject : reiserfs blocked for more than 120secs
Submitter   : Harald Dunkel harald.dun...@t-online.de
Date: 2009-05-23 8:52 (2 days old)
References  : http://marc.info/?l=linux-kernelm=124306880410811w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13373
Subject : fbcon, intelfb, i915: INFO: possible circular locking 
dependency detected
Submitter   : Miles Lane miles.l...@gmail.com
Date: 2009-05-23 5:08 (2 days old)
References  : http://marc.info/?l=linux-kernelm=124305538130702w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13372
Subject : Oops in usb-serial with keyspan adapter
Submitter   : Benjamin Herrenschmidt b...@kernel.crashing.org
Date: 2009-05-18 0:07 (7 days old)
References  : http://marc.info/?l=linux-kernelm=124260532924736w=4
Handled-By  : Alan Stern st...@rowland.harvard.edu


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13366
Subject : About 80% of shutdowns fail (blocking)
Submitter   : Martin Bammer mr...@gmx.at
Date: 2009-05-23 00:58 (2 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13341
Subject : Random Oops at boot at loading ip6tables rules
Submitter   :  patr...@ostenberg.de
Date: 2009-05-19 09:08 (6 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13339
Subject : rtable leak in ipv4/route.c
Submitter   : Alexander V. Lukyanov l...@yar.ru
Date: 2009-05-18 14:10 (7 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13337
Subject : [post 2.6.29 regression] hang during suspend of b44/b43 
modules
Submitter   : Tomas Janousek t...@nomi.cz
Date: 2009-05-18 10:59 (7 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13331
Subject : FUTEX_LOCK_PI kills kernel
Submitter   : Andreas Schwab sch...@linux-m68k.org
Date: 2009-05-17 09:51 (8 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13330
Subject : nfs4 NULL pointer dereference in _nfs4_do_setlk
Submitter   : Rich Ercolani rerc...@acm.jhu.edu
Date: 2009-05-17 04:44 (8 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13328
Subject : b44: eth0: BUG! Timeout waiting for bit 0002 of register 
42c to clear.
Submitter   : Francis Moreau francis.m...@gmail.com
Date: 2009-05-03 16:22 (22 days old)
References  : http://marc.info/?l=linux-kernelm=124136778012280w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13326
Subject : [PATCH]Null pointer dereference in rtc-cmos driver
Submitter   : Ozan Çağlayan o...@pardus.org.tr
Date: 2009-05-14 16:16 (11 days old)
References  : http://marc.info/?l=linux-kernelm=124231783704696w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13325
Subject : 2.6.30-rc kills my box hard - and lockdep chains
Submitter   : Jonathan Corbet cor...@lwn.net
Date 

Re: 2.6.30-rc7: Reported regressions from 2.6.29

2009-05-24 Thread Rafael J. Wysocki
On Monday 25 May 2009, Ozan Çağlayan wrote:
 Rafael J. Wysocki wrote:
  Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13326
  Subject : [PATCH]Null pointer dereference in rtc-cmos driver
  Submitter   : Ozan Çağlayan o...@pardus.org.tr
  Date: 2009-05-14 16:16 (11 days old)
  References  : http://marc.info/?l=linux-kernelm=124231783704696w=4

 
 Just to notice that the patch for this is at:
 
 http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/driver-core.current/driver-core-do-not-oops-when-driver_unregister-is-called-for-unregistered-drivers.patch
 
 Can at least be marked as has a patch.

Thanks, I added the patch to the bug entry and changed its status.

Best,
Rafael

--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


2.6.30-rc7: Reported regressions 2.6.28 - 2.6.29

2009-05-24 Thread Rafael J. Wysocki
This message contains a list of some regressions introduced between 2.6.28 and
2.6.29, for which there are no fixes in the mainline I know of.  If any of them
have been fixed already, please let me know.

If you know of any other unresolved regressions introduced between 2.6.28
and 2.6.29, please let me know either and I'll add them to the list.
Also, please let me know if any of the entries below are invalid.

Each entry from the list will be sent additionally in an automatic reply to
this message with CCs to the people involved in reporting and handling the
issue.


Listed regressions statistics:

  Date  Total  Pending  Unresolved
  
  2009-05-25  165   27  25
  2009-05-17  162   27  25
  2009-04-26  160   29  27
  2009-04-06  142   37  31
  2009-03-21  128   29  26
  2009-03-14  124   36  32
  2009-03-03  108   33  28
  2009-02-24   95   32  24
  2009-02-14   85   33  27
  2009-02-08   82   45  36
  2009-02-04   66   51  39
  2009-01-20   38   35  27
  2009-01-11   13   13  10


Unresolved regressions
--

Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13375
Subject : Kernel crash with 2.6.29 + nfs + xfs (radix-tree)
Submitter   : Alex Samad a...@samad.com.au
Date: 2009-05-20 0:37 (5 days old)
References  : http://marc.info/?l=linux-kernelm=124278675503699w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13371
Subject : s2disk hangs with kernel 2.6.29 and later, SATA, Gigabyte 
EG45M-DS2H
Submitter   : Richard Atterer rich...@2009.atterer.net
Date: 2009-05-16 22:51 (9 days old)
First-Bad-Commit: 
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=295f00042aaf6b553b5f37348f89bab463d4a469
References  : http://marc.info/?l=linux-kernelm=124251446428166w=4
Handled-By  : Bartlomiej Zolnierkiewicz bzoln...@gmail.com


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13294
Subject : i915: drm: xorg leaks drm objects massively
Submitter   : Sergei Trofimovich sly...@gmail.com
Date: 2009-05-10 19:56 (15 days old)
References  : http://marc.info/?l=linux-kernelm=124198547027903w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13271
Subject : ath9k stop working since 2.6.29
Submitter   : lyman lyma...@gmail.com
Date: 2009-05-10 01:58 (15 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13269
Subject : WARNING: at kernel/hrtimer.c:625 
hres_timers_resume+0x3c/0x48() when resuming
Submitter   : cedric ced...@belbone.be
Date: 2009-05-08 08:48 (17 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13232
Subject : ext3/4 with synchronous writes gets wedged by Postfix
Submitter   : David Watson kernel-nos...@dbwatson.ukfsn.org
Date: 2009-05-03 19:46 (22 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13225
Subject : [2.6.29 regression] Software suspend no longer works
Submitter   : Artem S. Tashkinov t.ar...@mailcity.com
Date: 2009-05-02 21:41 (23 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13183
Subject : forcedeth: no link during initialization
Submitter   : Harald Dunkel harald.dun...@t-online.de
Date: 2009-04-23 13:02 (32 days old)
References  : http://marc.info/?l=linux-kernelm=124049180309233w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13178
Subject : Booting very slow
Submitter   : Martin Knoblauch spamt...@knobisoft.de
Date: 2009-04-24 12:45 (31 days old)
References  : http://marc.info/?l=linux-kernelm=124057716231773w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13175
Subject : sata_nv incompatible with async scsi scan
Submitter   : Benny Halevy bhal...@panasas.com
Date: 2009-04-21 7:03 (34 days old)
References  : http://marc.info/?l=linux-kernelm=124029746431777w=4


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13144
Subject : resume from suspend fails using video card i915
Submitter   : C Sights csig...@fastmail.fm
Date: 2009-04-21 17:03 (34 days old)


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=13100
Subject : can't anymore even do a s2ram-s2disk-s2ram cycle on acer 
aspire 5720G
Submitter   : Maxim Levitsky maximlevit...@gmail.com
Date: 2009-04-06 23:52 (49 days old)
First-Bad-Commit: 
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0d4922da2e4ccb0973095d8d29f36f6b1b5f703
References  : http://marc.info/?l=linux-kernelm=123906202829074w=4

[Bug #12765] i915 VT switch with AIGLX causes X lock up

2009-05-24 Thread Rafael J. Wysocki
This message has been generated automatically as a part of a report
of regressions introduced between 2.6.28 and 2.6.29.

The following bug entry is on the current list of known regressions
introduced between 2.6.28 and 2.6.29.  Please verify if it still should
be listed and let me know (either way).


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=12765
Subject : i915 VT switch with AIGLX causes X lock up
Submitter   : Sitsofe Wheeler sits...@yahoo.com
Date: 2009-02-21 15:38 (93 days old)
First-Bad-Commit: 
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=14d200c5e5bd19219d930bbb9a5a22758c8f5bec
References  : http://marc.info/?l=linux-kernelm=123523074304955w=4
  http://lkml.org/lkml/2009/4/27/317
Handled-By  : Jesse Barnes jbar...@virtuousgeek.org
Patch   : http://patchwork.kernel.org/patch/20197/



--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug #12947] r128: system hangs when X is started with DRI enabled

2009-05-24 Thread Rafael J. Wysocki
This message has been generated automatically as a part of a report
of regressions introduced between 2.6.28 and 2.6.29.

The following bug entry is on the current list of known regressions
introduced between 2.6.28 and 2.6.29.  Please verify if it still should
be listed and let me know (either way).


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=12947
Subject : r128: system hangs when X is started with DRI enabled
Submitter   : Jos van der Ende ser...@xs4all.nl
Date: 2009-03-26 16:14 (60 days old)



--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug #12899] Crash in i915.ko: i915_driver_irq_handler

2009-05-24 Thread Rafael J. Wysocki
This message has been generated automatically as a part of a report
of regressions introduced between 2.6.28 and 2.6.29.

The following bug entry is on the current list of known regressions
introduced between 2.6.28 and 2.6.29.  Please verify if it still should
be listed and let me know (either way).


Bug-Entry   : http://bugzilla.kernel.org/show_bug.cgi?id=12899
Subject : Crash in i915.ko: i915_driver_irq_handler
Submitter   : Helge Bahmann helge.bahm...@secunet.com
Date: 2009-03-20 07:13 (66 days old)



--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 21582] [radeon-rewrite] crashes server through radeonRefillCurrentDmaRegion

2009-05-24 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21582


Tormod Volden bugzi07.fdo.tor...@xoxy.net changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |




--- Comment #10 from Tormod Volden bugzi07.fdo.tor...@xoxy.net  2009-05-24 
15:47:37 PST ---
I am afraid I still see the original problem even after updating to
7dd184dc4da37233471875df6f40cce0560cb7bc.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA,  Big Spaceship. http://www.creativitycat.com 
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel