Skip to content

Commit

Permalink
V4L/DVB (9496): cx88-blackbird: bugfix: cx88-blackbird-mpeg-users
Browse files Browse the repository at this point in the history
Allows multiple access to the mpeg device

Signed-off-by: Frederic CAND <frederic.cand@anevia.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Frederic CAND authored and Mauro Carvalho Chehab committed Nov 11, 2008
1 parent a248237 commit 9c8e0a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions drivers/media/video/cx88/cx88-blackbird.c
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ static int mpeg_open(struct inode *inode, struct file *file)
}
}

if (blackbird_initialize_codec(dev) < 0) {
if (!atomic_read(&dev->core->mpeg_users) && blackbird_initialize_codec(dev) < 0) {
if (drv)
drv->request_release(drv);
unlock_kernel();
Expand Down Expand Up @@ -1109,6 +1109,8 @@ static int mpeg_open(struct inode *inode, struct file *file)
fh->mpegq.field);
unlock_kernel();

atomic_inc(&dev->core->mpeg_users);

return 0;
}

Expand All @@ -1118,7 +1120,7 @@ static int mpeg_release(struct inode *inode, struct file *file)
struct cx8802_dev *dev = fh->dev;
struct cx8802_driver *drv = NULL;

if (dev->mpeg_active)
if (dev->mpeg_active && atomic_read(&dev->core->mpeg_users) == 1)
blackbird_stop_codec(dev);

cx8802_cancel_buffers(fh->dev);
Expand All @@ -1138,6 +1140,8 @@ static int mpeg_release(struct inode *inode, struct file *file)
if (drv)
drv->request_release(drv);

atomic_dec(&dev->core->mpeg_users);

return 0;
}

Expand Down
1 change: 1 addition & 0 deletions drivers/media/video/cx88/cx88.h
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@ struct cx88_core {
/* various v4l controls */
u32 freq;
atomic_t users;
atomic_t mpeg_users;

/* cx88-video needs to access cx8802 for hybrid tuner pll access. */
struct cx8802_dev *dvbdev;
Expand Down

0 comments on commit 9c8e0a2

Please sign in to comment.