]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mm-add-free_hot_cold_page_list-helper-v2
authorKonstantin Khlebnikov <khlebnikov@openvz.org>
Wed, 16 Nov 2011 23:41:21 +0000 (10:41 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 17 Nov 2011 02:57:07 +0000 (13:57 +1100)
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Minchan Kim <minchan.kim@gmail.com>
Cc: Hugh Dickins <hughd@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/page_alloc.c

index 36afd515023969d5bad494ee2842b2e1a5227ff4..5093114fc1649d020d7c8feeb79b82b00cd3184a 100644 (file)
@@ -1210,6 +1210,9 @@ out:
        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;
@@ -1218,8 +1221,6 @@ void free_hot_cold_page_list(struct list_head *list, int cold)
                trace_mm_pagevec_free(page, cold);
                free_hot_cold_page(page, cold);
        }
-
-       INIT_LIST_HEAD(list);
 }
 
 /*