summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/i810
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2010-09-29 15:47:58 (GMT)
committerDave Airlie <airlied@redhat.com>2010-09-30 02:45:09 (GMT)
commit130b9851933e6da636502cd85e1ba8f45f862e8c (patch)
treec08b7977b210bfd2974b5ce94f47c2d0854a11b9 /drivers/gpu/drm/i810
parentf36fce0f49ed40f3e843d45fa53d476d63444b58 (diff)
downloadlinux-130b9851933e6da636502cd85e1ba8f45f862e8c.tar.xz
drm: i810/i830: fix locked ioctl variant
The i810 and i830 device drivers may replace their file operations on an open file descriptor. My previous patch to move the BKL out of the common DRM code into these drivers only caught the default file operations, not the ones that actually end up being used. Found while trying to come up with a way to kill the BKL for good in these drivers. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/i810')
-rw-r--r--drivers/gpu/drm/i810/i810_dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i810/i810_dma.c b/drivers/gpu/drm/i810/i810_dma.c
index 61b4caf..fb07e73 100644
--- a/drivers/gpu/drm/i810/i810_dma.c
+++ b/drivers/gpu/drm/i810/i810_dma.c
@@ -116,7 +116,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,
- .unlocked_ioctl = drm_ioctl,
+ .unlocked_ioctl = i810_ioctl,
.mmap = i810_mmap_buffers,
.fasync = drm_fasync,
};