The patch titled
Subject: mm/balloon_compaction: isolate balloon pages without lru_lock
has been added to the -mm tree. Its filename is
mm-balloon_compaction-isolate-balloon-pages-without-lru_lock.patch
This patch should soon appear at
http://ozlabs.org/~akpm/mmots/broken-out/mm-balloon_compaction-isolate-balloon-pages-without-lru_lock.patch
and later at
http://ozlabs.org/~akpm/mmotm/broken-out/mm-balloon_compaction-isolate-balloon-pages-without-lru_lock.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/SubmitChecklist when testing your code ***
The -mm tree is included into linux-next and is updated
there every 3-4 working days
------------------------------------------------------
From: Konstantin Khlebnikov <[email protected]>
Subject: mm/balloon_compaction: isolate balloon pages without lru_lock
LRU-lock isn't required for balloon page isolation. This check makes
migration of some ballooned pages mostly impossible because
isolate_migratepages_range() drops LRU lock periodically.
Signed-off-by: Konstantin Khlebnikov <[email protected]>
Acked-by: Rafael Aquini <[email protected]>
Cc: Andrey Ryabinin <[email protected]>
Cc: <[email protected]> [v3.8+]
Signed-off-by: Andrew Morton <[email protected]>
---
mm/compaction.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN
mm/compaction.c~mm-balloon_compaction-isolate-balloon-pages-without-lru_lock
mm/compaction.c
---
a/mm/compaction.c~mm-balloon_compaction-isolate-balloon-pages-without-lru_lock
+++ a/mm/compaction.c
@@ -643,7 +643,7 @@ isolate_migratepages_block(struct compac
*/
if (!PageLRU(page)) {
if (unlikely(balloon_page_movable(page))) {
- if (locked && balloon_page_isolate(page)) {
+ if (balloon_page_isolate(page)) {
/* Successfully isolated */
goto isolate_success;
}
_
Patches currently in -mm which might be from [email protected] are
mm-balloon_compaction-ignore-anonymous-pages.patch
mm-balloon_compaction-keep-ballooned-pages-away-from-normal-migration-path.patch
mm-balloon_compaction-isolate-balloon-pages-without-lru_lock.patch
mm-introduce-common-page-state-for-ballooned-memory.patch
mm-balloon_compaction-use-common-page-ballooning.patch
mm-balloon_compaction-general-cleanup.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html