Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 114034
b: refs/heads/master
c: 6b060ff
h: refs/heads/master
v: v3
  • Loading branch information
Frank Zago authored and Mauro Carvalho Chehab committed Oct 12, 2008
1 parent 1873501 commit ddb2e0c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 13 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: 6c49da7f169c25eb39b80ff168f5bdbacf8457e1
refs/heads/master: 6b060ffea0722cfe4f5156a73a6424130d3d804a
39 changes: 27 additions & 12 deletions trunk/drivers/media/video/gspca/gspca.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <linux/string.h>
#include <linux/pagemap.h>
#include <linux/io.h>
#include <linux/kref.h>
#include <asm/page.h>
#include <linux/uaccess.h>
#include <linux/jiffies.h>
Expand Down Expand Up @@ -834,6 +835,16 @@ static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
return ret;
}

static void gspca_delete(struct kref *kref)
{
struct gspca_dev *gspca_dev = container_of(kref, struct gspca_dev, kref);

PDEBUG(D_STREAM, "device deleted");

kfree(gspca_dev->usb_buf);
kfree(gspca_dev);
}

static int dev_open(struct inode *inode, struct file *file)
{
struct gspca_dev *gspca_dev;
Expand All @@ -853,6 +864,10 @@ static int dev_open(struct inode *inode, struct file *file)
goto out;
}
gspca_dev->users++;

/* one more user */
kref_get(&gspca_dev->kref);

file->private_data = gspca_dev;
#ifdef GSPCA_DEBUG
/* activate the v4l2 debug */
Expand Down Expand Up @@ -895,7 +910,11 @@ static int dev_close(struct inode *inode, struct file *file)
}
file->private_data = NULL;
mutex_unlock(&gspca_dev->queue_lock);

PDEBUG(D_STREAM, "close done");

kref_put(&gspca_dev->kref, gspca_delete);

return 0;
}

Expand Down Expand Up @@ -1809,6 +1828,7 @@ int gspca_dev_probe(struct usb_interface *intf,
err("couldn't kzalloc gspca struct");
return -EIO;
}
kref_init(&gspca_dev->kref);
gspca_dev->usb_buf = kmalloc(USB_BUF_SZ, GFP_KERNEL);
if (!gspca_dev->usb_buf) {
err("out of memory");
Expand Down Expand Up @@ -1858,8 +1878,7 @@ int gspca_dev_probe(struct usb_interface *intf,
PDEBUG(D_PROBE, "probe ok");
return 0;
out:
kfree(gspca_dev->usb_buf);
kfree(gspca_dev);
kref_put(&gspca_dev->kref, gspca_delete);
return ret;
}
EXPORT_SYMBOL(gspca_dev_probe);
Expand All @@ -1874,25 +1893,21 @@ void gspca_disconnect(struct usb_interface *intf)
{
struct gspca_dev *gspca_dev = usb_get_intfdata(intf);

if (!gspca_dev)
return;
usb_set_intfdata(intf, NULL);

gspca_dev->present = 0;
mutex_lock(&gspca_dev->queue_lock);
mutex_lock(&gspca_dev->usb_lock);
gspca_dev->streaming = 0;
destroy_urbs(gspca_dev);
mutex_unlock(&gspca_dev->usb_lock);
mutex_unlock(&gspca_dev->queue_lock);
while (gspca_dev->users != 0) { /* wait until fully closed */
atomic_inc(&gspca_dev->nevent);
wake_up_interruptible(&gspca_dev->wq); /* wake processes */
schedule();
}

/* We don't want people trying to open up the device */
video_unregister_device(&gspca_dev->vdev);
/* Free the memory */
kfree(gspca_dev->usb_buf);
kfree(gspca_dev);

kref_put(&gspca_dev->kref, gspca_delete);

PDEBUG(D_PROBE, "disconnect complete");
}
EXPORT_SYMBOL(gspca_disconnect);
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/media/video/gspca/gspca.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ struct gspca_dev {
struct video_device vdev; /* !! must be the first item */
struct file_operations fops;
struct usb_device *dev;
struct kref kref;
struct file *capt_file; /* file doing video capture */

struct cam cam; /* device information */
Expand Down

0 comments on commit ddb2e0c

Please sign in to comment.