diff options
author | Li Hong <lihong.hi@gmail.com> | 2010-03-05 16:41:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-06 14:26:25 -0500 |
commit | fc91668eaf9e7ba61e867fc2218b7e9fb67faa4f (patch) | |
tree | 08d443d76255e8d60ae6ba07d52cdc295172ded8 /mm | |
parent | c475dab63ae798d81fb597a6a1859986b296d9d0 (diff) |
mm: remove free_hot_page()
free_hot_page() is just a wrapper around free_hot_cold_page() with
parameter 'cold = 0'. After adding a clear comment for
free_hot_cold_page(), it is reasonable to remove a level of call.
[akpm@linux-foundation.org: fix build]
Signed-off-by: Li Hong <lihong.hi@gmail.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Rik van Riel <riel@redhat.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Larry Woodman <lwoodman@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Li Ming Chun <macli@brc.ubc.ca>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Americo Wang <xiyou.wangcong@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/page_alloc.c | 10 | ||||
-rw-r--r-- | mm/swap.c | 2 |
2 files changed, 4 insertions, 8 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index caa7df60a4a1..80bcee0c5034 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -1074,8 +1074,9 @@ void mark_free_pages(struct zone *zone) | |||
1074 | 1074 | ||
1075 | /* | 1075 | /* |
1076 | * Free a 0-order page | 1076 | * Free a 0-order page |
1077 | * cold == 1 ? free a cold page : free a hot page | ||
1077 | */ | 1078 | */ |
1078 | static void free_hot_cold_page(struct page *page, int cold) | 1079 | void free_hot_cold_page(struct page *page, int cold) |
1079 | { | 1080 | { |
1080 | struct zone *zone = page_zone(page); | 1081 | struct zone *zone = page_zone(page); |
1081 | struct per_cpu_pages *pcp; | 1082 | struct per_cpu_pages *pcp; |
@@ -1135,11 +1136,6 @@ out: | |||
1135 | local_irq_restore(flags); | 1136 | local_irq_restore(flags); |
1136 | } | 1137 | } |
1137 | 1138 | ||
1138 | void free_hot_page(struct page *page) | ||
1139 | { | ||
1140 | free_hot_cold_page(page, 0); | ||
1141 | } | ||
1142 | |||
1143 | /* | 1139 | /* |
1144 | * split_page takes a non-compound higher-order page, and splits it into | 1140 | * split_page takes a non-compound higher-order page, and splits it into |
1145 | * n (1<<order) sub-pages: page[0..n] | 1141 | * n (1<<order) sub-pages: page[0..n] |
@@ -2010,7 +2006,7 @@ void __free_pages(struct page *page, unsigned int order) | |||
2010 | { | 2006 | { |
2011 | if (put_page_testzero(page)) { | 2007 | if (put_page_testzero(page)) { |
2012 | if (order == 0) | 2008 | if (order == 0) |
2013 | free_hot_page(page); | 2009 | free_hot_cold_page(page, 0); |
2014 | else | 2010 | else |
2015 | __free_pages_ok(page, order); | 2011 | __free_pages_ok(page, order); |
2016 | } | 2012 | } |
@@ -55,7 +55,7 @@ static void __page_cache_release(struct page *page) | |||
55 | del_page_from_lru(zone, page); | 55 | del_page_from_lru(zone, page); |
56 | spin_unlock_irqrestore(&zone->lru_lock, flags); | 56 | spin_unlock_irqrestore(&zone->lru_lock, flags); |
57 | } | 57 | } |
58 | free_hot_page(page); | 58 | free_hot_cold_page(page, 0); |
59 | } | 59 | } |
60 | 60 | ||
61 | static void put_compound_page(struct page *page) | 61 | static void put_compound_page(struct page *page) |