From: Shuah Khan <shuahkh@osg.samsung.com>
To: mchehab@osg.samsung.com, hans.verkuil@cisco.com,
sakari.ailus@linux.intel.com, prabhakar.csengg@gmail.com,
laurent.pinchart@ideasonboard.com
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] media: au0828 analog_register error path fixes to do proper cleanup
Date: Wed, 28 Jan 2015 16:54:04 -0700 [thread overview]
Message-ID: <54C9769C.1090502@osg.samsung.com> (raw)
In-Reply-To: <1419985334-6155-1-git-send-email-shuahkh@osg.samsung.com>
On 12/30/2014 05:22 PM, Shuah Khan wrote:
> au0828_analog_register() doesn't release video and vbi queues
> created by vb2_queue_init(). In addition, it doesn't unregister
> vdev when vbi register fails. Add vb2_queue_release() calls to
> release video and vbi queues to the failure path to be called
> when vdev register fails. Add video_unregister_device() for
> vdev when vbi register fails.
>
> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
> ---
> Please note that this patch is dependent on the au0828 vb2
> conversion patch.
I have to fold this patch into the vb2 conversion patch as
it no longer applies after the recent changes to address
comments on patch v3. I will fold it into vb2 convert patch v6.
It makes sense since vb2_queue_release() should be part of the
conversion work anyway.
thanks,
-- Shuah
>
> drivers/media/usb/au0828/au0828-video.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/usb/au0828/au0828-video.c b/drivers/media/usb/au0828/au0828-video.c
> index 94b65b8..17450eb 100644
> --- a/drivers/media/usb/au0828/au0828-video.c
> +++ b/drivers/media/usb/au0828/au0828-video.c
> @@ -1785,7 +1785,7 @@ int au0828_analog_register(struct au0828_dev *dev,
> dprintk(1, "unable to register video device (error = %d).\n",
> retval);
> ret = -ENODEV;
> - goto err_vbi_dev;
> + goto err_reg_vdev;
> }
>
> /* Register the vbi device */
> @@ -1795,14 +1795,18 @@ int au0828_analog_register(struct au0828_dev *dev,
> dprintk(1, "unable to register vbi device (error = %d).\n",
> retval);
> ret = -ENODEV;
> - goto err_vbi_dev;
> + goto err_reg_vbi_dev;
> }
>
> -
> dprintk(1, "%s completed!\n", __func__);
>
> return 0;
>
> +err_reg_vbi_dev:
> + video_unregister_device(dev->vdev);
> +err_reg_vdev:
> + vb2_queue_release(&dev->vb_vidq);
> + vb2_queue_release(&dev->vb_vbiq);
> err_vbi_dev:
> video_device_release(dev->vbi_dev);
> err_vdev:
>
--
Shuah Khan
Sr. Linux Kernel Developer
Open Source Innovation Group
Samsung Research America (Silicon Valley)
shuahkh@osg.samsung.com | (970) 217-8978
prev parent reply other threads:[~2015-01-29 1:49 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-31 0:22 [PATCH] media: au0828 analog_register error path fixes to do proper cleanup Shuah Khan
2015-01-28 23:54 ` Shuah Khan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54C9769C.1090502@osg.samsung.com \
--to=shuahkh@osg.samsung.com \
--cc=hans.verkuil@cisco.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@osg.samsung.com \
--cc=prabhakar.csengg@gmail.com \
--cc=sakari.ailus@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox