open-src/driver/xf86-video-ati/solaris-dri-drv-port.patch
author Alan Coopersmith <Alan.Coopersmith@Sun.COM>
Thu, 15 Jan 2009 12:55:00 -0800
changeset 606 068c11b419c9
parent 403 5a3d5128161c
child 999 c88b52baf4f4
permissions -rw-r--r--
6582489 X11R7.4: Xorg server 1.5.3, Mesa 7.2, and associated driver updates Includes changes contributed by Liang, Kan <[email protected]>: - G41 support patches - DRM_CAS in libdrm type error can cause deadlock and hang the glxgears. Includes changes contributed by Martin Bochnig <[email protected]>: - Make SUNWxorg-mesa package platform-clean

diff -urp -x '*~' -x '*.orig' src/radeon_dri.h src/radeon_dri.h
--- src/radeon_dri.h	2008-08-17 10:54:00.000000000 -0700
+++ src/radeon_dri.h	2009-01-10 19:09:08.415906000 -0800
@@ -75,20 +75,25 @@ typedef struct {
     /* MMIO register data */
     drm_handle_t     registerHandle;
     drmSize       registerSize;
+	int		padding0;
 
     /* CP in-memory status information */
     drm_handle_t     statusHandle;
     drmSize       statusSize;
+	int		padding1;
 
     /* CP GART Texture data */
     drm_handle_t     gartTexHandle;
     drmSize       gartTexMapSize;
+	int		padding2;
     int           log2GARTTexGran;
     int           gartTexOffset;
     unsigned int  sarea_priv_offset;
 
 #ifdef PER_CONTEXT_SAREA
     drmSize      perctx_sarea_size;
+#else
+	int		padding3;
 #endif
 } RADEONDRIRec, *RADEONDRIPtr;