From: Martyn Welch <martyn.welch@ge.com>
To: "Emilio G. Cota" <cota@braap.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Manohar Vanga <manohar.vanga@gmail.com>,
devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] vme: add missing put_device() after device_register() fails
Date: Mon, 25 Feb 2013 15:35:04 +0000 [thread overview]
Message-ID: <512B84A8.9040700@ge.com> (raw)
In-Reply-To: <1360781274-14405-1-git-send-email-cota@braap.org>
On 13/02/13 18:47, Emilio G. Cota wrote:
> From: "Emilio G. Cota" <cota@braap.org>
>
> put_device() must be called after device_register() fails,
> since device_register() always initializes the refcount
> on the device structure.
>
> Signed-off-by: Emilio G. Cota <cota@braap.org>
> ---
> drivers/vme/vme.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/vme/vme.c b/drivers/vme/vme.c
> index 95a9f71..5e6c7d7 100644
> --- a/drivers/vme/vme.c
> +++ b/drivers/vme/vme.c
> @@ -1366,26 +1366,27 @@ static int __vme_register_driver_bus(struct vme_driver *drv,
> err = device_register(&vdev->dev);
> if (err)
> goto err_reg;
>
> if (vdev->dev.platform_data) {
> list_add_tail(&vdev->drv_list, &drv->devices);
> list_add_tail(&vdev->bridge_list, &bridge->devices);
> } else
> device_unregister(&vdev->dev);
> }
> return 0;
>
> err_reg:
> + put_device(&vdev->dev);
> kfree(vdev);
> err_devalloc:
> list_for_each_entry_safe(vdev, tmp, &drv->devices, drv_list) {
> list_del(&vdev->drv_list);
> list_del(&vdev->bridge_list);
> device_unregister(&vdev->dev);
> }
> return err;
> }
Acked-by: Martyn Welch <martyn.welch@ge.com>
(Sorry it took me so long to respond)
>
> static int __vme_register_driver(struct vme_driver *drv, unsigned int ndevs)
> {
> struct vme_bridge *bridge;
>
--
Martyn Welch (Lead Software Engineer) | Registered in England and Wales
GE Intelligent Platforms | (3828642) at 100 Barbirolli Square
T +44(0)1327322748 | Manchester, M2 3AB
E martyn.welch@ge.com | VAT:GB 927559189
prev parent reply other threads:[~2013-02-25 15:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-13 18:47 [PATCH] vme: add missing put_device() after device_register() fails Emilio G. Cota
2013-02-25 15:35 ` Martyn Welch [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=512B84A8.9040700@ge.com \
--to=martyn.welch@ge.com \
--cc=cota@braap.org \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=manohar.vanga@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.