Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330696
b: refs/heads/master
c: f135a8a
h: refs/heads/master
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Aug 9, 2012
1 parent 20da1ed commit 38650fd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 954f5bcb390c8d8a7357fe4f5e0ba264058574fb
refs/heads/master: f135a8a224294fa0f60ec1b8bc120813b7cfc804
25 changes: 19 additions & 6 deletions trunk/drivers/media/video/sh_vou.c
Original file line number Diff line number Diff line change
Expand Up @@ -1171,6 +1171,8 @@ static int sh_vou_open(struct file *file)

file->private_data = vou_file;

if (mutex_lock_interruptible(&vou_dev->fop_lock))
return -ERESTARTSYS;
if (atomic_inc_return(&vou_dev->use_count) == 1) {
int ret;
/* First open */
Expand All @@ -1181,6 +1183,7 @@ static int sh_vou_open(struct file *file)
atomic_dec(&vou_dev->use_count);
pm_runtime_put(vdev->v4l2_dev->dev);
vou_dev->status = SH_VOU_IDLE;
mutex_unlock(&vou_dev->fop_lock);
return ret;
}
}
Expand All @@ -1191,6 +1194,7 @@ static int sh_vou_open(struct file *file)
V4L2_FIELD_NONE,
sizeof(struct videobuf_buffer), vdev,
&vou_dev->fop_lock);
mutex_unlock(&vou_dev->fop_lock);

return 0;
}
Expand All @@ -1204,10 +1208,12 @@ static int sh_vou_release(struct file *file)
dev_dbg(vou_file->vbq.dev, "%s()\n", __func__);

if (!atomic_dec_return(&vou_dev->use_count)) {
mutex_lock(&vou_dev->fop_lock);
/* Last close */
vou_dev->status = SH_VOU_IDLE;
sh_vou_reg_a_set(vou_dev, VOUER, 0, 0x101);
pm_runtime_put(vdev->v4l2_dev->dev);
mutex_unlock(&vou_dev->fop_lock);
}

file->private_data = NULL;
Expand All @@ -1218,20 +1224,31 @@ static int sh_vou_release(struct file *file)

static int sh_vou_mmap(struct file *file, struct vm_area_struct *vma)
{
struct sh_vou_device *vou_dev = video_get_drvdata(vdev);
struct sh_vou_file *vou_file = file->private_data;
int ret;

dev_dbg(vou_file->vbq.dev, "%s()\n", __func__);

return videobuf_mmap_mapper(&vou_file->vbq, vma);
if (mutex_lock_interruptible(&vou_dev->fop_lock))
return -ERESTARTSYS;
ret = videobuf_mmap_mapper(&vou_file->vbq, vma);
mutex_unlock(&vou_dev->fop_lock);
return ret;
}

static unsigned int sh_vou_poll(struct file *file, poll_table *wait)
{
struct sh_vou_device *vou_dev = video_get_drvdata(vdev);
struct sh_vou_file *vou_file = file->private_data;
unsigned int res;

dev_dbg(vou_file->vbq.dev, "%s()\n", __func__);

return videobuf_poll_stream(file, &vou_file->vbq, wait);
mutex_lock(&vou_dev->fop_lock);
res = videobuf_poll_stream(file, &vou_file->vbq, wait);
mutex_unlock(&vou_dev->fop_lock);
return res;
}

static int sh_vou_g_chip_ident(struct file *file, void *fh,
Expand Down Expand Up @@ -1390,10 +1407,6 @@ static int __devinit sh_vou_probe(struct platform_device *pdev)
vdev->v4l2_dev = &vou_dev->v4l2_dev;
vdev->release = video_device_release;
vdev->lock = &vou_dev->fop_lock;
/* Locking in file operations other than ioctl should be done
by the driver, not the V4L2 core.
This driver needs auditing so that this flag can be removed. */
set_bit(V4L2_FL_LOCK_ALL_FOPS, &vdev->flags);

vou_dev->vdev = vdev;
video_set_drvdata(vdev, vou_dev);
Expand Down

0 comments on commit 38650fd

Please sign in to comment.