[PATCH 6/11 ] Change drm_ioctl as an unlocked_ioctl function : r128

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/r128_drv.c b/drivers/char/drm/r128_drv.c
index 6108e75..b2a16a7 100644
--- a/drivers/char/drm/r128_drv.c
+++ b/drivers/char/drm/r128_drv.c
@@ -62,7 +62,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,
diff --git a/drivers/char/drm/r128_ioc32.c b/drivers/char/drm/r128_ioc32.c
index d3cb676..1f3c5e5 100644
--- a/drivers/char/drm/r128_ioc32.c
+++ b/drivers/char/drm/r128_ioc32.c
@@ -95,8 +95,8 @@ static int compat_r128_init(struct file *file, unsigned int 
cmd,
  init-agp_textures_offset))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_R128_INIT, (unsigned long)init);
+   return drm_ioctl(file, DRM_IOCTL_R128_INIT,
+(unsigned long)init);
 }
 
 typedef struct drm_r128_depth32 {
@@ -129,8 +129,8 @@ static int compat_r128_depth(struct file *file, unsigned 
int cmd,
  depth-mask))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_R128_DEPTH, (unsigned long)depth);
+   return drm_ioctl(file, DRM_IOCTL_R128_DEPTH,
+(unsigned long)depth);
 
 }
 
@@ -153,8 +153,8 @@ static int compat_r128_stipple(struct file *file, unsigned 
int cmd,
  stipple-mask))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_R128_STIPPLE, (unsigned long)stipple);
+   return drm_ioctl(file, DRM_IOCTL_R128_STIPPLE,
+(unsigned long)stipple);
 }
 
 typedef struct drm_r128_getparam32 {
@@ -178,8 +178,8 @@ static int compat_r128_getparam(struct file *file, unsigned 
int cmd,
  getparam-value))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_R128_GETPARAM, (unsigned long)getparam);
+   return drm_ioctl(file, DRM_IOCTL_R128_GETPARAM,
+(unsigned long)getparam);
 }
 
 drm_ioctl_compat_t *r128_compat_ioctls[] = {
@@ -214,7 +214,7 @@ long r128_compat_ioctl(struct file *filp, unsigned int cmd, 
unsigned long arg)
if (fn != NULL)
ret = (*fn) (filp, cmd, arg);
else
-   ret = drm_ioctl(filp-f_path.dentry-d_inode, filp, cmd, arg);
+   ret = drm_ioctl(filp, cmd, arg);
unlock_kernel();
 
return ret;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 7/11 ] Change drm_ioctl as an unlocked_ioctl function : Radeon

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/radeon_drv.c b/drivers/char/drm/radeon_drv.c
index 349ac3d..6d7588c 100644
--- a/drivers/char/drm/radeon_drv.c
+++ b/drivers/char/drm/radeon_drv.c
@@ -85,7 +85,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,
diff --git a/drivers/char/drm/radeon_ioc32.c b/drivers/char/drm/radeon_ioc32.c
index 56decda..f095048 100644
--- a/drivers/char/drm/radeon_ioc32.c
+++ b/drivers/char/drm/radeon_ioc32.c
@@ -92,8 +92,8 @@ static int compat_radeon_cp_init(struct file *file, unsigned 
int cmd,
  init-gart_textures_offset))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_CP_INIT, (unsigned long)init);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_CP_INIT,
+(unsigned long)init);
 }
 
 typedef struct drm_radeon_clear32 {
@@ -125,8 +125,8 @@ static int compat_radeon_cp_clear(struct file *file, 
unsigned int cmd,
  clr-depth_boxes))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_CLEAR, (unsigned long)clr);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_CLEAR,
+(unsigned long)clr);
 }
 
 typedef struct drm_radeon_stipple32 {
@@ -149,8 +149,8 @@ static int compat_radeon_cp_stipple(struct file *file, 
unsigned int cmd,
  request-mask))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_STIPPLE, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_STIPPLE,
+(unsigned long)request);
 }
 
 typedef struct drm_radeon_tex_image32 {
@@ -204,8 +204,8 @@ static int compat_radeon_cp_texture(struct file *file, 
unsigned int cmd,
  image-data))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_TEXTURE, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_TEXTURE,
