aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2007-02-10 04:45:39 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-02-11 13:51:31 -0500
commitfc0ecff698165ae8e178efa086e0dd1f385206b1 (patch)
treefc6274f0862bdd6749172201170b2f6a7ce4c4ff /drivers/mtd/devices
parent54bc485522afdac33de5504da2ea8cdcc690674e (diff)
[PATCH] remove invalidate_inode_pages()
Convert all calls to invalidate_inode_pages() into open-coded calls to invalidate_mapping_pages(). Leave the invalidate_inode_pages() wrapper in place for now, marked as deprecated. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/mtd/devices')
-rw-r--r--drivers/mtd/devices/block2mtd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/devices/block2mtd.c b/drivers/mtd/devices/block2mtd.c
index 6d917a4daa9d..f9f2ce7806b0 100644
--- a/drivers/mtd/devices/block2mtd.c
+++ b/drivers/mtd/devices/block2mtd.c
@@ -278,7 +278,8 @@ static void block2mtd_free_device(struct block2mtd_dev *dev)
278 kfree(dev->mtd.name); 278 kfree(dev->mtd.name);
279 279
280 if (dev->blkdev) { 280 if (dev->blkdev) {
281 invalidate_inode_pages(dev->blkdev->bd_inode->i_mapping); 281 invalidate_mapping_pages(dev->blkdev->bd_inode->i_mapping,
282 0, -1);
282 close_bdev_excl(dev->blkdev); 283 close_bdev_excl(dev->blkdev);
283 } 284 }
284 285