[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200603084025.62740-3-song.bao.hua@hisilicon.com>
Date: Wed, 3 Jun 2020 20:40:25 +1200
From: Barry Song <song.bao.hua@...ilicon.com>
To: <akpm@...ux-foundation.org>, <mike.kravetz@...cle.com>
CC: <guro@...com>, <linux-mm@...ck.org>,
<linux-kernel@...r.kernel.org>, <linuxarm@...wei.com>,
Barry Song <song.bao.hua@...ilicon.com>
Subject: [PATCH 2/2] mm: hugetlb: fix the name of hugetlb CMA
once we enable CMA_DEBUGFS, we will get the below errors:
directory 'cma-hugetlb' with parent 'cma' already present
only the first numa node will get a directory in debugfs.
we should have different names for different CMA areas.
Cc: Roman Gushchin <guro@...com>
Signed-off-by: Barry Song <song.bao.hua@...ilicon.com>
---
mm/hugetlb.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index bcabbe02192b..4ebc4edc3b40 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -5586,12 +5586,14 @@ void __init hugetlb_cma_reserve(int order)
reserved = 0;
for_each_node_state(nid, N_ONLINE) {
int res;
+ char name[20];
size = min(per_node, hugetlb_cma_size - reserved);
size = round_up(size, PAGE_SIZE << order);
+ snprintf(name, 20, "hugetlb%d", nid);
res = cma_declare_contiguous_nid(0, size, 0, PAGE_SIZE << order,
- 0, false, "hugetlb",
+ 0, false, name,
&hugetlb_cma[nid], nid);
if (res) {
pr_warn("hugetlb_cma: reservation failed: err %d, node %d",
--
2.23.0
Powered by blists - more mailing lists