diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-10-22 11:32:30 +1100 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2012-11-10 21:53:04 -0600 |
commit | 509b7455ef87e1447670c51037cabbf93d772d6f (patch) | |
tree | 718e3272e16c80a722bfdb053c39052712289143 /drivers/of | |
parent | 2066306099d35430d01ed1b3d81c0536d77bf390 (diff) | |
download | op-kernel-dev-509b7455ef87e1447670c51037cabbf93d772d6f.zip op-kernel-dev-509b7455ef87e1447670c51037cabbf93d772d6f.tar.gz |
of/fdt: Don't copy garbage after "/" in root node path
The root node path must be internally converted to "/", or various
pieces of code looking for it that way will fail. The code to do
that however had a bug where we might incorrectly append pieces
of the original path from the fdt to the "/".
We should probably add a proper dedicated accessor for the root node
but in the meantime this patch should fix it.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/fdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c index 91a375f..c2b08dc 100644 --- a/drivers/of/fdt.c +++ b/drivers/of/fdt.c @@ -186,6 +186,7 @@ static unsigned long unflatten_dt_node(struct boot_param_header *blob, */ fpsize = 1; allocl = 2; + l = 0; } else { /* account for '/' and path size minus terminal 0 * already in 'l' |