Commit e54192b4 authored by Rob Herring's avatar Rob Herring

of: fix phandle cache creation for DTs with no phandles

With commit 0b3ce78e ("of: cache phandle nodes to reduce cost of
of_find_node_by_phandle()"), a G3 PowerMac fails to boot. The root cause
is the DT for this system has no phandle properties when booted with
BootX. of_populate_phandle_cache() does not handle the case of no
phandles correctly. The problem is roundup_pow_of_two() for 0 is
undefined. The implementation subtracts 1 underflowing and then things
are in the weeds.

Fixes: 0b3ce78e ("of: cache phandle nodes to reduce cost of of_find_node_by_phandle()")
Cc: stable@vger.kernel.org # 4.17+
Reported-by: default avatarFinn Thain <fthain@telegraphics.com.au>
Tested-by: default avatarStan Johnson <userm57@yahoo.com>
Reviewed-by: default avatarFrank Rowand <frank.rowand@sony.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 0413beda
...@@ -140,6 +140,9 @@ void of_populate_phandle_cache(void) ...@@ -140,6 +140,9 @@ void of_populate_phandle_cache(void)
if (np->phandle && np->phandle != OF_PHANDLE_ILLEGAL) if (np->phandle && np->phandle != OF_PHANDLE_ILLEGAL)
phandles++; phandles++;
if (!phandles)
goto out;
cache_entries = roundup_pow_of_two(phandles); cache_entries = roundup_pow_of_two(phandles);
phandle_cache_mask = cache_entries - 1; phandle_cache_mask = cache_entries - 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment