aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/v4l2-dev.c
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2010-07-01 13:21:39 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-08-02 14:36:02 -0400
commit1bb6419433433e845f7bc47651ad246b2e65c6fa (patch)
tree56d9feec496430d29a450480d3908ea380daed92 /drivers/media/video/v4l2-dev.c
parent2030c0325aa3d430b7bb9ec99da0295f49d183ef (diff)
V4L/DVB: v4l2-dev: fix memory leak
Since commit b4028437876866aba4747a655ede00f892089e14 the 'driver_data' field resides in device's struct device_private which may be allocated by dev_set_drvdata() if device_private struct was not allocated previously. dev_set_drvdata() is used in video_set_drvdata() to set the driver's private data pointer in v4l2 drivers. Setting the private data _before_ registering the v4l2 device results in a memory leak since __video_register_device() also calls video_set_drvdata(), but after zeroing the device structure. Thus, the reference to the previously allocated device_private struct goes lost and a new device_private will be allocated. All v4l drivers which call video_set_drvdata() _before_ calling video_register_device() are affected. The patch fixes __video_register_device() to preserve previously allocated device_private reference. Caught by kmemleak. Signed-off-by: Anatolij Gustschin <agust@denx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/v4l2-dev.c')
-rw-r--r--drivers/media/video/v4l2-dev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/v4l2-dev.c b/drivers/media/video/v4l2-dev.c
index 0ca7ec9ca902..9e89bf617790 100644
--- a/drivers/media/video/v4l2-dev.c
+++ b/drivers/media/video/v4l2-dev.c
@@ -410,7 +410,7 @@ static int __video_register_device(struct video_device *vdev, int type, int nr,
410 int minor_offset = 0; 410 int minor_offset = 0;
411 int minor_cnt = VIDEO_NUM_DEVICES; 411 int minor_cnt = VIDEO_NUM_DEVICES;
412 const char *name_base; 412 const char *name_base;
413 void *priv = video_get_drvdata(vdev); 413 void *priv = vdev->dev.p;
414 414
415 /* A minor value of -1 marks this video device as never 415 /* A minor value of -1 marks this video device as never
416 having been registered */ 416 having been registered */
@@ -536,9 +536,9 @@ static int __video_register_device(struct video_device *vdev, int type, int nr,
536 536
537 /* Part 4: register the device with sysfs */ 537 /* Part 4: register the device with sysfs */
538 memset(&vdev->dev, 0, sizeof(vdev->dev)); 538 memset(&vdev->dev, 0, sizeof(vdev->dev));
539 /* The memset above cleared the device's drvdata, so 539 /* The memset above cleared the device's device_private, so
540 put back the copy we made earlier. */ 540 put back the copy we made earlier. */
541 video_set_drvdata(vdev, priv); 541 vdev->dev.p = priv;
542 vdev->dev.class = &video_class; 542 vdev->dev.class = &video_class;
543 vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor); 543 vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
544 if (vdev->parent) 544 if (vdev->parent)