* [PATCH resend] mm: drain percpu lru add/rotate page-vectors on cpu hot-unplug
@ 2012-02-28 19:40 Konstantin Khlebnikov
2012-02-29 0:37 ` KAMEZAWA Hiroyuki
2012-02-29 20:38 ` Andrew Morton
0 siblings, 2 replies; 4+ messages in thread
From: Konstantin Khlebnikov @ 2012-02-28 19:40 UTC (permalink / raw)
To: linux-mm, Andrew Morton, linux-kernel, KAMEZAWA Hiroyuki,
Johannes Weiner
Cc: KOSAKI Motohiro
This cpu hotplug hook was accidentally removed in commit v2.6.30-rc4-18-g00a62ce
("mm: fix Committed_AS underflow on large NR_CPUS environment")
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
---
include/linux/swap.h | 1 +
mm/page_alloc.c | 1 +
mm/swap.c | 4 ++--
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/include/linux/swap.h b/include/linux/swap.h
index f7df3ea..ba2c8d7 100644
--- a/include/linux/swap.h
+++ b/include/linux/swap.h
@@ -229,6 +229,7 @@ extern void lru_add_page_tail(struct zone* zone,
extern void activate_page(struct page *);
extern void mark_page_accessed(struct page *);
extern void lru_add_drain(void);
+extern void lru_add_drain_cpu(int cpu);
extern int lru_add_drain_all(void);
extern void rotate_reclaimable_page(struct page *page);
extern void deactivate_page(struct page *page);
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 864d1b7..2b7f07b 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4874,6 +4874,7 @@ static int page_alloc_cpu_notify(struct notifier_block *self,
int cpu = (unsigned long)hcpu;
if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
+ lru_add_drain_cpu(cpu);
drain_pages(cpu);
/*
diff --git a/mm/swap.c b/mm/swap.c
index fff1ff7..38b2686 100644
--- a/mm/swap.c
+++ b/mm/swap.c
@@ -496,7 +496,7 @@ static void lru_deactivate_fn(struct page *page, void *arg)
* Either "cpu" is the current CPU, and preemption has already been
* disabled; or "cpu" is being hot-unplugged, and is already dead.
*/
-static void drain_cpu_pagevecs(int cpu)
+void lru_add_drain_cpu(int cpu)
{
struct pagevec *pvecs = per_cpu(lru_add_pvecs, cpu);
struct pagevec *pvec;
@@ -553,7 +553,7 @@ void deactivate_page(struct page *page)
void lru_add_drain(void)
{
- drain_cpu_pagevecs(get_cpu());
+ lru_add_drain_cpu(get_cpu());
put_cpu();
}
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH resend] mm: drain percpu lru add/rotate page-vectors on cpu hot-unplug
2012-02-28 19:40 [PATCH resend] mm: drain percpu lru add/rotate page-vectors on cpu hot-unplug Konstantin Khlebnikov
@ 2012-02-29 0:37 ` KAMEZAWA Hiroyuki
2012-02-29 20:38 ` Andrew Morton
1 sibling, 0 replies; 4+ messages in thread
From: KAMEZAWA Hiroyuki @ 2012-02-29 0:37 UTC (permalink / raw)
To: Konstantin Khlebnikov
Cc: linux-mm, Andrew Morton, linux-kernel, Johannes Weiner,
KOSAKI Motohiro
On Tue, 28 Feb 2012 23:40:45 +0400
Konstantin Khlebnikov <khlebnikov@openvz.org> wrote:
> This cpu hotplug hook was accidentally removed in commit v2.6.30-rc4-18-g00a62ce
> ("mm: fix Committed_AS underflow on large NR_CPUS environment")
>
> Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH resend] mm: drain percpu lru add/rotate page-vectors on cpu hot-unplug
2012-02-28 19:40 [PATCH resend] mm: drain percpu lru add/rotate page-vectors on cpu hot-unplug Konstantin Khlebnikov
2012-02-29 0:37 ` KAMEZAWA Hiroyuki
@ 2012-02-29 20:38 ` Andrew Morton
2012-03-01 8:06 ` Konstantin Khlebnikov
1 sibling, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2012-02-29 20:38 UTC (permalink / raw)
To: Konstantin Khlebnikov
Cc: linux-mm, linux-kernel, KAMEZAWA Hiroyuki, Johannes Weiner,
KOSAKI Motohiro
On Tue, 28 Feb 2012 23:40:45 +0400
Konstantin Khlebnikov <khlebnikov@openvz.org> wrote:
> This cpu hotplug hook was accidentally removed in commit v2.6.30-rc4-18-g00a62ce
> ("mm: fix Committed_AS underflow on large NR_CPUS environment")
That was a long time ago - maybe we should leave it removed ;) I mean,
did this bug(?) have any visible effect? If so, what was that effect?
IOW, the changelog didn't give anyone any reason to apply the patch to
anything!
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH resend] mm: drain percpu lru add/rotate page-vectors on cpu hot-unplug
2012-02-29 20:38 ` Andrew Morton
@ 2012-03-01 8:06 ` Konstantin Khlebnikov
0 siblings, 0 replies; 4+ messages in thread
From: Konstantin Khlebnikov @ 2012-03-01 8:06 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
KAMEZAWA Hiroyuki, Johannes Weiner, KOSAKI Motohiro
Andrew Morton wrote:
> On Tue, 28 Feb 2012 23:40:45 +0400
> Konstantin Khlebnikov<khlebnikov@openvz.org> wrote:
>
>> This cpu hotplug hook was accidentally removed in commit v2.6.30-rc4-18-g00a62ce
>> ("mm: fix Committed_AS underflow on large NR_CPUS environment")
>
> That was a long time ago - maybe we should leave it removed ;) I mean,
> did this bug(?) have any visible effect? If so, what was that effect?
It's because cpu hotplug/unplug isn't widely used feature.
Visible effect -- some pages are borrowed in per-cpu page-vectors.
Truncate can deal with it, but these pages cannot be reused while this cpu is offline.
So this is like temporary memory leak.
>
> IOW, the changelog didn't give anyone any reason to apply the patch to
> anything!
Sorry, I'm just stuck in pile of patches. It seems I should stop and send them one by one.
This one isn't critical, so there no reasons for pushing it into stable branches.
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-03-01 8:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-28 19:40 [PATCH resend] mm: drain percpu lru add/rotate page-vectors on cpu hot-unplug Konstantin Khlebnikov
2012-02-29 0:37 ` KAMEZAWA Hiroyuki
2012-02-29 20:38 ` Andrew Morton
2012-03-01 8:06 ` Konstantin Khlebnikov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).