Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 282991
b: refs/heads/master
c: cc59850
h: refs/heads/master
i:
  282989: f7163ab
  282987: 94e7631
  282983: 76b2d87
  282975: a844065
v: v3
  • Loading branch information
Konstantin Khlebnikov authored and Linus Torvalds committed Jan 11, 2012
1 parent 3860fdc commit 63956d6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 31 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c909e99364c8b6ca07864d752950b6b4ecf6bef4
refs/heads/master: cc59850ef940e4ee6a765d28b439b9bafe07cf63
1 change: 1 addition & 0 deletions trunk/include/linux/gfp.h
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ void *alloc_pages_exact_nid(int nid, size_t size, gfp_t gfp_mask);
extern void __free_pages(struct page *page, unsigned int order);
extern void free_pages(unsigned long addr, unsigned int order);
extern void free_hot_cold_page(struct page *page, int cold);
extern void free_hot_cold_page_list(struct list_head *list, int cold);

#define __free_page(page) __free_pages((page), 0)
#define free_page(addr) free_pages((addr), 0)
Expand Down
13 changes: 13 additions & 0 deletions trunk/mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1188,6 +1188,19 @@ void free_hot_cold_page(struct page *page, int cold)
local_irq_restore(flags);
}

/*
* Free a list of 0-order pages
*/
void free_hot_cold_page_list(struct list_head *list, int cold)
{
struct page *page, *next;

list_for_each_entry_safe(page, next, list, lru) {
trace_mm_pagevec_free(page, cold);
free_hot_cold_page(page, cold);
}
}

/*
* split_page takes a non-compound higher-order page, and splits it into
* n (1<<order) sub-pages: page[0..n]
Expand Down
14 changes: 3 additions & 11 deletions trunk/mm/swap.c
Original file line number Diff line number Diff line change
Expand Up @@ -585,11 +585,10 @@ int lru_add_drain_all(void)
void release_pages(struct page **pages, int nr, int cold)
{
int i;
struct pagevec pages_to_free;
LIST_HEAD(pages_to_free);
struct zone *zone = NULL;
unsigned long uninitialized_var(flags);

pagevec_init(&pages_to_free, cold);
for (i = 0; i < nr; i++) {
struct page *page = pages[i];

Expand Down Expand Up @@ -620,19 +619,12 @@ void release_pages(struct page **pages, int nr, int cold)
del_page_from_lru(zone, page);
}

if (!pagevec_add(&pages_to_free, page)) {
if (zone) {
spin_unlock_irqrestore(&zone->lru_lock, flags);
zone = NULL;
}
__pagevec_free(&pages_to_free);
pagevec_reinit(&pages_to_free);
}
list_add(&page->lru, &pages_to_free);
}
if (zone)
spin_unlock_irqrestore(&zone->lru_lock, flags);

pagevec_free(&pages_to_free);
free_hot_cold_page_list(&pages_to_free, cold);
}
EXPORT_SYMBOL(release_pages);

Expand Down
20 changes: 1 addition & 19 deletions trunk/mm/vmscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -734,24 +734,6 @@ static enum page_references page_check_references(struct page *page,
return PAGEREF_RECLAIM;
}

static noinline_for_stack void free_page_list(struct list_head *free_pages)
{
struct pagevec freed_pvec;
struct page *page, *tmp;

pagevec_init(&freed_pvec, 1);

list_for_each_entry_safe(page, tmp, free_pages, lru) {
list_del(&page->lru);
if (!pagevec_add(&freed_pvec, page)) {
__pagevec_free(&freed_pvec);
pagevec_reinit(&freed_pvec);
}
}

pagevec_free(&freed_pvec);
}

/*
* shrink_page_list() returns the number of reclaimed pages
*/
Expand Down Expand Up @@ -1015,7 +997,7 @@ static unsigned long shrink_page_list(struct list_head *page_list,
if (nr_dirty && nr_dirty == nr_congested && scanning_global_lru(sc))
zone_set_flag(zone, ZONE_CONGESTED);

free_page_list(&free_pages);
free_hot_cold_page_list(&free_pages, 1);

list_splice(&ret_pages, page_list);
count_vm_events(PGACTIVATE, pgactivate);
Expand Down

0 comments on commit 63956d6

Please sign in to comment.