summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i810/i810_drv.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2011-10-25 23:51:24 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2011-12-22 19:54:43 +0100
commit87499ffdcb1c70f66988cd8febc4ead0ba2f9118 (patch)
treef4b3e1400ceafccf3b742c796a983882703a8dba /drivers/gpu/drm/i810/i810_drv.h
parent7a6e0daaf4058d1b7dd515bc470ec904454a798c (diff)
downloadlinux-87499ffdcb1c70f66988cd8febc4ead0ba2f9118.tar.gz
linux-87499ffdcb1c70f66988cd8febc4ead0ba2f9118.tar.bz2
linux-87499ffdcb1c70f66988cd8febc4ead0ba2f9118.zip
drm/i810: cleanup reclaim_buffers
My dear old i815 always hits the deadlocked on reclaim_buffers warning. Switch over to the idlelock duct-tape on hope that works better. I've fired up my i815 and now closing glxgears doesn't take 5 seconds anymore. \o/ Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i810/i810_drv.h')
-rw-r--r--drivers/gpu/drm/i810/i810_drv.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/gpu/drm/i810/i810_drv.h b/drivers/gpu/drm/i810/i810_drv.h
index c9339f481795..6e0acad9e0f5 100644
--- a/drivers/gpu/drm/i810/i810_drv.h
+++ b/drivers/gpu/drm/i810/i810_drv.h
@@ -116,14 +116,12 @@ typedef struct drm_i810_private {
/* i810_dma.c */
extern int i810_driver_dma_quiescent(struct drm_device *dev);
-extern void i810_driver_reclaim_buffers_locked(struct drm_device *dev,
- struct drm_file *file_priv);
+void i810_driver_reclaim_buffers(struct drm_device *dev,
+ struct drm_file *file_priv);
extern int i810_driver_load(struct drm_device *, unsigned long flags);
extern void i810_driver_lastclose(struct drm_device *dev);
extern void i810_driver_preclose(struct drm_device *dev,
struct drm_file *file_priv);
-extern void i810_driver_reclaim_buffers_locked(struct drm_device *dev,
- struct drm_file *file_priv);
extern int i810_driver_device_is_agp(struct drm_device *dev);
extern long i810_ioctl(struct file *file, unsigned int cmd, unsigned long arg);