]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[POWERPC] Make sure device node type/name is not NULL on hot-added nodes
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 16 May 2007 06:57:24 +0000 (16:57 +1000)
committerPaul Mackerras <paulus@samba.org>
Thu, 17 May 2007 11:11:15 +0000 (21:11 +1000)
Our device-tree unflattening code makes sure the name and type fields
of a device-node are not NULL. However, the code for dynamically
adding devices nodes which is used for pSeries hotplug for example
didn't do it, potentially causing crashes in some code that assume it
can always do things like strcmp on those.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kernel/prom.c

index c065b555036881b138b3c70ba378bb6392a07db7..066a6a7a25b88c2bb41017459c938287b4db521f 100644 (file)
@@ -1472,6 +1472,11 @@ static int of_finish_dynamic_node(struct device_node *node)
        node->name = of_get_property(node, "name", NULL);
        node->type = of_get_property(node, "device_type", NULL);
 
+       if (!node->name)
+               node->name = "<NULL>";
+       if (!node->type)
+               node->type = "<NULL>";
+
        if (!parent) {
                err = -ENODEV;
                goto out;