+(unsigned long)request);
 }
 
 typedef struct drm_radeon_vertex2_32 {
@@ -238,8 +238,8 @@ static int compat_radeon_cp_vertex2(struct file *file, 
unsigned int cmd,
  request-prim))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_VERTEX2, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_VERTEX2,
+(unsigned long)request);
 }
 
 typedef struct drm_radeon_cmd_buffer32 {
@@ -268,8 +268,8 @@ static int compat_radeon_cp_cmdbuf(struct file *file, 
unsigned int cmd,
  request-boxes))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_CMDBUF, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_CMDBUF,
+(unsigned long)request);
 }
 
 typedef struct drm_radeon_getparam32 {
@@ -293,8 +293,8 @@ static int compat_radeon_cp_getparam(struct file *file, 
unsigned int cmd,
  request-value))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_GETPARAM, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_GETPARAM,
+(unsigned long)request);
 }
 
 typedef struct drm_radeon_mem_alloc32 {
@@ -322,8 +322,8 @@ static int compat_radeon_mem_alloc(struct file *file, 
unsigned int cmd,
  request-region_offset))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_ALLOC, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_ALLOC,
+(unsigned long)request);
 }
 
 typedef struct drm_radeon_irq_emit32 {
@@ -345,8 +345,8 @@ static int compat_radeon_irq_emit(struct file *file, 
unsigned int cmd,
  request-irq_seq))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RADEON_IRQ_EMIT, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_RADEON_IRQ_EMIT,
+  

[PATCH 4/11 ] Change drm_ioctl as an unlocked_ioctl function : i915

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/i915_drv.c b/drivers/char/drm/i915_drv.c
index 85bcc27..70a882e 100644
--- a/drivers/char/drm/i915_drv.c
+++ b/drivers/char/drm/i915_drv.c
@@ -64,7 +64,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,
diff --git a/drivers/char/drm/i915_ioc32.c b/drivers/char/drm/i915_ioc32.c
index 1fe68a2..f8b1d68 100644
--- a/drivers/char/drm/i915_ioc32.c
+++ b/drivers/char/drm/i915_ioc32.c
@@ -66,9 +66,8 @@ static int compat_i915_batchbuffer(struct file *file, 
unsigned int cmd,
  batchbuffer-cliprects))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_I915_BATCHBUFFER,
-(unsigned long)batchbuffer);
+   return drm_ioctl(file, DRM_IOCTL_I915_BATCHBUFFER,
+(unsigned long)batchbuffer);
 }
 
 typedef struct _drm_i915_cmdbuffer32 {
@@ -102,8 +101,8 @@ static int compat_i915_cmdbuffer(struct file *file, 
unsigned int cmd,
  cmdbuffer-cliprects))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_I915_CMDBUFFER, (unsigned long)cmdbuffer);
+   return drm_ioctl(file, DRM_IOCTL_I915_CMDBUFFER,
+(unsigned long)cmdbuffer);
 }
 
 typedef struct drm_i915_irq_emit32 {
@@ -125,8 +124,8 @@ static int compat_i915_irq_emit(struct file *file, unsigned 
int cmd,
  request-irq_seq))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_I915_IRQ_EMIT, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_I915_IRQ_EMIT,
+(unsigned long)request);
 }
 typedef struct drm_i915_getparam32 {
int param;
@@ -149,8 +148,8 @@ static int compat_i915_getparam(struct file *file, unsigned 
int cmd,
  request-value))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_I915_GETPARAM, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_I915_GETPARAM,
+(unsigned long)request);
 }
 
 typedef struct drm_i915_mem_alloc32 {
@@ -178,8 +177,8 @@ static int compat_i915_alloc(struct file *file, unsigned 
int cmd,
  request-region_offset))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_I915_ALLOC, (unsigned long)request);
