|
@@ -746,13 +746,6 @@ int migrate_pages(struct list_head *from,
|
|
|
struct page *page2;
|
|
|
int swapwrite = current->flags & PF_SWAPWRITE;
|
|
|
int rc;
|
|
|
- unsigned long flags;
|
|
|
-
|
|
|
- local_irq_save(flags);
|
|
|
- list_for_each_entry(page, from, lru)
|
|
|
- __inc_zone_page_state(page, NR_ISOLATED_ANON +
|
|
|
- page_is_file_cache(page));
|
|
|
- local_irq_restore(flags);
|
|
|
|
|
|
if (!swapwrite)
|
|
|
current->flags |= PF_SWAPWRITE;
|
|
@@ -878,8 +871,11 @@ static int do_move_page_to_node_array(struct mm_struct *mm,
|
|
|
goto put_and_set;
|
|
|
|
|
|
err = isolate_lru_page(page);
|
|
|
- if (!err)
|
|
|
+ if (!err) {
|
|
|
list_add_tail(&page->lru, &pagelist);
|
|
|
+ inc_zone_page_state(page, NR_ISOLATED_ANON +
|
|
|
+ page_is_file_cache(page));
|
|
|
+ }
|
|
|
put_and_set:
|
|
|
/*
|
|
|
* Either remove the duplicate refcount from
|