[Bug 20608] gtkglext example program locks up system with Mobility X1400 chipset

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20608


Michel Dänzer mic...@daenzer.net changed:

   What|Removed |Added

 AssignedTo|xorg-driver-...@lists.x.org |dri-
   ||de...@lists.sourceforge.net
  Component|Driver/Radeon   |Drivers/DRI/r300
Product|xorg|Mesa
  QAContact|xorg-t...@lists.x.org   |
Version|unspecified |7.2




--- Comment #1 from Michel Dänzer mic...@daenzer.net  2009-03-12 05:41:23 PST 
---
Most likely a 3D driver issue. Is this reproducible with current Mesa upstream?


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20626] New: r200 texgen with glVertex4f(x, y, z, w) error

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20626

   Summary: r200 texgen with glVertex4f(x, y, z, w) error
   Product: Mesa
   Version: 6.5
  Platform: PowerPC
OS/Version: All
Status: NEW
  Severity: normal
  Priority: medium
 Component: Drivers/DRI/r200
AssignedTo: dri-devel@lists.sourceforge.net
ReportedBy: raoxianh...@163.net
 QAContact: raoxianh...@163.net


When I use texgen with glVertex4f(x, y, z, w) on r200(ATI Radeon Mobility 9000
card), the s coord texgen use (px, py, pz, pw), but I found s coord always be
px * x + py * y + pz * z + pw, not expected px * x + py * y + pz * z + pw * w
as if w is always 1.0f.


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20626] r200 texgen with glVertex4f(x, y, z, w) error

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20626





--- Comment #1 from raoxianhong raoxianh...@163.net  2009-03-12 07:49:39 PST 
---
the code list here:
glActiveTexture(GL_TEXTURE0);
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D,texid);
glEnable(GL_TEXTURE_GEN_S);
glEnable(GL_TEXTURE_GEN_T);
glEnable(GL_TEXTURE_GEN_R);
glEnable(GL_TEXTURE_GEN_Q);

glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexEnvf (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_EXT);
glTexEnvf (GL_TEXTURE_ENV, GL_COMBINE_RGB_EXT, GL_REPLACE);

glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_OBJECT_LINEAR);

p[0] = 0.25f;
p[1] = 0.0f;
p[2] = 0.0f;
p[3] = 0.25f;
glTexGenfv(GL_S, GL_OBJECT_PLANE, p);

glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_OBJECT_LINEAR);

p[0] = 0.0f;
p[1] = 1.0f;
p[2] = 0.0f;
p[3] = 0.0f;

glTexGenfv(GL_T, GL_OBJECT_PLANE, p);

glTexGeni(GL_R, GL_TEXTURE_GEN_MODE, GL_OBJECT_LINEAR);
p[0] = 0.0f;
p[1] = 0.0f;
p[2] = 0.0f;
p[3] = 1.0f;

glTexGenfv(GL_R, GL_OBJECT_PLANE, p);
glTexGeni(GL_Q, GL_TEXTURE_GEN_MODE, GL_OBJECT_LINEAR);
p[0] = 0.0f;
p[1] = 0.0f;
p[2] = 0.0f;
p[3] = 1.0f;
glTexGenfv(GL_Q, GL_OBJECT_PLANE, p);

glBegin( GL_QUADS );
glVertex4f( 2.0f, 0.0f, 0.0f, 2.0f);
glVertex4f( 2.0f, 2.0f, 0.0f, 2.0f);
glVertex4f( 0.0f, 2.0f, 0.0f, 2.0f);
glVertex4f( 0.0f, 0.0f, 0.0f, 1.0f);
glEnd();


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20626] r200 texgen with glVertex4f(x, y, z, w) error

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20626





--- Comment #2 from Roland Scheidegger srol...@tungstengraphics.com  
2009-03-12 08:07:54 PST ---
(In reply to comment #0)
 When I use texgen with glVertex4f(x, y, z, w) on r200(ATI Radeon Mobility 9000
 card), the s coord texgen use (px, py, pz, pw), but I found s coord always be
 px * x + py * y + pz * z + pw, not expected px * x + py * y + pz * z + pw * w
 as if w is always 1.0f.

Note that the r200 has some hw limitations wrt to texgen, so some cases
(particularly if you enable texgen only on some coords) might not work
correctly. That said, what you're doing should work - I assume it does if you
use sw tnl (tcl_mode=0 or use driconf)? You've got a very old mesa version
however, does this also happen with something newer?


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


Re: [PATCH] make KMS resource mappings exclusive

2009-03-12 Thread Jesse Barnes
On Monday, March 9, 2009 3:29:40 am Simon Farnsworth wrote:
 Eric Anholt wrote:
  On Mon, 2009-01-19 at 13:00 -0800, Jesse Barnes wrote:
  This should help avoid problems with unsupported userspace programs or
  configurations running on top of a KMS enabled driver.  Updates the
  ioremap to nocache as well, since that's really what we want to track.
 
  Signed-off-by: Jesse Barnes jbar...@virtuousgeek.org
 
  For the record: the reason I've avoided doing this one is that when
  jbarnes and I talked, we figured that this prevents userland from
  mapping at all, though we really only care about preventing write
  mapping of the registers/aperture.  Since we've still got a bunch of
  really useful userland tools for debugging that rely on read-only
  mapping of registers, we're pending this until we get that information
  into the kernel somehow.

 Is there a reason why booting with iomem=relaxed isn't enough to let the
 userspace tools work?

No, that should work, but it does make things a lot more difficult for 
testers, since it means they'd likely have to reboot to collect dumps, rather 
than just collecting them when they run into a problem.  Eventually we'll be 
able to restrict the mappings though, after we support dumping the relevant 
info from debugfs instead.

-- 
Jesse Barnes, Intel Open Source Technology Center

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 12861] New: Xorg fails to start Failed to allocate space for kernel memory manager