+   return drm_ioctl(file, DRM_IOCTL_I915_ALLOC,
+(unsigned long)request);
 }
 
 drm_ioctl_compat_t *i915_compat_ioctls[] = {
@@ -215,7 +214,7 @@ long i915_compat_ioctl(struct file *filp, unsigned int cmd, 
unsigned long arg)
if (fn != NULL)
ret = (*fn) (filp, cmd, arg);
else
-   ret = drm_ioctl(filp-f_path.dentry-d_inode, filp, cmd, arg);
+   ret = drm_ioctl(filp, cmd, arg);
unlock_kernel();
 
return ret;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 9/11 ] Change drm_ioctl as an unlocked_ioctl function : sis

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/sis_drv.c b/drivers/char/drm/sis_drv.c
index 7dacc64..1bbde29 100644
--- a/drivers/char/drm/sis_drv.c
+++ b/drivers/char/drm/sis_drv.c
@@ -80,7 +80,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 10/11 ] Change drm_ioctl as an unlocked_ioctl function : tdfx

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/tdfx_drv.c b/drivers/char/drm/tdfx_drv.c
index 012ff2e..ec5a43e 100644
--- a/drivers/char/drm/tdfx_drv.c
+++ b/drivers/char/drm/tdfx_drv.c
@@ -48,7 +48,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 11/11 ] Change drm_ioctl as an unlocked_ioctl function : via

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/via_drv.c b/drivers/char/drm/via_drv.c
index 2d4957a..a8041c5 100644
--- a/drivers/char/drm/via_drv.c
+++ b/drivers/char/drm/via_drv.c
@@ -62,7 +62,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 5/11 ] Change drm_ioctl as an unlocked_ioctl function : mga

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/mga_drv.c b/drivers/char/drm/mga_drv.c
index 5572939..be31707 100644
--- a/drivers/char/drm/mga_drv.c
+++ b/drivers/char/drm/mga_drv.c
@@ -67,7 +67,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,
diff --git a/drivers/char/drm/mga_ioc32.c b/drivers/char/drm/mga_ioc32.c
index 30d0047..a4581d9 100644
--- a/drivers/char/drm/mga_ioc32.c
+++ b/drivers/char/drm/mga_ioc32.c
@@ -100,8 +100,7 @@ static int compat_mga_init(struct file *file, unsigned int 
cmd,
if (err)
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_MGA_INIT, (unsigned long)init);
+   return drm_ioctl(file, DRM_IOCTL_MGA_INIT, (unsigned long)init);
 }
 
 typedef struct drm_mga_getparam32 {
@@ -125,8 +124,8 @@ static int compat_mga_getparam(struct file *file, unsigned 
int cmd,
  getparam-value))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_MGA_GETPARAM, (unsigned long)getparam);
+   return drm_ioctl(file, DRM_IOCTL_MGA_GETPARAM,
+(unsigned long)getparam);
 }
 
 typedef struct drm_mga_drm_bootstrap32 {
@@ -166,9 +165,8 @@ static int compat_mga_dma_bootstrap(struct file *file, 
unsigned int cmd,
|| __put_user(dma_bootstrap32.agp_size, dma_bootstrap-agp_size))
return -EFAULT;
 
-   err = drm_ioctl(file-f_path.dentry-d_inode, file,
-   DRM_IOCTL_MGA_DMA_BOOTSTRAP,
-   (unsigned long)dma_bootstrap);
+   err = drm_ioctl(file, DRM_IOCTL_MGA_DMA_BOOTSTRAP,
+   (unsigned long)dma_bootstrap);
if (err)
return err;
 
@@ -224,7 +222,7 @@ long mga_compat_ioctl(struct file *filp, unsigned int cmd, 
unsigned long arg)
if (fn != NULL)
ret = (*fn) (filp, cmd, arg);
else
-   ret = drm_ioctl(filp-f_path.dentry-d_inode, filp, cmd, arg);
+   ret = drm_ioctl(filp, cmd, arg);
unlock_kernel();
 
return ret;



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 3/11 ] Change drm_ioctl as an unlocked_ioctl function : i830

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/i830_dma.c b/drivers/char/drm/i830_dma.c
index 69a363e..2f82480 100644
--- a/drivers/char/drm/i830_dma.c
+++ b/drivers/char/drm/i830_dma.c
@@ -117,7 +117,7 @@ static int i830_mmap_buffers(struct file *filp, struct 
vm_area_struct *vma)
 static const struct file_operations i830_buffer_fops = {
.open = drm_open,
.release = drm_release,
-   .ioctl = drm_ioctl,
+   .unlocked_ioctl = drm_ioctl,
.mmap = i830_mmap_buffers,
.fasync = drm_fasync,
 };
