From: Andrew Morton <akpm@linux-foundation.org>
To: Shaohua Li <shaohua.li@intel.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>,
Minchan Kim <minchan.kim@gmail.com>,
linux-mm <linux-mm@kvack.org>,
Johannes Weiner <jweiner@redhat.com>
Subject: Re: [patch v2 4/4]thp: improve order in lru list for split huge page
Date: Tue, 22 Nov 2011 15:40:23 -0800 [thread overview]
Message-ID: <20111122154023.bf631f7e.akpm@linux-foundation.org> (raw)
In-Reply-To: <1321340661.22361.297.camel@sli10-conroe>
On Tue, 15 Nov 2011 15:04:21 +0800
Shaohua Li <shaohua.li@intel.com> wrote:
> Put the tail subpages of an isolated hugepage under splitting in the
> lru reclaim head as they supposedly should be isolated too next.
>
> Queues the subpages in physical order in the lru for non isolated
> hugepages under splitting. That might provide some theoretical cache
> benefit to the buddy allocator later.
>
> ...
>
> --- linux.orig/mm/swap.c 2011-11-14 16:12:03.000000000 +0800
> +++ linux/mm/swap.c 2011-11-15 09:15:33.000000000 +0800
> @@ -684,7 +684,7 @@ void lru_add_page_tail(struct zone* zone
> if (likely(PageLRU(page)))
> head = page->lru.prev;
> else
> - head = &zone->lru[lru].list;
> + head = zone->lru[lru].list.prev;
> __add_page_to_lru_list(zone, page_tail, lru, head);
> } else {
> SetPageUnevictable(page_tail);
This conflicts with changes in Johannes's "mm: collect LRU list heads
into struct lruvec":
@@ -674,10 +673,10 @@ void lru_add_page_tail(struct zone* zone
}
update_page_reclaim_stat(zone, page_tail, file, active);
if (likely(PageLRU(page)))
- head = page->lru.prev;
+ __add_page_to_lru_list(zone, page_tail, lru,
+ page->lru.prev);
else
- head = &zone->lru[lru].list;
- __add_page_to_lru_list(zone, page_tail, lru, head);
+ add_page_to_lru_list(zone, page_tail, lru);
} else {
SetPageUnevictable(page_tail);
add_page_to_lru_list(zone, page_tail, LRU_UNEVICTABLE);
--
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>
next prev parent reply other threads:[~2011-11-22 23:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-15 7:04 [patch v2 4/4]thp: improve order in lru list for split huge page Shaohua Li
2011-11-15 18:19 ` Andrea Arcangeli
2011-11-16 1:19 ` Shaohua Li
2011-11-22 23:40 ` Andrew Morton [this message]
2011-11-23 3:24 ` Shaohua Li
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=20111122154023.bf631f7e.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=aarcange@redhat.com \
--cc=jweiner@redhat.com \
--cc=linux-mm@kvack.org \
--cc=minchan.kim@gmail.com \
--cc=shaohua.li@intel.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.