From: Tang Chen <tangchen@cn.fujitsu.com>
To: Tejun Heo <tj@kernel.org>
Cc: cl@linux.com, jiang.liu@linux.intel.com,
mika.j.penttila@gmail.com, mingo@redhat.com,
akpm@linux-foundation.org, rjw@rjwysocki.net, hpa@zytor.com,
yasu.isimatu@gmail.com, isimatu.yasuaki@jp.fujitsu.com,
kamezawa.hiroyu@jp.fujitsu.com, izumi.taku@jp.fujitsu.com,
gongzhaogang@inspur.com, x86@kernel.org,
linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, tangchen@cn.fujitsu.com
Subject: Re: [PATCH 1/5] x86, memhp, numa: Online memory-less nodes at boot time.
Date: Wed, 13 Jan 2016 12:56:02 +0800 [thread overview]
Message-ID: <5695D8E2.6040908@cn.fujitsu.com> (raw)
In-Reply-To: <20160108182808.GZ1898@mtj.duckdns.org>
Hi tj,
On 01/09/2016 02:28 AM, Tejun Heo wrote:
> Hello,
>
> On Thu, Jan 07, 2016 at 12:20:21PM +0800, Tang Chen wrote:
>> +static void __init init_memory_less_node(int nid)
>> {
>> + unsigned long zones_size[MAX_NR_ZONES] = {0};
>> + unsigned long zholes_size[MAX_NR_ZONES] = {0};
> It doesn't cause any functional difference but it's a bit weird to use
> {0} because it explicitly says to initialize the first element to 0
> when the whole array needs to be cleared. Wouldnt { } make more sense?
Yes. Will fix them.
>
>> diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
>> index e23a9e7..9c4d4d5 100644
>> --- a/include/linux/mmzone.h
>> +++ b/include/linux/mmzone.h
>> @@ -736,6 +736,7 @@ static inline bool is_dev_zone(const struct zone *zone)
>>
>> extern struct mutex zonelists_mutex;
>> void build_all_zonelists(pg_data_t *pgdat, struct zone *zone);
>> +void build_zonelists(pg_data_t *pgdat);
> This isn't used in this patch. Contamination?
Sorry, I tried to build zone lists here. But it totally unnecessary and
led to some problems.
I forgot to remove them when I fixed the problems. Will remove them.
Thx.
>
> Thanks.
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
WARNING: multiple messages have this Message-ID (diff)
From: Tang Chen <tangchen@cn.fujitsu.com>
To: Tejun Heo <tj@kernel.org>
Cc: <cl@linux.com>, <jiang.liu@linux.intel.com>,
<mika.j.penttila@gmail.com>, <mingo@redhat.com>,
<akpm@linux-foundation.org>, <rjw@rjwysocki.net>, <hpa@zytor.com>,
<yasu.isimatu@gmail.com>, <isimatu.yasuaki@jp.fujitsu.com>,
<kamezawa.hiroyu@jp.fujitsu.com>, <izumi.taku@jp.fujitsu.com>,
<gongzhaogang@inspur.com>, <x86@kernel.org>,
<linux-acpi@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-mm@kvack.org>, <tangchen@cn.fujitsu.com>
Subject: Re: [PATCH 1/5] x86, memhp, numa: Online memory-less nodes at boot time.
Date: Wed, 13 Jan 2016 12:56:02 +0800 [thread overview]
Message-ID: <5695D8E2.6040908@cn.fujitsu.com> (raw)
In-Reply-To: <20160108182808.GZ1898@mtj.duckdns.org>
Hi tj,
On 01/09/2016 02:28 AM, Tejun Heo wrote:
> Hello,
>
> On Thu, Jan 07, 2016 at 12:20:21PM +0800, Tang Chen wrote:
>> +static void __init init_memory_less_node(int nid)
>> {
>> + unsigned long zones_size[MAX_NR_ZONES] = {0};
>> + unsigned long zholes_size[MAX_NR_ZONES] = {0};
> It doesn't cause any functional difference but it's a bit weird to use
> {0} because it explicitly says to initialize the first element to 0
> when the whole array needs to be cleared. Wouldnt { } make more sense?
Yes. Will fix them.
>
>> diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
>> index e23a9e7..9c4d4d5 100644
>> --- a/include/linux/mmzone.h
>> +++ b/include/linux/mmzone.h
>> @@ -736,6 +736,7 @@ static inline bool is_dev_zone(const struct zone *zone)
>>
>> extern struct mutex zonelists_mutex;
>> void build_all_zonelists(pg_data_t *pgdat, struct zone *zone);
>> +void build_zonelists(pg_data_t *pgdat);
> This isn't used in this patch. Contamination?
Sorry, I tried to build zone lists here. But it totally unnecessary and
led to some problems.
I forgot to remove them when I fixed the problems. Will remove them.
Thx.
>
> Thanks.
>
next prev parent reply other threads:[~2016-01-13 4:56 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-07 4:20 [PATCH v4 0/5] Make cpuid <-> nodeid mapping persistent Tang Chen
2016-01-07 4:20 ` Tang Chen
2016-01-07 4:20 ` [PATCH 1/5] x86, memhp, numa: Online memory-less nodes at boot time Tang Chen
2016-01-07 4:20 ` Tang Chen
2016-01-08 18:28 ` Tejun Heo
2016-01-08 18:28 ` Tejun Heo
2016-01-13 4:56 ` Tang Chen [this message]
2016-01-13 4:56 ` Tang Chen
2016-01-07 4:20 ` [PATCH 2/5] x86, acpi, cpu-hotplug: Enable acpi to register all possible cpus " Tang Chen
2016-01-07 4:20 ` Tang Chen
2016-01-07 4:20 ` [PATCH 3/5] x86, acpi, cpu-hotplug: Introduce cpuid_to_apicid[] array to store persistent cpuid <-> apicid mapping Tang Chen
2016-01-07 4:20 ` Tang Chen
2016-01-07 4:20 ` [PATCH 4/5] x86, acpi, cpu-hotplug: Enable MADT APIs to return disabled apicid Tang Chen
2016-01-07 4:20 ` Tang Chen
2016-01-07 4:20 ` [PATCH 5/5] x86, acpi, cpu-hotplug: Set persistent cpuid <-> nodeid mapping when booting Tang Chen
2016-01-07 4:20 ` Tang Chen
2016-01-08 19:13 ` Tejun Heo
2016-01-08 19:13 ` Tejun Heo
2016-01-13 4:56 ` Tang Chen
2016-01-13 4:56 ` Tang Chen
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=5695D8E2.6040908@cn.fujitsu.com \
--to=tangchen@cn.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=cl@linux.com \
--cc=gongzhaogang@inspur.com \
--cc=hpa@zytor.com \
--cc=isimatu.yasuaki@jp.fujitsu.com \
--cc=izumi.taku@jp.fujitsu.com \
--cc=jiang.liu@linux.intel.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mika.j.penttila@gmail.com \
--cc=mingo@redhat.com \
--cc=rjw@rjwysocki.net \
--cc=tj@kernel.org \
--cc=x86@kernel.org \
--cc=yasu.isimatu@gmail.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.