[patch 09/18] Use page_cache_xxx in fs/sync
From: Christoph Lameter <hidden>
Date: 2008-02-16 00:48:08
Also in:
linux-fsdevel
Use page_cache_xxx in fs/sync. Reviewed-by: Dave Chinner <redacted> Signed-off-by: Christoph Lameter <redacted> --- fs/sync.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Index: linux-2.6/fs/sync.c ===================================================================
--- linux-2.6.orig/fs/sync.c 2008-02-14 15:19:13.645515948 -0800
+++ linux-2.6/fs/sync.c 2008-02-15 16:14:52.000998613 -0800@@ -260,8 +260,8 @@ int do_sync_mapping_range(struct address ret = 0; if (flags & SYNC_FILE_RANGE_WAIT_BEFORE) { ret = wait_on_page_writeback_range(mapping, - offset >> PAGE_CACHE_SHIFT, - endbyte >> PAGE_CACHE_SHIFT); + page_cache_index(mapping, offset), + page_cache_index(mapping, endbyte)); if (ret < 0) goto out; }
@@ -275,8 +275,8 @@ int do_sync_mapping_range(struct address if (flags & SYNC_FILE_RANGE_WAIT_AFTER) { ret = wait_on_page_writeback_range(mapping, - offset >> PAGE_CACHE_SHIFT, - endbyte >> PAGE_CACHE_SHIFT); + page_cache_index(mapping, offset), + page_cache_index(mapping, endbyte)); } out: return ret;
--
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>