[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1472712907-12700-15-git-send-email-thunder.leizhen@huawei.com>
Date: Thu, 1 Sep 2016 14:55:05 +0800
From: Zhen Lei <thunder.leizhen@...wei.com>
To: Catalin Marinas <catalin.marinas@....com>,
Will Deacon <will.deacon@....com>,
linux-arm-kernel <linux-arm-kernel@...ts.infradead.org>,
linux-kernel <linux-kernel@...r.kernel.org>,
Rob Herring <robh+dt@...nel.org>,
"Frank Rowand" <frowand.list@...il.com>,
devicetree <devicetree@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-mm <linux-mm@...ck.org>
CC: Zefan Li <lizefan@...wei.com>, Xinwei Hu <huxinwei@...wei.com>,
"Tianhong Ding" <dingtianhong@...wei.com>,
Hanjun Guo <guohanjun@...wei.com>,
Zhen Lei <thunder.leizhen@...wei.com>
Subject: [PATCH v8 14/16] of/numa: remove the constraint on the distances of node pairs
At present, the distances must equal in both direction for each node
pairs. For example: the distance of node B->A must the same to A->B.
But we really don't have to do this.
End up fill default distances as below:
1. If both direction specified, keep no change.
2. If only one direction specified, assign it to the other direction.
3. If none of the two direction specified, both are assigned to
REMOTE_DISTANCE.
Signed-off-by: Zhen Lei <thunder.leizhen@...wei.com>
Acked-by: Rob Herring <robh@...nel.org>
---
drivers/of/of_numa.c | 22 +++++++++++++++++-----
1 file changed, 17 insertions(+), 5 deletions(-)
diff --git a/drivers/of/of_numa.c b/drivers/of/of_numa.c
index f63d4b0d..1840045 100644
--- a/drivers/of/of_numa.c
+++ b/drivers/of/of_numa.c
@@ -127,15 +127,25 @@ static int __init of_numa_parse_distance_map_v1(struct device_node *map)
numa_set_distance(nodea, nodeb, distance);
pr_debug("distance[node%d -> node%d] = %d\n",
nodea, nodeb, distance);
-
- /* Set default distance of node B->A same as A->B */
- if (nodeb > nodea)
- numa_set_distance(nodeb, nodea, distance);
}
return 0;
}
+static void __init fill_default_distances(void)
+{
+ int i, j;
+
+ for (i = 0; i < nr_node_ids; i++)
+ for (j = 0; j < nr_node_ids; j++)
+ if (i == j)
+ numa_set_distance(i, j, LOCAL_DISTANCE);
+ else if (!node_distance(i, j))
+ numa_set_distance(i, j,
+ node_distance(j, i) ? : REMOTE_DISTANCE);
+
+}
+
static int __init of_numa_parse_distance_map(void)
{
int ret = 0;
@@ -145,8 +155,10 @@ static int __init of_numa_parse_distance_map(void)
"numa-distance-map-v1");
if (np)
ret = of_numa_parse_distance_map_v1(np);
-
of_node_put(np);
+
+ fill_default_distances();
+
return ret;
}
--
2.5.0
Powered by blists - more mailing lists