From: Frank Rowand <frowand.list@gmail.com>
To: Christoph Hellwig <hch@lst.de>, gregkh@linuxfoundation.org
Cc: mark.rutland@arm.com, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
"Wesley W. Terpstra" <wesley@sifive.com>
Subject: Re: [PATCH] base: fix order of OF initialization
Date: Thu, 21 Jun 2018 18:05:49 -0700 [thread overview]
Message-ID: <ed030f7c-ba4d-e20a-352e-aaad45cda792@gmail.com> (raw)
In-Reply-To: <20180621133737.14397-1-hch@lst.de>
On 06/21/18 06:37, Christoph Hellwig wrote:
> From: "Wesley W. Terpstra" <wesley@sifive.com>
>
> This fixes: [ 0.010000] cpu cpu0: Error -2 creating of_node link
> ... which you get for every CPU on all architectures that use
> CONFIG_GENERIC_CPU_DEVICES.
>
> In that case, driver_init() calls cpu_dev_init() before calling
> of_core_init(). Then we get the callchain:
>
> cpu_dev_init()
> -> cpu_dev_register_generic()
> -> register_cpu(cpu, i)
> -> device_register(&cpu->dev)
> -> device_add(dev)
> -> device_add_class_symlinks(dev)
>
> ... in device_add_class_symlinks, we we dev->of_node, and call
> sysfs_create_link(), which fails because we haven't called
> of_core_init() to register the sysfs devicetree directory yet.
>
> Signed-off-by: Wesley W. Terpstra <wesley@sifive.com>
> [hch: updated the changelog based on review feedback]
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> Acked-by: Mark Rutland <mark.rutland@arm.com>
> Acked-by: Frank Rowand <frowand.list@gmail.com>
> ---
>
> In case anyone is wondering why I send out this patch - I'm digging
> through the RISC-V tree and trying to the patches required to let
> a RISC-V kernel boot on qemu upstream. I also got the previously
> missing signoff from Wes offlist.
>
> drivers/base/init.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/base/init.c b/drivers/base/init.c
> index dd85b05a6a16..908e6520e804 100644
> --- a/drivers/base/init.c
> +++ b/drivers/base/init.c
> @@ -30,9 +30,9 @@ void __init driver_init(void)
> /* These are also core pieces, but must come after the
> * core core pieces.
> */
> + of_core_init();
> platform_bus_init();
> cpu_dev_init();
> memory_dev_init();
> container_dev_init();
> - of_core_init();
> }
>
The updated patch comment looks good. It would be good to get this into
-next while we are still early in the release cycle.
For those trying to find the previous version of this patch, it was cced
to the devicetree list on 06/07/17.
-Frank
prev parent reply other threads:[~2018-06-22 1:05 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-21 13:37 [PATCH] base: fix order of OF initialization Christoph Hellwig
2018-06-22 1:05 ` Frank Rowand [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=ed030f7c-ba4d-e20a-352e-aaad45cda792@gmail.com \
--to=frowand.list@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=hch@lst.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=wesley@sifive.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;
as well as URLs for NNTP newsgroup(s).