diff --git a/drivers/char/drm/i830_drv.c b/drivers/char/drm/i830_drv.c
index 389597e..44f990b 100644
--- a/drivers/char/drm/i830_drv.c
+++ b/drivers/char/drm/i830_drv.c
@@ -70,7 +70,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 2/11 ] Change drm_ioctl as an unlocked_ioctl function : i810

2008-01-11 Thread Nikanth Karthikesan
Register drm_ioctl as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

--- 
diff --git a/drivers/char/drm/i810_dma.c b/drivers/char/drm/i810_dma.c
index eb381a7..e3adbf3 100644
--- a/drivers/char/drm/i810_dma.c
+++ b/drivers/char/drm/i810_dma.c
@@ -115,7 +115,7 @@ static int i810_mmap_buffers(struct file *filp, struct 
vm_area_struct *vma)
 static const struct file_operations i810_buffer_fops = {
.open = drm_open,
.release = drm_release,
-   .ioctl = drm_ioctl,
+   .unlocked_ioctl = drm_ioctl,
.mmap = i810_mmap_buffers,
.fasync = drm_fasync,
 };
diff --git a/drivers/char/drm/i810_drv.c b/drivers/char/drm/i810_drv.c
index fabb9a8..c1e0275 100644
--- a/drivers/char/drm/i810_drv.c
+++ b/drivers/char/drm/i810_drv.c
@@ -59,7 +59,7 @@ static struct drm_driver driver = {
 .owner = THIS_MODULE,
 .open = drm_open,
 .release = drm_release,
-.ioctl = drm_ioctl,
+.unlocked_ioctl = drm_ioctl,
 .mmap = drm_mmap,
 .poll = drm_poll,
 .fasync = drm_fasync,



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[PATCH 1/11 ] Change drm_ioctl as an unlocked_ioctl function

2008-01-11 Thread Nikanth Karthikesan
The ioctl handlers are called with the BKL held, where as unlocked_ioctl
handlers are not. The drm_ioctl function is registered as an ioctl
handler. But it does not need the BKL to be held. Changing drm_ioctl to
register as an unlocked_ioctl function.

Signed-off-by: Nikanth Karthikesan [EMAIL PROTECTED]

---
diff --git a/drivers/char/drm/drmP.h b/drivers/char/drm/drmP.h
index dde02a1..e5570b8 100644
--- a/drivers/char/drm/drmP.h
+++ b/drivers/char/drm/drmP.h
@@ -833,8 +833,8 @@ static inline int drm_mtrr_del(int handle, unsigned long 
offset,
/* Driver support (drm_drv.h) */
 extern int drm_init(struct drm_driver *driver);
 extern void drm_exit(struct drm_driver *driver);
-extern int drm_ioctl(struct inode *inode, struct file *filp,
-unsigned int cmd, unsigned long arg);
+extern long drm_ioctl(struct file *filp, unsigned int cmd,
+unsigned long arg);
 extern long drm_compat_ioctl(struct file *filp,
 unsigned int cmd, unsigned long arg);
 extern int drm_lastclose(struct drm_device *dev);
diff --git a/drivers/char/drm/drm_drv.c b/drivers/char/drm/drm_drv.c
index 44a4626..7938153 100644
--- a/drivers/char/drm/drm_drv.c
+++ b/drivers/char/drm/drm_drv.c
@@ -438,7 +438,6 @@ static int drm_version(struct drm_device *dev, void *data,
 /**
  * Called whenever a process performs an ioctl on /dev/drm.
  *
- * \param inode device inode.
  * \param file_priv DRM file private.
  * \param cmd command.
  * \param arg user argument.
@@ -447,8 +446,7 @@ static int drm_version(struct drm_device *dev, void *data,
  * Looks up the ioctl function in the ::ioctls table, checking for root
  * previleges if so required, and dispatches to the respective function.
  */
-int drm_ioctl(struct inode *inode, struct file *filp,
- unsigned int cmd, unsigned long arg)
+long drm_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
 {
struct drm_file *file_priv = filp-private_data;
struct drm_device *dev = file_priv-head-dev;
diff --git a/drivers/char/drm/drm_ioc32.c b/drivers/char/drm/drm_ioc32.c
index 2286f33..3b35263 100644
--- a/drivers/char/drm/drm_ioc32.c
+++ b/drivers/char/drm/drm_ioc32.c
@@ -102,8 +102,8 @@ static int compat_drm_version(struct file *file, unsigned 
int cmd,
  version-desc))
return -EFAULT;
 
-   err = drm_ioctl(file-f_path.dentry-d_inode, file,
-   DRM_IOCTL_VERSION, (unsigned long)version);
+   err = drm_ioctl(file, DRM_IOCTL_VERSION,
+(unsigned long)version);
if (err)
return err;
 
@@ -143,8 +143,7 @@ static int compat_drm_getunique(struct file *file, unsigned 
int cmd,
  u-unique))
return -EFAULT;
 
-   err = drm_ioctl(file-f_path.dentry-d_inode, file,
-   DRM_IOCTL_GET_UNIQUE, (unsigned long)u);
+   err = drm_ioctl(file, DRM_IOCTL_GET_UNIQUE, (unsigned long)u);
if (err)
return err;
 
@@ -172,8 +171,7 @@ static int compat_drm_setunique(struct file *file, unsigned 
int cmd,
  u-unique))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_SET_UNIQUE, (unsigned long)u);