2009-03-12 Thread bugme-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=12861

   Summary: Xorg fails to start Failed to allocate space for kernel
memory manager
   Product: Drivers
   Version: 2.5
 KernelVersion: 2.6.29-rc5
  Platform: All
OS/Version: Linux
  Tree: Mainline
Status: NEW
  Severity: normal
  Priority: P1
 Component: Video(DRI)
AssignedTo: drivers_video-...@kernel-bugs.osdl.org
ReportedBy: jkarl...@cc.hut.fi


Distribution: Gentoo
Hardware Environment: macbook revision 2, intel gma950
Software Environment: xf86-video-intel-2.6.2 libdrm-2.4.4, gcc-4.3.3
Problem Description: Xorg fails to start

Sorry if I misscategorized this

I get 

(EE) intel(0): Failed to allocate space for kernel memory manager
(==) intel(0): VideoRam: 16124 KB
(II) intel(0): Attempting memory allocation with tiled buffers.
(EE) intel(0): Failed to allocate framebuffer. Is your VideoRAM set too low?
(II) intel(0): Tiled allocation failed.
(WW) intel(0): Couldn't allocate tiled memory, fb compression disabled
(II) intel(0): Attempting memory allocation with untiled buffers.
(WW) intel(0): Failed to allocate EXA offscreen memory.
(II) intel(0): Untiled allocation failed.
(II) intel(0): Couldn't allocate 3D memory, disabling DRI.
(II) intel(0): Attempting memory allocation with untiled buffers.
(WW) intel(0): Failed to allocate EXA offscreen memory.
(II) intel(0): Untiled allocation failed.
(EE) intel(0): Couldn't allocate video memory

Unless I failed bisect this one is the bad commit ... doesn't make sense to me,
but I'm not a kernel developer.

fb5ae64fdde29236e1a15e0366946df7060f41f2 is first bad commit
commit fb5ae64fdde29236e1a15e0366946df7060f41f2
Author: Serge E. Hallyn se...@us.ibm.com
Date:   Fri Feb 13 14:04:21 2009 +

User namespaces: Only put the userns when we unhash the uid

uids in namespaces other than init don't get a sysfs entry.

For those in the init namespace, while we're waiting to remove
the sysfs entry for the uid the uid is still hashed, and
alloc_uid() may re-grab that uid without getting a new
reference to the user_ns, which we've already put in free_user
before scheduling remove_user_sysfs_dir().

Reported-and-tested-by: KOSAKI Motohiro kosaki.motoh...@jp.fujitsu.com
Signed-off-by: Serge E. Hallyn se...@us.ibm.com
Acked-by: David Howells dhowe...@redhat.com
Tested-by: Ingo Molnar mi...@elte.hu
Signed-off-by: Linus Torvalds torva...@linux-foundation.org


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 12861] Xorg fails to start Failed to allocate space for kernel memory manager

2009-03-12 Thread bugme-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=12861


jkarl...@cc.hut.fi changed:

   What|Removed |Added

 Regression|0   |1




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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 12861] Xorg fails to start Failed to allocate space for kernel memory manager

2009-03-12 Thread bugme-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=12861





--- Comment #1 from jkarl...@cc.hut.fi  2009-03-12 12:08 ---
Created an attachment (id=20507)
 -- (http://bugzilla.kernel.org/attachment.cgi?id=20507action=view)
dmesg from 2.6.29-rc7


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 12861] Xorg fails to start Failed to allocate space for kernel memory manager

2009-03-12 Thread bugme-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=12861





