From: Wen Congyang <wency@cn.fujitsu.com>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-acpi@vger.kernel.org, Jiang Liu <liuj97@gmail.com>,
Len Brown <len.brown@intel.com>,
Andrew Morton <akpm@linux-foundation.org>,
KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>,
rjw@sisk.pl, Lai Jiangshan <laijs@cn.fujitsu.com>
Subject: Re: [Patch v4 0/8] bugfix for memory hotplug
Date: Wed, 31 Oct 2012 19:32:09 +0800 [thread overview]
Message-ID: <50910C39.70305@cn.fujitsu.com> (raw)
In-Reply-To: <1351682594-17347-1-git-send-email-wency@cn.fujitsu.com>
At 10/31/2012 07:23 PM, Wen Congyang Wrote:
> The last version is here:
> https://lkml.org/lkml/2012/10/19/56
>
> Note: patch 1-3 are in -mm tree and I don't touch them. The other patches
> except patch6 are also in mm tree. Patch 6 is not touched.
>
> Changes from v3 to v4:
> Patch4: use dynamically allocated memory instead of static array.
> Patch5: merge [patchv3 2-3] into a single patch, and update it as we use
> dynamically allocated memory
> Patch7: merge [patchv3 5-6] into a single patch
> Patch8: merge [patchv3 9] and its fix into a patch
Note:
The patch from Michal Hocko <mhocko@suse.cz> is not merged into patch8
Thanks
Wen Congyang
>
> Changes from v2 to v3:
> Merge the bug fix from ishimatsu to this patchset(Patch 1-3)
> Patch 3: split it from patch as it fixes another bug.
> Patch 4: new patch, and fix bad-page state when hotadding a memory
> device after hotremoving it. I forgot to post this patch in v2.
> Patch 6: update it according to Dave Hansen's comment.
>
> Changes from v1 to v2:
> Patch 1: updated according to kosaki's suggestion
>
> Patch 2: new patch, and update mce_bad_pages when removing memory.
>
> Patch 4: new patch, and fix a NR_FREE_PAGES mismatch, and this bug
> cause oom in my test.
>
> Patch 5: new patch, and fix a new bug. When repeating to online/offline
> pages, the free pages will continue to decrease.
>
> Wen Congyang (6):
> memory-hotplug: auto offline page_cgroup when onlining memory block
> failed
> memory-hotplug: fix NR_FREE_PAGES mismatch
> numa: convert static memory to dynamically allocated memory for per
> node device
> clear the memory to store struct page
> memory-hotplug: current hwpoison doesn't support memory offline
> memory-hotplug: allocate zone's pcp before onlining pages
>
> Yasuaki Ishimatsu (2):
> memory hotplug: suppress "Device memoryX does not have a release()
> function" warning
> suppress "Device nodeX does not have a release() function" warning
>
> arch/powerpc/kernel/sysfs.c | 4 +--
> drivers/base/memory.c | 9 ++++++-
> drivers/base/node.c | 56 ++++++++++++++++++++++++++++++------------
> include/linux/node.h | 2 +-
> include/linux/page-isolation.h | 10 +++++---
> mm/hugetlb.c | 4 +--
> mm/memory-failure.c | 2 +-
> mm/memory_hotplug.c | 13 +++++++---
> mm/page_alloc.c | 37 +++++++++++++++++++++-------
> mm/page_cgroup.c | 3 +++
> mm/page_isolation.c | 27 ++++++++++++++------
> mm/sparse.c | 25 ++++++++++++++++++-
> 12 files changed, 144 insertions(+), 48 deletions(-)
>
--
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: Wen Congyang <wency@cn.fujitsu.com>
To: unlisted-recipients:; (no To-header on input)
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-acpi@vger.kernel.org, Jiang Liu <liuj97@gmail.com>,
Len Brown <len.brown@intel.com>,
Andrew Morton <akpm@linux-foundation.org>,
KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>,
rjw@sisk.pl, Lai Jiangshan <laijs@cn.fujitsu.com>
Subject: Re: [Patch v4 0/8] bugfix for memory hotplug
Date: Wed, 31 Oct 2012 19:32:09 +0800 [thread overview]
Message-ID: <50910C39.70305@cn.fujitsu.com> (raw)
In-Reply-To: <1351682594-17347-1-git-send-email-wency@cn.fujitsu.com>
At 10/31/2012 07:23 PM, Wen Congyang Wrote:
> The last version is here:
> https://lkml.org/lkml/2012/10/19/56
>
> Note: patch 1-3 are in -mm tree and I don't touch them. The other patches
> except patch6 are also in mm tree. Patch 6 is not touched.
>
> Changes from v3 to v4:
> Patch4: use dynamically allocated memory instead of static array.
> Patch5: merge [patchv3 2-3] into a single patch, and update it as we use
> dynamically allocated memory
> Patch7: merge [patchv3 5-6] into a single patch
> Patch8: merge [patchv3 9] and its fix into a patch
Note:
The patch from Michal Hocko <mhocko@suse.cz> is not merged into patch8
Thanks
Wen Congyang
>
> Changes from v2 to v3:
> Merge the bug fix from ishimatsu to this patchset(Patch 1-3)
> Patch 3: split it from patch as it fixes another bug.
> Patch 4: new patch, and fix bad-page state when hotadding a memory
> device after hotremoving it. I forgot to post this patch in v2.
> Patch 6: update it according to Dave Hansen's comment.
>
> Changes from v1 to v2:
> Patch 1: updated according to kosaki's suggestion
>
> Patch 2: new patch, and update mce_bad_pages when removing memory.
>
> Patch 4: new patch, and fix a NR_FREE_PAGES mismatch, and this bug
> cause oom in my test.
>
> Patch 5: new patch, and fix a new bug. When repeating to online/offline
> pages, the free pages will continue to decrease.
>
> Wen Congyang (6):
> memory-hotplug: auto offline page_cgroup when onlining memory block
> failed
> memory-hotplug: fix NR_FREE_PAGES mismatch
> numa: convert static memory to dynamically allocated memory for per
> node device
> clear the memory to store struct page
> memory-hotplug: current hwpoison doesn't support memory offline
> memory-hotplug: allocate zone's pcp before onlining pages
>
> Yasuaki Ishimatsu (2):
> memory hotplug: suppress "Device memoryX does not have a release()
> function" warning
> suppress "Device nodeX does not have a release() function" warning
>
> arch/powerpc/kernel/sysfs.c | 4 +--
> drivers/base/memory.c | 9 ++++++-
> drivers/base/node.c | 56 ++++++++++++++++++++++++++++++------------
> include/linux/node.h | 2 +-
> include/linux/page-isolation.h | 10 +++++---
> mm/hugetlb.c | 4 +--
> mm/memory-failure.c | 2 +-
> mm/memory_hotplug.c | 13 +++++++---
> mm/page_alloc.c | 37 +++++++++++++++++++++-------
> mm/page_cgroup.c | 3 +++
> mm/page_isolation.c | 27 ++++++++++++++------
> mm/sparse.c | 25 ++++++++++++++++++-
> 12 files changed, 144 insertions(+), 48 deletions(-)
>
next prev parent reply other threads:[~2012-10-31 11:32 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-31 11:23 [Patch v4 0/8] bugfix for memory hotplug Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 1/8] memory hotplug: suppress "Device memoryX does not have a release() function" warning Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 2/8] memory-hotplug: auto offline page_cgroup when onlining memory block failed Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 3/8] memory-hotplug: fix NR_FREE_PAGES mismatch Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 13:41 ` Jianguo Wu
2012-10-31 13:41 ` Jianguo Wu
2012-11-01 3:00 ` Wen Congyang
2012-11-01 3:00 ` Wen Congyang
2012-11-01 2:55 ` [PATCH] memory-hotplug: fix NR_FREE_PAGES mismatch's fix Wen Congyang
2012-11-01 2:55 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 4/8] numa: convert static memory to dynamically allocated memory for per node device Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 5/8] suppress "Device nodeX does not have a release() function" warning Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 6/8] clear the memory to store struct page Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 7/8] memory-hotplug: current hwpoison doesn't support memory offline Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:23 ` [Patch v4 8/8] memory-hotplug: allocate zone's pcp before onlining pages Wen Congyang
2012-10-31 11:23 ` Wen Congyang
2012-10-31 11:32 ` Wen Congyang [this message]
2012-10-31 11:32 ` [Patch v4 0/8] bugfix for memory hotplug Wen Congyang
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=50910C39.70305@cn.fujitsu.com \
--to=wency@cn.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=isimatu.yasuaki@jp.fujitsu.com \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=laijs@cn.fujitsu.com \
--cc=len.brown@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=liuj97@gmail.com \
--cc=rjw@sisk.pl \
/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.