[PATCH] vm - swap prefetch-9

From: Con Kolivas
Date: Tue Sep 20 2005 - 09:08:15 EST


Here is an updated swap prefetching patch, also available here:
http://ck.kolivas.org/patches/swap-prefetch/

Changes to this version:
-Apply a 5% limit to the amount of ram used to store the swapped list.
-Stop prefetching if more than 2/3 of the ram is filled with mapped pages to
allow some breathing room for the page cache
-Optimise for cheaper locking
-Implement a very light weight page allocation function that calls
buffered_rmqueue directly since we don't want page reclaim to occur, and
don't need to aggressively try and find a free page.

Cheers,
Con
This patch implements swap prefetching when the vm is relatively idle and
there is free ram available. The code is based on some early work by Thomas
Schlichter.

This stores a list of swapped entries in a list ordered most recently used
and a radix tree. It generates a low priority kernel thread running at nice 19
to do the prefetching at a later stage.

Once pages have been added to the swapped list, a timer is started, testing
for conditions suitable to prefetch swap pages every 5 seconds. Suitable
conditions are defined as lack of swapping out or in any pages, and no
watermark tests failing. Significant amounts of dirtied ram also prevent
prefetching. It then checks that we have spare ram looking for at
least 3* pages_high free per zone and if it succeeds that will prefetch
pages from swap. The pages are prefetched in 128kb groups every 1 second until
the vm is busy for the tests above, the watermarks fail to detect adequate
free ram or the list is emptied. The pages are copied to swap cache and kept
on backing store. This allows pressure on either physical ram or swap to
readily find free pages without further I/O.

In testing on modern pc hardware this results in wall-clock time activation of
the firefox browser to speed up 5 fold after a worst case complete swap-out
of the browser on an static web page.

Signed-off-by: Con Kolivas <kernel@xxxxxxxxxxx>

include/linux/fs.h | 2
include/linux/swap.h | 32 ++++
init/Kconfig | 21 ++
mm/Makefile | 1
mm/page_alloc.c | 14 +
mm/swap.c | 3
mm/swap_prefetch.c | 383 +++++++++++++++++++++++++++++++++++++++++++++++++++
mm/swap_state.c | 12 +
mm/vmscan.c | 5
9 files changed, 468 insertions(+), 5 deletions(-)

