diff options
| author | 2006-02-01 03:05:41 -0800 | |
|---|---|---|
| committer | 2006-02-01 08:53:17 -0800 | |
| commit | e965f9630c651fa4249039fd4b80c9392d07a856 (patch) | |
| tree | 1353dd536d0ee549c30e462086624c21788ee9d2 /fs/xfs/linux-2.6/xfs_buf.c | |
| parent | [PATCH] Direct Migration V9: upgrade MPOL_MF_MOVE and sys_migrate_pages() (diff) | |
| download | linux-dev-e965f9630c651fa4249039fd4b80c9392d07a856.tar.xz linux-dev-e965f9630c651fa4249039fd4b80c9392d07a856.zip | |
[PATCH] Direct Migration V9: Avoid writeback / page_migrate() method
Migrate a page with buffers without requiring writeback
This introduces a new address space operation migratepage() that may be used
by a filesystem to implement its own version of page migration.
A version is provided that migrates buffers attached to pages. Some
filesystems (ext2, ext3, xfs) are modified to utilize this feature.
The swapper address space operation are modified so that a regular
migrate_page() will occur for anonymous pages without writeback (migrate_pages
forces every anonymous page to have a swap entry).
Signed-off-by: Mike Kravetz <kravetz@us.ibm.com>
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_buf.c')
| -rw-r--r-- | fs/xfs/linux-2.6/xfs_buf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c index a36a8e3b703f..bfb4f2917bb6 100644 --- a/fs/xfs/linux-2.6/xfs_buf.c +++ b/fs/xfs/linux-2.6/xfs_buf.c @@ -1521,6 +1521,7 @@ xfs_mapping_buftarg( struct address_space *mapping; static struct address_space_operations mapping_aops = { .sync_page = block_sync_page, + .migratepage = fail_migrate_page, }; inode = new_inode(bdev->bd_inode->i_sb); |
