Skip to content

Commit

Permalink
[PATCH] page migration: Fix fallback behavior for dirty pages
Browse files Browse the repository at this point in the history
Currently we check PageDirty() in order to make the decision to swap out
the page.  However, the dirty information may be only be contained in the
ptes pointing to the page.  We need to first unmap the ptes before checking
for PageDirty().  If unmap is successful then the page count of the page
will also be decreased so that pageout() works properly.

This is a fix necessary for 2.6.17.  Without this fix we may migrate dirty
pages for filesystems without migration functions.  Filesystems may keep
pointers to dirty pages.  Migration of dirty pages can result in the
filesystem keeping pointers to freed pages.

Unmapping is currently not be separated out from removing all the
references to a page and moving the mapping.  Therefore try_to_unmap will
be called again in migrate_page() if the writeout is successful.  However,
it wont do anything since the ptes are already removed.

The coming updates to the page migration code will restructure the code
so that this is no longer necessary.

Signed-off-by: Christoph Lameter <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Christoph Lameter authored and Linus Torvalds committed May 2, 2006
1 parent a4b741e commit 4c28f81
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions mm/migrate.c
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,17 @@ int migrate_pages(struct list_head *from, struct list_head *to,
goto unlock_both;
}

/* Make sure the dirty bit is up to date */
if (try_to_unmap(page, 1) == SWAP_FAIL) {
rc = -EPERM;
goto unlock_both;
}

if (page_mapcount(page)) {
rc = -EAGAIN;
goto unlock_both;
}

/*
* Default handling if a filesystem does not provide
* a migration function. We can only migrate clean
Expand Down

0 comments on commit 4c28f81

Please sign in to comment.