* [PATCH 0/3] Fix compaction about mlocked pages
@ 2011-08-29 16:43 Minchan Kim
0 siblings, 0 replies; 4+ messages in thread
From: Minchan Kim @ 2011-08-29 16:43 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-mm, LKML, Mel Gorman, Johannes Weiner, Rik van Riel,
Minchan Kim
This patch's goal is to enable mlocked page migration.
The compaction can migrate mlocked page to get a contiguous memory unlike lumpy.
During making this patch, I found my silly bug which
[1/3] which fixes it.
[2/3] enables compaction of mlocked.
[3/3] enhance the accouting of compaction.
Frankly speaking, each patch is orthogonal but I send it by thread as I found them during
making patch on mlocked page compaction.
Minchan Kim (3):
Correct isolate_mode_t bitwise type
compaction: compact unevictable page
compaction accouting fix
include/linux/mmzone.h | 10 ++++++----
mm/compaction.c | 13 +++++++++----
mm/vmscan.c | 7 +------
3 files changed, 16 insertions(+), 14 deletions(-)
--
1.7.6
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/3] Fix compaction about mlocked pages
2011-11-12 16:37 Minchan Kim
@ 2011-10-06 21:54 ` Andrew Morton
2011-10-06 23:07 ` Minchan Kim
0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2011-10-06 21:54 UTC (permalink / raw)
To: Minchan Kim; +Cc: linux-mm, LKML, Mel Gorman, Johannes Weiner, Rik van Riel
On Sun, 13 Nov 2011 01:37:40 +0900
Minchan Kim <minchan.kim@gmail.com> wrote:
> This patch's goal is to enable mlocked page migration.
> The compaction can migrate mlocked page to get a contiguous memory unlike lumpy.
>
This patch series appears to be a resend of stuff I already have.
Given the various concerns which were voiced during review of
mm-compaction-compact-unevictable-pages.patch and the uncertainty of
the overall usefulness of the feature, I'm inclined to drop
mm-compaction-compact-unevictable-pages.patch
mm-compaction-compact-unevictable-pages-checkpatch-fixes.patch
mm-compaction-accounting-fix.patch
for now, OK?
--
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 0/3] Fix compaction about mlocked pages
2011-10-06 21:54 ` Andrew Morton
@ 2011-10-06 23:07 ` Minchan Kim
0 siblings, 0 replies; 4+ messages in thread
From: Minchan Kim @ 2011-10-06 23:07 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-mm, LKML, Mel Gorman, Johannes Weiner, Rik van Riel
Hi Andrew,
On Fri, Oct 7, 2011 at 6:54 AM, Andrew Morton <akpm@linux-foundation.org> wrote:
> On Sun, 13 Nov 2011 01:37:40 +0900
> Minchan Kim <minchan.kim@gmail.com> wrote:
>
>> This patch's goal is to enable mlocked page migration.
>> The compaction can migrate mlocked page to get a contiguous memory unlike lumpy.
>>
>
> This patch series appears to be a resend of stuff I already have.
>
> Given the various concerns which were voiced during review of
> mm-compaction-compact-unevictable-pages.patch and the uncertainty of
> the overall usefulness of the feature, I'm inclined to drop
>
> mm-compaction-compact-unevictable-pages.patch
> mm-compaction-compact-unevictable-pages-checkpatch-fixes.patch
> mm-compaction-accounting-fix.patch
>
> for now, OK?
>
It's okay on mm-compaction-compact-unevictable-pages.patch.
On mm-compaction-accounting-fix.patch, we still need it but I need to
change title as Mel commented out and I will send further patche which
changes stat names(https://lkml.org/lkml/2011/9/2/3) with it. So let's
drop it all.
I will resend further patches after rc-1.
Thanks, Andrew.
--
Kind regards,
Minchan Kim
--
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
* [PATCH 0/3] Fix compaction about mlocked pages
@ 2011-11-12 16:37 Minchan Kim
2011-10-06 21:54 ` Andrew Morton
0 siblings, 1 reply; 4+ messages in thread
From: Minchan Kim @ 2011-11-12 16:37 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-mm, LKML, Mel Gorman, Johannes Weiner, Rik van Riel,
Minchan Kim
This patch's goal is to enable mlocked page migration.
The compaction can migrate mlocked page to get a contiguous memory unlike lumpy.
During making this patch, I found my silly bug which
[1/3] which fixes it.
[2/3] enables compaction of mlocked.
[3/3] enhance the accouting of compaction.
Frankly speaking, each patch is orthogonal but I send it by thread as I found them during
making patch on mlocked page compaction.
Minchan Kim (3):
Correct isolate_mode_t bitwise type
compaction: compact unevictable page
compaction accouting fix
include/linux/mmzone.h | 10 ++++++----
mm/compaction.c | 13 +++++++++----
mm/vmscan.c | 7 +------
3 files changed, 16 insertions(+), 14 deletions(-)
--
1.7.6
--
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:[~2011-10-06 23:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-29 16:43 [PATCH 0/3] Fix compaction about mlocked pages Minchan Kim
-- strict thread matches above, loose matches on Subject: below --
2011-11-12 16:37 Minchan Kim
2011-10-06 21:54 ` Andrew Morton
2011-10-06 23:07 ` Minchan Kim
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).