From: Mike Rapoport <rppt@linux.ibm.com>
To: "liwei (CM)" <liwei213@huawei.com>
Cc: "Song Bao Hua \(Barry Song\)" <song.bao.hua@hisilicon.com>,
"Xiaqing \(A\)" <saberlily.xia@hisilicon.com>,
"steve.capper@arm.com" <steve.capper@arm.com>,
"catalin.marinas@arm.com" <catalin.marinas@arm.com>,
"Yaobaofeng \(Yaobaofeng\)" <yaobaofeng@huawei.com>,
sujunfei <sujunfei2@hisilicon.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
fengbaopeng <fengbaopeng2@hisilicon.com>,
"will@kernel.org" <will@kernel.org>,
"nsaenzjulienne@suse.de" <nsaenzjulienne@suse.de>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: 答复: [PATCH] arm64: mm: free unused memmap for sparse memory model that define VMEMMAP
Date: Tue, 21 Jul 2020 09:35:24 +0300 [thread overview]
Message-ID: <20200721063524.GC802087@linux.ibm.com> (raw)
In-Reply-To: <1699CE87DE933F49876AD744B5DC140F2312A02B@dggemm526-mbx.china.huawei.com>
Hi,
On Tue, Jul 21, 2020 at 01:56:33AM +0000, liwei (CM) wrote:
> Hi, all
>
> I'm sorry to bother you, but still very hope you can give comments or suggestions to this patch, thank you very much.
I cannot find your patch neither in Inbox nor in the public archives.
Can you resend it please?
> -----邮件原件-----
> 发件人: Song Bao Hua (Barry Song)
> 发送时间: 2020年7月9日 20:27
> 收件人: liwei (CM) <liwei213@huawei.com>; catalin.marinas@arm.com; will@kernel.org
> 抄送: fengbaopeng <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de; steve.capper@arm.com; rppt@linux.ibm.com; linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org; sujunfei <sujunfei2@hisilicon.com>; Xiaqing (A) <saberlily.xia@hisilicon.com>; Yaobaofeng (Yaobaofeng) <yaobaofeng@huawei.com>
> 主题: RE: [PATCH] arm64: mm: free unused memmap for sparse memory model that define VMEMMAP
>
>
>
> > -----Original Message-----
> > From: liwei (CM)
> > Sent: Wednesday, July 8, 2020 7:52 PM
> > To: Song Bao Hua (Barry Song) <song.bao.hua@hisilicon.com>;
> > catalin.marinas@arm.com; will@kernel.org
> > Cc: fengbaopeng <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de;
> > steve.capper@arm.com; rppt@linux.ibm.com;
> > linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > sujunfei <sujunfei2@hisilicon.com>; Xiaqing (A)
> > <saberlily.xia@hisilicon.com>; Yaobaofeng (Yaobaofeng)
> > <yaobaofeng@huawei.com>
> > Subject: 答复: [PATCH] arm64: mm: free unused memmap for sparse memory
> > model that define VMEMMAP
> >
> > Hi, baohua
> >
> > Thank you for your attention.
> >
> > In my understanding of the MEMORY_HOTPLUG this patch has no effect on it.
> > The reason is that in sparse_add_one_section() the memory that memmap
> > needs from Slab if kernel start completed,this memory has nothing to
> > do with memblock alloc/ free memory in the process of kernel start.
> >
> > You may have a look vmemmap_alloc_block () this function.
> >
> > If I don't understand right welcome pointed out in a timely manner.
>
> At the first glance of this patch, I suspect that this bootmem may be used by hot-added memory.
> If you confirm this won't happen, please ignore my noise.
>
> BTW, next time, bear in mind that top-post is not a good way to reply mail :-)
>
> >
> > Thanks!
> >
> >
> > -----邮件原件-----
> > 发件人: Song Bao Hua (Barry Song)
> > 发送时间: 2020年7月8日 15:19
> > 收件人: liwei (CM) <liwei213@huawei.com>; catalin.marinas@arm.com;
> > will@kernel.org
> > 抄送: fengbaopeng <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de;
> > steve.capper@arm.com; rppt@linux.ibm.com;
> > linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > sujunfei <sujunfei2@hisilicon.com>
> > 主题: RE: [PATCH] arm64: mm: free unused memmap for sparse memory model
> > that define VMEMMAP
> >
> >
> >
> > > -----Original Message-----
> > > From: liwei (CM)
> > > Sent: Wednesday, July 8, 2020 1:56 PM
> > > To: catalin.marinas@arm.com; will@kernel.org
> > > Cc: liwei (CM) <liwei213@huawei.com>; fengbaopeng
> > > <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de;
> > > steve.capper@arm.com; rppt@linux.ibm.com; Song Bao Hua (Barry Song)
> > > <song.bao.hua@hisilicon.com>; linux-arm-kernel@lists.infradead.org;
> > > linux-kernel@vger.kernel.org; sujunfei <sujunfei2@hisilicon.com>
> > > Subject: [PATCH] arm64: mm: free unused memmap for sparse memory
> > model
> > > that define VMEMMAP
> > >
> > > For the memory hole, sparse memory model that define
> > SPARSEMEM_VMEMMAP
> > > do not free the reserved memory for the page map, this patch do it.
> >
> > Hello Wei,
> > Just curious if this patch breaks MEMORY_HOTPLUG?
> >
> > >
> > > Signed-off-by: Wei Li <liwei213@huawei.com>
> > > Signed-off-by: Chen Feng <puck.chen@hisilicon.com>
> > > Signed-off-by: Xia Qing <saberlily.xia@hisilicon.com>
> > > ---
> > > arch/arm64/mm/init.c | 81
> > > +++++++++++++++++++++++++++++++++++++++++++++-------
> > > 1 file changed, 71 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c index
> > > 1e93cfc7c47a..d1b56b47d5ba 100644
> > > --- a/arch/arm64/mm/init.c
> > > +++ b/arch/arm64/mm/init.c
> > > @@ -441,7 +441,48 @@ void __init bootmem_init(void)
> > > memblock_dump_all();
> > > }
> > >
> >
> > Thanks
> > Barry
>
--
Sincerely yours,
Mike.
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Mike Rapoport <rppt@linux.ibm.com>
To: "liwei (CM)" <liwei213@huawei.com>
Cc: "Song Bao Hua (Barry Song)" <song.bao.hua@hisilicon.com>,
"catalin.marinas@arm.com" <catalin.marinas@arm.com>,
"will@kernel.org" <will@kernel.org>,
fengbaopeng <fengbaopeng2@hisilicon.com>,
"nsaenzjulienne@suse.de" <nsaenzjulienne@suse.de>,
"steve.capper@arm.com" <steve.capper@arm.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
sujunfei <sujunfei2@hisilicon.com>,
"Xiaqing (A)" <saberlily.xia@hisilicon.com>,
"Yaobaofeng (Yaobaofeng)" <yaobaofeng@huawei.com>
Subject: Re: 答复: [PATCH] arm64: mm: free unused memmap for sparse memory model that define VMEMMAP
Date: Tue, 21 Jul 2020 09:35:24 +0300 [thread overview]
Message-ID: <20200721063524.GC802087@linux.ibm.com> (raw)
In-Reply-To: <1699CE87DE933F49876AD744B5DC140F2312A02B@dggemm526-mbx.china.huawei.com>
Hi,
On Tue, Jul 21, 2020 at 01:56:33AM +0000, liwei (CM) wrote:
> Hi, all
>
> I'm sorry to bother you, but still very hope you can give comments or suggestions to this patch, thank you very much.
I cannot find your patch neither in Inbox nor in the public archives.
Can you resend it please?
> -----邮件原件-----
> 发件人: Song Bao Hua (Barry Song)
> 发送时间: 2020年7月9日 20:27
> 收件人: liwei (CM) <liwei213@huawei.com>; catalin.marinas@arm.com; will@kernel.org
> 抄送: fengbaopeng <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de; steve.capper@arm.com; rppt@linux.ibm.com; linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org; sujunfei <sujunfei2@hisilicon.com>; Xiaqing (A) <saberlily.xia@hisilicon.com>; Yaobaofeng (Yaobaofeng) <yaobaofeng@huawei.com>
> 主题: RE: [PATCH] arm64: mm: free unused memmap for sparse memory model that define VMEMMAP
>
>
>
> > -----Original Message-----
> > From: liwei (CM)
> > Sent: Wednesday, July 8, 2020 7:52 PM
> > To: Song Bao Hua (Barry Song) <song.bao.hua@hisilicon.com>;
> > catalin.marinas@arm.com; will@kernel.org
> > Cc: fengbaopeng <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de;
> > steve.capper@arm.com; rppt@linux.ibm.com;
> > linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > sujunfei <sujunfei2@hisilicon.com>; Xiaqing (A)
> > <saberlily.xia@hisilicon.com>; Yaobaofeng (Yaobaofeng)
> > <yaobaofeng@huawei.com>
> > Subject: 答复: [PATCH] arm64: mm: free unused memmap for sparse memory
> > model that define VMEMMAP
> >
> > Hi, baohua
> >
> > Thank you for your attention.
> >
> > In my understanding of the MEMORY_HOTPLUG this patch has no effect on it.
> > The reason is that in sparse_add_one_section() the memory that memmap
> > needs from Slab if kernel start completed,this memory has nothing to
> > do with memblock alloc/ free memory in the process of kernel start.
> >
> > You may have a look vmemmap_alloc_block () this function.
> >
> > If I don't understand right welcome pointed out in a timely manner.
>
> At the first glance of this patch, I suspect that this bootmem may be used by hot-added memory.
> If you confirm this won't happen, please ignore my noise.
>
> BTW, next time, bear in mind that top-post is not a good way to reply mail :-)
>
> >
> > Thanks!
> >
> >
> > -----邮件原件-----
> > 发件人: Song Bao Hua (Barry Song)
> > 发送时间: 2020年7月8日 15:19
> > 收件人: liwei (CM) <liwei213@huawei.com>; catalin.marinas@arm.com;
> > will@kernel.org
> > 抄送: fengbaopeng <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de;
> > steve.capper@arm.com; rppt@linux.ibm.com;
> > linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > sujunfei <sujunfei2@hisilicon.com>
> > 主题: RE: [PATCH] arm64: mm: free unused memmap for sparse memory model
> > that define VMEMMAP
> >
> >
> >
> > > -----Original Message-----
> > > From: liwei (CM)
> > > Sent: Wednesday, July 8, 2020 1:56 PM
> > > To: catalin.marinas@arm.com; will@kernel.org
> > > Cc: liwei (CM) <liwei213@huawei.com>; fengbaopeng
> > > <fengbaopeng2@hisilicon.com>; nsaenzjulienne@suse.de;
> > > steve.capper@arm.com; rppt@linux.ibm.com; Song Bao Hua (Barry Song)
> > > <song.bao.hua@hisilicon.com>; linux-arm-kernel@lists.infradead.org;
> > > linux-kernel@vger.kernel.org; sujunfei <sujunfei2@hisilicon.com>
> > > Subject: [PATCH] arm64: mm: free unused memmap for sparse memory
> > model
> > > that define VMEMMAP
> > >
> > > For the memory hole, sparse memory model that define
> > SPARSEMEM_VMEMMAP
> > > do not free the reserved memory for the page map, this patch do it.
> >
> > Hello Wei,
> > Just curious if this patch breaks MEMORY_HOTPLUG?
> >
> > >
> > > Signed-off-by: Wei Li <liwei213@huawei.com>
> > > Signed-off-by: Chen Feng <puck.chen@hisilicon.com>
> > > Signed-off-by: Xia Qing <saberlily.xia@hisilicon.com>
> > > ---
> > > arch/arm64/mm/init.c | 81
> > > +++++++++++++++++++++++++++++++++++++++++++++-------
> > > 1 file changed, 71 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c index
> > > 1e93cfc7c47a..d1b56b47d5ba 100644
> > > --- a/arch/arm64/mm/init.c
> > > +++ b/arch/arm64/mm/init.c
> > > @@ -441,7 +441,48 @@ void __init bootmem_init(void)
> > > memblock_dump_all();
> > > }
> > >
> >
> > Thanks
> > Barry
>
--
Sincerely yours,
Mike.
next prev parent reply other threads:[~2020-07-21 6:37 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20200708015555.14946-1-liwei213@huawei.com>
2020-07-08 7:18 ` [PATCH] arm64: mm: free unused memmap for sparse memory model that define VMEMMAP Song Bao Hua (Barry Song)
2020-07-08 7:18 ` Song Bao Hua (Barry Song)
2020-07-08 7:51 ` 答复: " liwei (CM)
2020-07-08 7:51 ` liwei (CM)
2020-07-09 12:27 ` Song Bao Hua (Barry Song)
2020-07-09 12:27 ` Song Bao Hua (Barry Song)
2020-07-21 1:56 ` 答复: " liwei (CM)
2020-07-21 1:56 ` liwei (CM)
2020-07-21 6:35 ` Mike Rapoport [this message]
2020-07-21 6:35 ` Mike Rapoport
2020-07-21 12:27 ` 答复: " liwei (CM)
2020-07-21 12:27 ` liwei (CM)
2020-07-21 7:32 Wei Li
2020-07-22 6:07 ` Mike Rapoport
2020-07-22 8:41 ` 答复: " liwei (CM)
2020-07-22 8:41 ` liwei (CM)
2020-07-22 12:49 ` Catalin Marinas
2020-07-22 12:49 ` Catalin Marinas
2020-07-23 2:33 ` Anshuman Khandual
2020-07-23 3:28 ` 答复: " liwei (CM)
2020-07-23 3:28 ` liwei (CM)
-- strict thread matches above, loose matches on Subject: below --
2020-07-21 16:29 kernel test robot
2020-07-22 1:58 ` 答复: " liwei
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200721063524.GC802087@linux.ibm.com \
--to=rppt@linux.ibm.com \
--cc=catalin.marinas@arm.com \
--cc=fengbaopeng2@hisilicon.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=liwei213@huawei.com \
--cc=nsaenzjulienne@suse.de \
--cc=saberlily.xia@hisilicon.com \
--cc=song.bao.hua@hisilicon.com \
--cc=steve.capper@arm.com \
--cc=sujunfei2@hisilicon.com \
--cc=will@kernel.org \
--cc=yaobaofeng@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.