Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 344807
b: refs/heads/master
c: 57e0a03
h: refs/heads/master
i:
  344805: 59a1963
  344803: c474950
  344799: 21898f0
v: v3
  • Loading branch information
Mel Gorman committed Dec 11, 2012
1 parent 5b1592c commit b3bdddc
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fb003b80daa0dead5b87f4e2e4fb8da68b110ff2
refs/heads/master: 57e0a0309160b1b4ebde9f3c6a867cd96ac368bf
30 changes: 30 additions & 0 deletions trunk/include/linux/mm.h
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,36 @@ static inline int page_to_nid(const struct page *page)
}
#endif

#ifdef CONFIG_NUMA_BALANCING
static inline int page_xchg_last_nid(struct page *page, int nid)
{
return xchg(&page->_last_nid, nid);
}

static inline int page_last_nid(struct page *page)
{
return page->_last_nid;
}
static inline void reset_page_last_nid(struct page *page)
{
page->_last_nid = -1;
}
#else
static inline int page_xchg_last_nid(struct page *page, int nid)
{
return page_to_nid(page);
}

static inline int page_last_nid(struct page *page)
{
return page_to_nid(page);
}

static inline void reset_page_last_nid(struct page *page)
{
}
#endif

static inline struct zone *page_zone(const struct page *page)
{
return &NODE_DATA(page_to_nid(page))->node_zones[page_zonenum(page)];
Expand Down
4 changes: 4 additions & 0 deletions trunk/include/linux/mm_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ struct page {
*/
void *shadow;
#endif

#ifdef CONFIG_NUMA_BALANCING
int _last_nid;
#endif
}
/*
* The struct page can be forced to be double word aligned so that atomic ops
Expand Down
2 changes: 2 additions & 0 deletions trunk/mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,7 @@ static inline int free_pages_check(struct page *page)
bad_page(page);
return 1;
}
reset_page_last_nid(page);
if (page->flags & PAGE_FLAGS_CHECK_AT_PREP)
page->flags &= ~PAGE_FLAGS_CHECK_AT_PREP;
return 0;
Expand Down Expand Up @@ -3826,6 +3827,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
mminit_verify_page_links(page, zone, nid, pfn);
init_page_count(page);
reset_page_mapcount(page);
reset_page_last_nid(page);
SetPageReserved(page);
/*
* Mark the block movable so that blocks are reserved for
Expand Down

0 comments on commit b3bdddc

Please sign in to comment.