+   return drm_ioctl(file, DRM_IOCTL_SET_UNIQUE, (unsigned long)u);
 }
 
 typedef struct drm_map32 {
@@ -203,8 +201,7 @@ static int compat_drm_getmap(struct file *file, unsigned 
int cmd,
if (__put_user(idx, map-offset))
return -EFAULT;
 
-   err = drm_ioctl(file-f_path.dentry-d_inode, file,
-   DRM_IOCTL_GET_MAP, (unsigned long)map);
+   err = drm_ioctl(file, DRM_IOCTL_GET_MAP, (unsigned long)map);
if (err)
return err;
 
@@ -244,8 +241,7 @@ static int compat_drm_addmap(struct file *file, unsigned 
int cmd,
|| __put_user(m32.flags, map-flags))
return -EFAULT;
 
-   err = drm_ioctl(file-f_path.dentry-d_inode, file,
-   DRM_IOCTL_ADD_MAP, (unsigned long)map);
+   err = drm_ioctl(file, DRM_IOCTL_ADD_MAP, (unsigned long)map);
if (err)
return err;
 
@@ -282,8 +278,7 @@ static int compat_drm_rmmap(struct file *file, unsigned int 
cmd,
if (__put_user((void *)(unsigned long)handle, map-handle))
return -EFAULT;
 
-   return drm_ioctl(file-f_path.dentry-d_inode, file,
-DRM_IOCTL_RM_MAP, (unsigned long)map);
+   return drm_ioctl(file, DRM_IOCTL_RM_MAP, (unsigned long)map);
 }
 
 typedef struct drm_client32 {
@@ -312,8 +307,8 @@ static int compat_drm_getclient(struct file *file, unsigned 
int cmd,
if (__put_user(idx, client-idx))
return -EFAULT;
 
-   err = drm_ioctl(file-f_path.dentry-d_inode, file,
-   DRM_IOCTL_GET_CLIENT, (unsigned 

[Bug 10245] Mouse cursor glitches with r300 in some OpenGL applications

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10245


Giacomo Perale [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #13 from Giacomo Perale [EMAIL PROTECTED]  2008-01-11 03:18:47 
PST ---
Problem disappeared sometime in the last months.


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 1034] Strange reboots when using tvtime

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=1034


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #6 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:36 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 3982] glxinfo disagrees xorg.log / too old libgl

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=3982


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #7 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:39 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 13721] One side of visualization surface is black

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=13721


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #4 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:38:34 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 13697] [wine] Error of freedesktop with wine

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=13697


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #9 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:38:34 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6515] Direct Rendering issues with x11-drm from CVS

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=6515


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #4 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:42 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7880] The newest mesa does not work with compiz on Xgl

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=7880


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #2 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:43 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 8243] X.org-7.1 and older locks up with radeon driver

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=8243


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #8 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:44 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 1967] VMware hangs when GLX enabled

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=1967


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #2 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:37 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 4696] segfault in server-side glXMakeCurrent path with indirect rendering

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=4696


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #10 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:39 
PST ---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 5245] After loading a Xserver with the glx module the network stops working

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=5245


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #11 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:40 
PST ---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 7128] Radeon R300 lockup on 2 clients accessing XV

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=7128


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #10 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:42 
PST ---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 8217] Random freezes after 'startx' with Radeon 8500 DV and DRI enabled

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=8217


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #10 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:36:44 
PST ---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 10245] Mouse cursor glitches with r300 in some OpenGL applications

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10245


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #12 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:38:31 
PST ---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 10761] mga dri locks up on resume from disk

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=10761


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #4 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:38:32 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11434] RADEON with [Radeon X300 (PCIE)] RV370

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11434


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #17 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:38:33 
PST ---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 13922] Failed to initialize TTM buffer manager

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=13922


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #9 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:38:35 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 13762] [Q35] mesa xdemos 'manywin' run abort

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=13762


