of: to support binding numa node to specified device in devicetree
authorZhen Lei <thunder.leizhen@huawei.com>
Tue, 25 Aug 2015 04:08:22 +0000 (12:08 +0800)
committerRob Herring <robh@kernel.org>
Thu, 17 Sep 2015 19:51:55 +0000 (14:51 -0500)
For now, in function device_add, the new device will be forced to
inherit the numa node of its parent. But this will override the device's
numa node which configured in devicetree.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/base/core.c
drivers/of/device.c

index 334ec7ef1960cf46b69a27315a1dbcccbf39dd8b..b7d56c5ea3c688fe03c7b5edda4f62c0906a9fc7 100644 (file)
@@ -1066,7 +1066,7 @@ int device_add(struct device *dev)
                dev->kobj.parent = kobj;
 
        /* use parent numa_node */
-       if (parent)
+       if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
                set_dev_node(dev, dev_to_node(parent));
 
        /* first, register with generic layer. */
index 8b91ea241b10f553f058885b5cc083a35e2a81fe..e5f47cec75f34e046b15efbc5bcdc50073eff5c0 100644 (file)
@@ -60,11 +60,12 @@ int of_device_add(struct platform_device *ofdev)
        ofdev->name = dev_name(&ofdev->dev);
        ofdev->id = -1;
 
-       /* device_add will assume that this device is on the same node as
-        * the parent. If there is no parent defined, set the node
-        * explicitly */
-       if (!ofdev->dev.parent)
-               set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node));
+       /*
+        * If this device has not binding numa node in devicetree, that is
+        * of_node_to_nid returns NUMA_NO_NODE. device_add will assume that this
+        * device is on the same node as the parent.
+        */
+       set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node));
 
        return device_add(&ofdev->dev);
 }