--- Comment #2 from jkarl...@cc.hut.fi  2009-03-12 12:09 ---
Created an attachment (id=20508)
 -- (http://bugzilla.kernel.org/attachment.cgi?id=20508action=view)
Xorg log


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


Re: [Patch 1/5]: DRM/I915: Add the crt save/restore function for VT switch

2009-03-12 Thread Jesse Barnes
On Friday, March 6, 2009 5:55:52 pm Keith Packard wrote:
 On Fri, 2009-03-06 at 15:19 -0800, Eric Anholt wrote:
  Given that these functions aren't actually hooked up to anything, I'm
  not sure if there's any value here.  It sounds like we're going to go to
  using the resume_force_mode function for suspend/resume, which means
  we'd never use these.

 I'm concerned that our mode setting code doesn't hit all of the same
 registers that the suspend/resume code does. There are a pile of
 registers which the BIOS may whack, and which will not be reset
 correctly unless we save their values before the system is suspended the
 first time.

 Otherwise, I love the 'just set the mode' plan. Any chance we can strip
 the suspend/resume code down to registers which our mode setting code
 *doesn't* save/restore? Or merge suitable 'restorish' bits into the mode
 setting path so that the other registers are set in the normal mode
 setting path?

Yeah, I think that's the direction we should be heading.  The top leve 
suspend/resume routines should handle global GPU state (and possibly 
save/restore a GPU context), but beyond that we just set a mode, which should 
take care of the rest.  That means we can get rid of all the output specific 
save/restore routines as a bonus.

-- 
Jesse Barnes, Intel Open Source Technology Center

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20634] New: i945 Crashing

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20634

   Summary: i945 Crashing
   Product: Mesa
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
  Severity: critical
  Priority: medium
 Component: Drivers/DRI/i915
AssignedTo: dri-devel@lists.sourceforge.net
ReportedBy: myspa...@gmail.com


As of a week or two ago, my laptop started crashing a few times a day. I don't
have any reliable sort of trigger, it's happened during all kinds of usage. (I
guess that is one thing that's consistent--it's happened *while* I've been
using the machine.) The screen starts flashing black and blacker, and the only
way to issue any commands is via ssh from another box (which usually is not
convenient, so I have to hard reset).

I've dumbed down my xorg.conf, but no luck.

8086:27a6 (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML
Express Integrated Graphics Controller (rev 03)

ja...@mercury:/var/log$ uname -m
i686
ja...@mercury:/var/log$ glxinfo
...
server glx version string: 1.2
...
client glx version string: 1.4

I'll submit more information in a moment. I'm afraid x will crash and I'll lose
what I've got so far.


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20634] i945 Crashing

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20634





--- Comment #1 from Jamie Jackson myspa...@gmail.com  2009-03-12 13:02:51 PST 
---
ja...@mercury:/var/log$ uname -r
2.6.27-11-generic
ja...@mercury:/var/log$ lsb_release -d
Description:Ubuntu 8.10

Machine: Dell Latitude D620

xorg.conf: http://jamiejackson.pastebin.com/f7b80fc8c (doesn't have modedebug
on, i'll add that now)
xorg.0.log.old: http://jamiejackson.pastebin.com/f63f13e93
dmesg: http://jamiejackson.pastebin.com/f5f36aca8
xrandr --verbose: http://jamiejackson.pastebin.com/f476814dc


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20634] i945 Crashing

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20634


Jamie Jackson myspa...@gmail.com changed:

   What|Removed |Added

Version|unspecified |7.2




--- Comment #2 from Jamie Jackson myspa...@gmail.com  2009-03-12 13:08:07 PST 
---
Found the Mesa Version:
$glxinfo
...
OpenGL version string: 1.4 Mesa 7.2
...


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 12861] Xorg fails to start Failed to allocate space for kernel memory manager

2009-03-12 Thread bugme-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=12861


r...@sisk.pl changed:

   What|Removed |Added

 CC||r...@sisk.pl
OtherBugsDependingO||12398
  nThis||




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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20634] i945 Crashing with Error in I830WaitLpRing()

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20634


Jamie Jackson myspa...@gmail.com changed:

   What|Removed |Added

Summary|i945 Crashing   |i945 Crashing with Error in
   ||I830WaitLpRing()




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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 20634] i945 Crashing with Error in I830WaitLpRing()

2009-03-12 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=20634


Gordon Jin gordon@intel.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
  Component|Drivers/DRI/i915|Driver/intel
Product|Mesa|xorg
 Resolution||DUPLICATE
Version|7.2 |unspecified




--- Comment #3 from Gordon Jin gordon@intel.com  2009-03-12 18:48:17 PST 
---
looks like 17638

*** This bug has been marked as a duplicate of bug 17638 ***


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

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH] drm/radeon: r600 ptes are 64-bit, cleanup cleanup function.

2009-03-12 Thread Dave Airlie
From: Dave Airlie airl...@redhat.com

Signed-off-by: Dave Airlie airl...@redhat.com
---
 drivers/gpu/drm/radeon/r600_cp.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/gpu/drm/radeon/r600_cp.c b/drivers/gpu/drm/radeon/r600_cp.c
index 490f353..76eb0d5 100644
--- a/drivers/gpu/drm/radeon/r600_cp.c
+++ b/drivers/gpu/drm/radeon/r600_cp.c
@@ -125,7 +125,7 @@ void r600_page_table_cleanup(struct drm_device *dev, struct 
drm_ati_pcigart_info
return;
 
if (gart_info-bus_addr) {
-   max_pages = (gart_info-table_size / sizeof(u32));
+   max_pages = (gart_info-table_size / sizeof(u64));
pages = (entry-pages = max_pages)
  ? entry-pages : max_pages;
 
-- 
1.6.0.6


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel