diff options
author | Mel Gorman <mgorman@suse.de> | 2012-11-12 04:06:20 -0500 |
---|---|---|
committer | Mel Gorman <mgorman@suse.de> | 2012-12-11 09:42:52 -0500 |
commit | 57e0a0309160b1b4ebde9f3c6a867cd96ac368bf (patch) | |
tree | 085278ae65303221b638bf4d5063be0d41d35098 /mm/page_alloc.c | |
parent | fb003b80daa0dead5b87f4e2e4fb8da68b110ff2 (diff) |
mm: numa: Introduce last_nid to the page frame
This patch introduces a last_nid field to the page struct. This is used
to build a two-stage filter in the next patch that is aimed at
mitigating a problem whereby pages migrate to the wrong node when
referenced by a process that was running off its home node.
Signed-off-by: Mel Gorman <mgorman@suse.de>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index ef025e20dbe..73f226a1206 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -608,6 +608,7 @@ static inline int free_pages_check(struct page *page) | |||
608 | bad_page(page); | 608 | bad_page(page); |
609 | return 1; | 609 | return 1; |
610 | } | 610 | } |
611 | reset_page_last_nid(page); | ||
611 | if (page->flags & PAGE_FLAGS_CHECK_AT_PREP) | 612 | if (page->flags & PAGE_FLAGS_CHECK_AT_PREP) |
612 | page->flags &= ~PAGE_FLAGS_CHECK_AT_PREP; | 613 | page->flags &= ~PAGE_FLAGS_CHECK_AT_PREP; |
613 | return 0; | 614 | return 0; |
@@ -3826,6 +3827,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone, | |||
3826 | mminit_verify_page_links(page, zone, nid, pfn); | 3827 | mminit_verify_page_links(page, zone, nid, pfn); |
3827 | init_page_count(page); | 3828 | init_page_count(page); |
3828 | reset_page_mapcount(page); | 3829 | reset_page_mapcount(page); |
3830 | reset_page_last_nid(page); | ||
3829 | SetPageReserved(page); | 3831 | SetPageReserved(page); |
3830 | /* | 3832 | /* |
3831 | * Mark the block movable so that blocks are reserved for | 3833 | * Mark the block movable so that blocks are reserved for |