Index: linux-2.6.13-sp/include/linux/fs.h
===================================================================
--- linux-2.6.13-sp.orig/include/linux/fs.h 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/include/linux/fs.h 2005-09-18 13:35:02.000000000 +1000
@@ -340,6 +340,8 @@ struct address_space {
struct inode *host; /* owner: inode, block_device */
struct radix_tree_root page_tree; /* radix tree of all pages */
rwlock_t tree_lock; /* and rwlock protecting it */
+ struct radix_tree_root swap_tree; /* radix tree of swapped pages */
+ struct list_head swapped_pages; /* list of swapped pages */
unsigned int i_mmap_writable;/* count VM_SHARED mappings */
struct prio_tree_root i_mmap; /* tree of private and shared mappings */
struct list_head i_mmap_nonlinear;/*list VM_NONLINEAR mappings */
Index: linux-2.6.13-sp/include/linux/swap.h
===================================================================
--- linux-2.6.13-sp.orig/include/linux/swap.h 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/include/linux/swap.h 2005-09-20 23:53:23.000000000 +1000
@@ -185,6 +185,37 @@ extern int shmem_unuse(swp_entry_t entry

extern void swap_unplug_io_fn(struct backing_dev_info *, struct page *);

+#ifdef CONFIG_SWAP_PREFETCH
+/* only used by prefetch externally */
+/* mm/swap_prefetch.c */
+extern void prepare_prefetch(void);
+extern void add_to_swapped_list(unsigned long index);
+extern void remove_from_swapped_list(unsigned long index);
+extern void delay_prefetch(void);
+/* linux/mm/page_alloc.c */
+extern struct page *
+buffered_rmqueue(struct zone *zone, int order, unsigned int __nocast gfp_flags);
+extern void zone_statistics(struct zonelist *zonelist, struct zone *z);
+
+#else /* CONFIG_SWAP_PREFETCH */
+static inline void add_to_swapped_list(unsigned long index)
+{
+}
+
+static inline void prepare_prefetch(void)
+{
+}
+
+static inline void remove_from_swapped_list(unsigned long index)
+{
+}
+
+static inline void delay_prefetch(void)
+{
+}
+
+#endif /* CONFIG_SWAP_PREFETCH */
+
#ifdef CONFIG_SWAP
/* linux/mm/page_io.c */
extern int swap_readpage(struct file *, struct page *);
@@ -206,6 +237,7 @@ extern void free_pages_and_swap_cache(st
extern struct page * lookup_swap_cache(swp_entry_t);
extern struct page * read_swap_cache_async(swp_entry_t, struct vm_area_struct *vma,
unsigned long addr);
+extern int add_to_swap_cache(struct page *page, swp_entry_t entry);
/* linux/mm/swapfile.c */
extern long total_swap_pages;
extern unsigned int nr_swapfiles;
Index: linux-2.6.13-sp/init/Kconfig
===================================================================
--- linux-2.6.13-sp.orig/init/Kconfig 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/init/Kconfig 2005-09-18 13:35:02.000000000 +1000
@@ -87,6 +87,27 @@ config SWAP
used to provide more virtual memory than the actual RAM present
in your computer. If unsure say Y.

+config SWAP_PREFETCH
+ bool "Support for prefetching swapped memory"
+ depends on SWAP && EXPERIMENTAL
+ default n
+ ---help---
+ This option will allow the kernel to prefetch swapped memory pages
+ when idle. The pages will be kept on both swap and in swap_cache
+ thus avoiding the need for further I/O if either ram or swap space
+ is required.
+
+ What this will do on workstations is slowly bring back applications
+ that have swapped out after memory intensive workloads back into
+ physical ram if you have free ram at a later stage and the machine
+ is relatively idle. This means that when you come back to your
+ computer after leaving it idle for a while, applications will come
+ to life faster. Note that your swap usage will appear to increase
+ but these are cached pages, can be dropped freely by the vm, and it
+ should stabilise around 50% swap usage.
+
+ Desktop users will most likely want to say Y.
+
config SYSVIPC
bool "System V IPC"
depends on MMU
Index: linux-2.6.13-sp/mm/Makefile
===================================================================
--- linux-2.6.13-sp.orig/mm/Makefile 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/mm/Makefile 2005-09-18 13:35:02.000000000 +1000
@@ -13,6 +13,7 @@ obj-y := bootmem.o filemap.o mempool.o
prio_tree.o $(mmu-y)

obj-$(CONFIG_SWAP) += page_io.o swap_state.o swapfile.o thrash.o
+obj-$(CONFIG_SWAP_PREFETCH) += swap_prefetch.o
obj-$(CONFIG_HUGETLBFS) += hugetlb.o
obj-$(CONFIG_NUMA) += mempolicy.o
obj-$(CONFIG_SPARSEMEM) += sparse.o
Index: linux-2.6.13-sp/mm/page_alloc.c
===================================================================
--- linux-2.6.13-sp.orig/mm/page_alloc.c 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/mm/page_alloc.c 2005-09-20 23:53:23.000000000 +1000
@@ -607,7 +607,7 @@ void drain_local_pages(void)
}
#endif /* CONFIG_PM */

-static void zone_statistics(struct zonelist *zonelist, struct zone *z)
+void zone_statistics(struct zonelist *zonelist, struct zone *z)
{
#ifdef CONFIG_NUMA
unsigned long flags;
@@ -684,7 +684,7 @@ static inline void prep_zero_page(struct
* we cheat by calling it from here, in the order > 0 path. Saves a branch
* or two.
*/
-static struct page *
+struct page *
buffered_rmqueue(struct zone *zone, int order, unsigned int __nocast gfp_flags)
{
unsigned long flags;
@@ -745,7 +745,7 @@ int zone_watermark_ok(struct zone *z, in
min -= min / 4;

if (free_pages <= min + z->lowmem_reserve[classzone_idx])
- return 0;
+ goto out_failed;
for (o = 0; o < order; o++) {
/* At the next order, this order's pages become unavailable */
free_pages -= z->free_area[o].nr_free << o;
@@ -754,9 +754,15 @@ int zone_watermark_ok(struct zone *z, in
min >>= 1;

if (free_pages <= min)
- return 0;
+ goto out_failed;
}
+
return 1;
+out_failed:
+ /* Swap prefetching is delayed if any watermark is low */
+ delay_prefetch();
+
+ return 0;
}

static inline int
Index: linux-2.6.13-sp/mm/swap.c
===================================================================
--- linux-2.6.13-sp.orig/mm/swap.c 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/mm/swap.c 2005-09-18 13:35:02.000000000 +1000
@@ -481,5 +481,8 @@ void __init swap_setup(void)
* Right now other parts of the system means that we
* _really_ don't want to cluster much more
*/
+
+ prepare_prefetch();
+
hotcpu_notifier(cpu_swap_callback, 0);
}
Index: linux-2.6.13-sp/mm/swap_prefetch.c
===================================================================
--- linux-2.6.13-sp.orig/mm/swap_prefetch.c 2005-09-20 23:38:19.536071856 +1000
+++ linux-2.6.13-sp/mm/swap_prefetch.c 2005-09-20 23:53:23.000000000 +1000
@@ -0,0 +1,383 @@
+/*
+ * linux/mm/swap_prefetch.c
+ *
+ * Copyright (C) 2005 Con Kolivas
+ *
+ * Written by Con Kolivas <kernel@xxxxxxxxxxx>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <linux/swap.h>
+#include <linux/fs.h>
+#include <linux/pagemap.h>
+
+/* Time to delay prefetching if vm is busy or prefetching unsuccessful */
+#define PREFETCH_DELAY (HZ * 5)
+/* Time between attempting prefetching when vm is idle */
+#define PREFETCH_INTERVAL (HZ)
+
+struct swapped_root_t {
+ spinlock_t lock;
+ unsigned int count;
+ unsigned int maxcount;
+ kmem_cache_t *cache;
+ struct list_head list;
+ int busy;
+ spinlock_t busylock;
+};
+
+struct swapped_entry_t {
+ swp_entry_t swp_entry;
+ struct list_head swapped_list;
+};
+
+static struct swapped_root_t swapped_root = {
+ .count = 0,
+ .list = LIST_HEAD_INIT(swapped_root.list),
+};
+
+static struct timer_list prefetch_timer;
+
+static DECLARE_WAIT_QUEUE_HEAD(kprefetchd_wait);
+
+static unsigned long mapped_limit;
+
+/*
+ * Create kmem cache for swapped entries
+ */
+void prepare_prefetch(void)
+{
+ long total_memory = nr_free_pagecache_pages();
+ long se_size = sizeof(struct swapped_entry_t);
+
+ swapped_root.cache = kmem_cache_create("swapped_entry", se_size,
+ 0, 0, NULL, NULL);
+ if (unlikely(!swapped_root.cache))
+ panic("prepare_prefetch(): cannot create swapped_entry SLAB cache");
+
+ /* Set max count of swapped entries to 5% ram */
+ swapped_root.maxcount = (total_memory / 20) * (PAGE_SIZE / se_size);
+ /* Set maximum amount of mapped pages to prefetch to 2/3 ram */
+ mapped_limit = total_memory / 3 * 2;
+
+ spin_lock_init(&swapped_root.lock);
+ spin_lock_init(&swapped_root.busylock);
+}
+
+static inline void delay_prefetch_timer(void)
+{
+ mod_timer(&prefetch_timer, jiffies + PREFETCH_DELAY);
+}
+
+static inline void reset_prefetch_timer(void)
+{
+ mod_timer(&prefetch_timer, jiffies + PREFETCH_INTERVAL);
+}
+
+/*
+ * We check to see no part of the vm is busy. If it is this will interrupt
+ * trickle_swap and wait another PREFETCH_DELAY
+ */
+void delay_prefetch(void)
+{
+ unsigned long flags;
+
+ spin_lock_irqsave(&swapped_root.busylock, flags);
+ swapped_root.busy = 1;
+ spin_unlock_irqrestore(&swapped_root.busylock, flags);
+}
+
+void add_to_swapped_list(unsigned long index)
+{
+ struct swapped_entry_t *entry;
+ struct address_space *mapping = &swapper_space;
+ unsigned long flags;
+ int error;
+
+ /*
+ * It is not critical to add every entry to the swapped list and
+ * since we're adding to the swapped list when we're swapping
+ * out it is not a good time to be spinning to acquire the lock so
+ * just don't add this entry to the list.
+ */
+ if (unlikely(!spin_trylock_irqsave(&swapped_root.lock, flags)))
+ goto out;
+
+ if (swapped_root.count >= swapped_root.maxcount) {
+ entry = list_entry(swapped_root.list.next,
+ struct swapped_entry_t, swapped_list);
+ radix_tree_delete(&mapping->swap_tree, entry->swp_entry.val);
+ list_del(&entry->swapped_list);
+ swapped_root.count--;
+ } else {
+ entry = kmem_cache_alloc(swapped_root.cache, GFP_ATOMIC);
+ if (unlikely(!entry))
+ /* bad, can't allocate more mem */
+ goto out_locked;
+ }
+
+ entry->swp_entry.val = index;
+
+ error = radix_tree_preload(GFP_ATOMIC);
+ if (likely(!error)) {
+ error = radix_tree_insert(&mapping->swap_tree, index, entry);
+ if (likely(!error)) {
+ /*
+ * If this is the first entry the timer needs to be
+ * (re)started
+ */
+ if (list_empty(&swapped_root.list))
+ delay_prefetch_timer();
+ list_add(&entry->swapped_list, &swapped_root.list);
+ swapped_root.count++;
+ }
+ radix_tree_preload_end();
+ } else
+ kmem_cache_free(swapped_root.cache, entry);
+
+out_locked:
+ spin_unlock_irqrestore(&swapped_root.lock, flags);
+out:
+ return;
+}
+
+void remove_from_swapped_list(unsigned long index)
+{
+ struct address_space *mapping = &swapper_space;
+ struct swapped_entry_t *entry;
+ unsigned long flags;
+
+ spin_lock_irqsave(&swapped_root.lock, flags);
+ entry = radix_tree_delete(&mapping->swap_tree, index);
+ if (entry) {
+ list_del_init(&entry->swapped_list);
+ swapped_root.count--;
+ kmem_cache_free(swapped_root.cache, entry);
+ }
+ spin_unlock_irqrestore(&swapped_root.lock, flags);
+}
+
+/*
+ * This is a very lightweight function to get a page to prefetch into. The
+ * watermarks should already have been checked prior to this and we don't
+ * want to start reclaiming so we shouldn't do this in __alloc_pages.
+ */
+static struct page * prefetch_get_page(void)
+{
+ struct zone *z;
+ struct page *page = NULL;
+ struct zonelist *zonelist;
+
+ zonelist = NODE_DATA(numa_node_id())->node_zonelists +
+ (GFP_HIGHUSER & GFP_ZONEMASK);
+
+ for_each_zone(z) {
+ if (z->name == "DMA" || z->present_pages == 0)
+ continue;
+ page = buffered_rmqueue(z, 0, GFP_HIGHUSER);
+ if (page)
+ zone_statistics(zonelist, z);
+ break;
+ }
+ return page;
+}
+
+/*
+ * This tries to read a swp_entry_t into swap cache for swap prefetching.
+ */
+static int trickle_swap_cache_async(swp_entry_t entry)
+{
+ struct page *page = NULL;
+ struct address_space *mapping = &swapper_space;
+ unsigned long flags;
+
+ /* Entry may already exist, check it as cheaply as possible */
+ local_irq_save(flags);
+ if (unlikely(!read_trylock(&mapping->tree_lock))) {
+ local_irq_restore(flags);
+ goto out_delay;
+ }
+ page = radix_tree_lookup(&mapping->page_tree, entry.val);
+ read_unlock_irqrestore(&mapping->tree_lock, flags);
+ if (page) {
+ remove_from_swapped_list(entry.val);
+ goto out;
+ }
+
+ /* Get a new page to read from swap */
+ page = prefetch_get_page();
+ if (unlikely(!page))
+ goto out_delay;
+
+ if (add_to_swap_cache(page, entry)) {
+ /* Failed to add to swap cache */
+ page_cache_release(page);
+ goto out;
+ }
+
+ lru_cache_add_active(page);
+ swap_readpage(NULL, page);
+ return 1;
+out_delay:
+ return -1;
+out:
+ return 0;
+}
+
+static int test_clear_busy(void)
+{
+ int ret;
+
+ /* Lock is held? We must be busy */
+ if (unlikely(!spin_trylock(&swapped_root.busylock))) {
+ ret = 1;
+ goto out;
+ }
+ ret = swapped_root.busy;
+ swapped_root.busy = 0;
+ spin_unlock(&swapped_root.busylock);
+out:
+ return ret;
+}
+
+/*
+ * We want to be absolutely certain it's ok to start prefetching.
+ */
+static int prefetch_suitable(void)
+{
+ unsigned long pending_writes;
+ struct zone *z;
+
+ if (test_clear_busy())
+ goto out_delay;
+
+ /* We shouldn't prefetch when we are doing writeback */
+ if (read_page_state(nr_writeback))
+ goto out_delay;
+
+ /* Delay prefetching if we have significant amounts of dirty data */
+ pending_writes = read_page_state(nr_dirty) +
+ read_page_state(nr_unstable);
+ if (pending_writes > SWAP_CLUSTER_MAX)
+ goto out_delay;
+
+ /* >2/3 of the ram is mapped, we need some free for pagecache */
+ if (read_page_state(nr_mapped) > mapped_limit)
+ goto out_delay;
+
+ /*
+ * Have some hysteresis between where page reclaiming and prefetching
+ * will occur to prevent ping-ponging between them.
+ */
+ for_each_zone(z) {
+ if (z->present_pages == 0)
+ continue;
+ if (z->pages_high * 3 > z->free_pages)
+ goto out_delay;
+ }
+
+ /* Survived all that? Hooray we can prefetch! */
+ return 1;
+
+out_delay:
+ return 0;
+}
+
+/*
+ * trickle_swap is the main function that initiates the swap prefetching. It
+ * first checks to see if the busy flag is set, and does not prefetch if it
+ * is, as the flag implied we are low on memory or swapping in currently.
+ * Otherwise it runs till SWAP_CLUSTER_MAX is prefetched. This function
+ * returns 1 if it succeeds in a cycle of prefetching, 0 if it is interrupted
+ * or -1 if there is nothing left to prefetch.
+ */
+static int trickle_swap(void)
+{
+ int ret = 0, pages = 0;
+ struct swapped_entry_t *entry;
+
+ while (pages < SWAP_CLUSTER_MAX) {
+ int got_page;
+
+ if (!prefetch_suitable())
+ goto out;
+ /* Lock is held? We must be busy elsewhere */
+ if (unlikely(!spin_trylock(&swapped_root.lock)))
+ goto out;
+ if (list_empty(&swapped_root.list)) {
+ ret = -1;
+ goto out_unlock;
+ }
+ entry = list_entry(swapped_root.list.next,
+ struct swapped_entry_t, swapped_list);
+ spin_unlock(&swapped_root.lock);
+
+ got_page = trickle_swap_cache_async(entry->swp_entry);
+ if (unlikely(got_page == -1)) {
+ ret = -1;
+ goto out_unlock;
+ }
+ pages += got_page;
+ }
+ ret = 1;
+ goto out;
+
+out_unlock:
+ spin_unlock(&swapped_root.lock);
+out:
+ return ret;
+}
+
+static int kprefetchd(void *data)
+{
+ DEFINE_WAIT(wait);
+
+ daemonize("kprefetchd");
+ set_user_nice(current, 19);
+
+ for ( ; ; ) {
+ int prefetched;
+
+ try_to_freeze();
+ prepare_to_wait(&kprefetchd_wait, &wait, TASK_INTERRUPTIBLE);
+ schedule();
+ finish_wait(&kprefetchd_wait, &wait);
+
+ /* If trickle_swap() returns -1 the timer is not reset */
+ if (!(prefetched = trickle_swap()))
+ delay_prefetch_timer();
+ else if (prefetched == 1)
+ reset_prefetch_timer();
+ }
+ return 0;
+}
+
+/*
+ * Wake up kprefetchd. It will reset the timer itself appropriately so no
+ * need to do it here
+ */
+static void prefetch_wakeup(unsigned long data)
+{
+ if (waitqueue_active(&kprefetchd_wait))
+ wake_up_interruptible(&kprefetchd_wait);
+}
+
+static int __init kprefetchd_init(void)
+{
+ /*
+ * Prepare the prefetch timer. It is inactive until entries are placed
+ * on the swapped_list
+ */
+ init_timer(&prefetch_timer);
+ prefetch_timer.data = 0;
+ prefetch_timer.function = prefetch_wakeup;
+
+ kernel_thread(kprefetchd, NULL, CLONE_KERNEL);
+
+ return 0;
+}
+
+module_init(kprefetchd_init)
Index: linux-2.6.13-sp/mm/swap_state.c
===================================================================
--- linux-2.6.13-sp.orig/mm/swap_state.c 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/mm/swap_state.c 2005-09-18 13:35:02.000000000 +1000
@@ -36,6 +36,8 @@ static struct backing_dev_info swap_back
struct address_space swapper_space = {
.page_tree = RADIX_TREE_INIT(GFP_ATOMIC|__GFP_NOWARN),
.tree_lock = RW_LOCK_UNLOCKED,
+ .swap_tree = RADIX_TREE_INIT(GFP_ATOMIC),
+ .swapped_pages = LIST_HEAD_INIT(swapper_space.swapped_pages),
.a_ops = &swap_aops,
.i_mmap_nonlinear = LIST_HEAD_INIT(swapper_space.i_mmap_nonlinear),
.backing_dev_info = &swap_backing_dev_info,
@@ -80,6 +82,7 @@ static int __add_to_swap_cache(struct pa
error = radix_tree_insert(&swapper_space.page_tree,
entry.val, page);
if (!error) {
+ remove_from_swapped_list(entry.val);
page_cache_get(page);
SetPageLocked(page);
SetPageSwapCache(page);
@@ -93,11 +96,12 @@ static int __add_to_swap_cache(struct pa
return error;
}

-static int add_to_swap_cache(struct page *page, swp_entry_t entry)
+int add_to_swap_cache(struct page *page, swp_entry_t entry)
{
int error;

if (!swap_duplicate(entry)) {
+ remove_from_swapped_list(entry.val);
INC_CACHE_INFO(noent_race);
return -ENOENT;
}
@@ -145,6 +149,9 @@ int add_to_swap(struct page * page)
swp_entry_t entry;
int err;

+ /* Swap prefetching is delayed if we're swapping pages */
+ delay_prefetch();
+
if (!PageLocked(page))
BUG();

@@ -325,6 +332,9 @@ struct page *read_swap_cache_async(swp_e
struct page *found_page, *new_page = NULL;
int err;

+ /* Swap prefetching is delayed if we're already reading from swap */
+ delay_prefetch();
+
do {
/*
* First check the swap cache. Since this is normally
Index: linux-2.6.13-sp/mm/vmscan.c
===================================================================
--- linux-2.6.13-sp.orig/mm/vmscan.c 2005-09-18 13:34:53.000000000 +1000
+++ linux-2.6.13-sp/mm/vmscan.c 2005-09-18 13:35:02.000000000 +1000
@@ -519,6 +519,7 @@ static int shrink_list(struct list_head
#ifdef CONFIG_SWAP
if (PageSwapCache(page)) {
swp_entry_t swap = { .val = page->private };
+ add_to_swapped_list(swap.val);
__delete_from_swap_cache(page);
write_unlock_irq(&mapping->tree_lock);
swap_free(swap);
@@ -929,6 +930,8 @@ int try_to_free_pages(struct zone **zone
unsigned long lru_pages = 0;
int i;

+ delay_prefetch();
+
sc.gfp_mask = gfp_mask;
sc.may_writepage = 0;
sc.may_swap = 1;
@@ -1275,6 +1278,8 @@ int shrink_all_memory(int nr_pages)
.reclaimed_slab = 0,
};

+ delay_prefetch();
+
current->reclaim_state = &reclaim_state;
for_each_pgdat(pgdat) {
int freed;