public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: linux-media@vger.kernel.org
Subject: Re: [PATCH] v4l: Reset subdev v4l2_dev field to NULL if registration fails
Date: Tue, 27 Nov 2012 23:54:40 +0100	[thread overview]
Message-ID: <50B544B0.9000207@gmail.com> (raw)
In-Reply-To: <1353804080-25492-1-git-send-email-laurent.pinchart@ideasonboard.com>

Hi Laurent,

On 11/25/2012 01:41 AM, Laurent Pinchart wrote:
> When subdev registration fails the subdev v4l2_dev field is left to a
> non-NULL value. Later calls to v4l2_device_unregister_subdev() will
> consider the subdev as registered and will module_put() the subdev
> module without any matching module_get().
>
> Fix this by setting the subdev v4l2_dev field to NULL in
> v4l2_device_register_subdev() when the function fails.
>
> Signed-off-by: Laurent Pinchart<laurent.pinchart@ideasonboard.com>

Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com>

I'm just wondering whether including this patch in stable kernel releases
could potentially break anything.

> ---
>   drivers/media/v4l2-core/v4l2-device.c |   30 ++++++++++++++----------------
>   1 files changed, 14 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/media/v4l2-core/v4l2-device.c b/drivers/media/v4l2-core/v4l2-device.c
> index 513969f..98a7f5e 100644
> --- a/drivers/media/v4l2-core/v4l2-device.c
> +++ b/drivers/media/v4l2-core/v4l2-device.c
> @@ -159,31 +159,21 @@ int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev,
>   	sd->v4l2_dev = v4l2_dev;
>   	if (sd->internal_ops&&  sd->internal_ops->registered) {
>   		err = sd->internal_ops->registered(sd);
> -		if (err) {
> -			module_put(sd->owner);
> -			return err;
> -		}
> +		if (err)
> +			goto error_module;
>   	}
>
>   	/* This just returns 0 if either of the two args is NULL */
>   	err = v4l2_ctrl_add_handler(v4l2_dev->ctrl_handler, sd->ctrl_handler, NULL);
> -	if (err) {
> -		if (sd->internal_ops&&  sd->internal_ops->unregistered)
> -			sd->internal_ops->unregistered(sd);
> -		module_put(sd->owner);
> -		return err;
> -	}
> +	if (err)
> +		goto error_unregister;
>
>   #if defined(CONFIG_MEDIA_CONTROLLER)
>   	/* Register the entity. */
>   	if (v4l2_dev->mdev) {
>   		err = media_device_register_entity(v4l2_dev->mdev, entity);
> -		if (err<  0) {
> -			if (sd->internal_ops&&  sd->internal_ops->unregistered)
> -				sd->internal_ops->unregistered(sd);
> -			module_put(sd->owner);
> -			return err;
> -		}
> +		if (err<  0)
> +			goto error_unregister;
>   	}
>   #endif
>
> @@ -192,6 +182,14 @@ int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev,
>   	spin_unlock(&v4l2_dev->lock);
>
>   	return 0;
> +
> +error_unregister:
> +	if (sd->internal_ops&&  sd->internal_ops->unregistered)
> +		sd->internal_ops->unregistered(sd);
> +error_module:
> +	module_put(sd->owner);
> +	sd->v4l2_dev = NULL;
> +	return err;
>   }
>   EXPORT_SYMBOL_GPL(v4l2_device_register_subdev);


  reply	other threads:[~2012-11-27 22:54 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-25  0:41 [PATCH] v4l: Reset subdev v4l2_dev field to NULL if registration fails Laurent Pinchart
2012-11-27 22:54 ` Sylwester Nawrocki [this message]
2012-11-28 13:36   ` Laurent Pinchart

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=50B544B0.9000207@gmail.com \
    --to=sylvester.nawrocki@gmail.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    /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