From: Russell King <rmk+lkml@arm.linux.org.uk>
To: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: Greg K-H <greg@kroah.com>, linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [2/9] driver core fixes: device_register() retval check in platform.c
Date: Sat, 23 Sep 2006 22:10:32 +0100 [thread overview]
Message-ID: <20060923211032.GA4363@flint.arm.linux.org.uk> (raw)
In-Reply-To: <20060922113655.4306a1b5@gondolin.boeblingen.de.ibm.com>
On Fri, Sep 22, 2006 at 11:36:55AM +0200, Cornelia Huck wrote:
> From: Cornelia Huck <cornelia.huck@de.ibm.com>
>
> Check the return value of device_register() in platform_bus_init().
>
> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
>
> ---
> drivers/base/platform.c | 11 +++++++++--
> 1 file changed, 9 insertions(+), 2 deletions(-)
>
> --- linux-2.6-CH.orig/drivers/base/platform.c
> +++ linux-2.6-CH/drivers/base/platform.c
> @@ -563,8 +563,15 @@ EXPORT_SYMBOL_GPL(platform_bus_type);
>
> int __init platform_bus_init(void)
> {
> - device_register(&platform_bus);
> - return bus_register(&platform_bus_type);
> + int error;
> +
> + error = device_register(&platform_bus);
> + if (error)
> + return error;
> + error = bus_register(&platform_bus_type);
> + if (error)
> + device_unregister(&platform_bus);
> + return error;
I don't think there's much value in patches such as this - if the
platform bus type didn't register, what happens when we then try
to register a platform device driver or a platform device? ISTR
doing that before the bus type is registered leads to an OOPS.
So, presumably to do this properly, if the platform_bus_type failed
to register, you need to force all platform device/platform device
driver registrations to also fail.
At that point, is the added complexity really worth it?
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 Serial core
next prev parent reply other threads:[~2006-09-23 21:10 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-22 9:36 Cornelia Huck
2006-09-23 21:10 ` Russell King [this message]
2006-09-25 14:58 ` Cornelia Huck
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=20060923211032.GA4363@flint.arm.linux.org.uk \
--to=rmk+lkml@arm.linux.org.uk \
--cc=cornelia.huck@de.ibm.com \
--cc=greg@kroah.com \
--cc=linux-kernel@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
all inboxes | Powered by JetHome®