Benjamin Close [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED




--- Comment #6 from Benjamin Close [EMAIL PROTECTED]  2008-01-11 02:38:54 PST 
---
Bugzilla Upgrade Mass Bug Change

NEEDSINFO state was removed in Bugzilla 3.x, reopening any bugs previously
listed as NEEDSINFO.

  - benjsc
fd.o Wrangler


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11434] RADEON with [Radeon X300 (PCIE)] RV370

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11434


Michel Dänzer [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #18 from Michel Dänzer [EMAIL PROTECTED]  2008-01-11 03:36:54 PST 
---
It sounds like the original bug is fixed. If you still have other issues,
please followup to existing other bugs about them or file new ones.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 3982] glxinfo disagrees xorg.log / too old libgl

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=3982


Alex Deucher [EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #8 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 11:25:18 PST 
---
closing


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 1034] Strange reboots when using tvtime

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=1034


Alex Deucher [EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
 Status|REOPENED|RESOLVED
 Resolution||NOTOURBUG




--- Comment #7 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 11:20:27 PST 
---
closing due to lack of response


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 8217] Random freezes after 'startx' with Radeon 8500 DV and DRI enabled

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=8217





--- Comment #11 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 12:07:25 PST 
---
Are you still having problems with more recent versions of the driver?


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 5245] After loading a Xserver with the glx module the network stops working

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=5245


Alex Deucher [EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #12 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 11:43:45 PST 
---
If you are still having the same problem with a more recent xserver, ati
driver, and drm, please re-open.


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 5341] System locks up when starting X w/ DRI on a Radeon RV370 (X300)

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=5341


Alex Deucher [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #27 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 12:10:14 PST 
---
closing. please reopen if you are still having problems with a more recent
version of the driver.


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 8243] X.org-7.1 and older locks up with radeon driver

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=8243





--- Comment #9 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 11:35:01 PST 
---
Are you still having problem with more recent versions of the driver and
xserver and drm?


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 2579] Poor FPS ( 200) on Radeon IGP 320M (HP Compaq Presario 900US)

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=2579


Alex Deucher [EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #13 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 11:55:37 PST 
---
can you try again with a more recent version of the drivers and re-open if you
still have the same issue?


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 6515] Direct Rendering issues with x11-drm from CVS

2008-01-11 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=6515


Alex Deucher [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #5 from Alex Deucher [EMAIL PROTECTED]  2008-01-11 11:56:36 PST 
---
closing due to lack of response


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

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel