Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 25-akpm/mm/truncate.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff -puN mm/truncate.c~reiser4-truncate_inode_pages_range-cleanup mm/truncate.c
--- 25/mm/truncate.c~reiser4-truncate_inode_pages_range-cleanup	2004-09-26 17:20:18.843551024 -0700
+++ 25-akpm/mm/truncate.c	2004-09-26 17:20:18.847550416 -0700
@@ -116,7 +116,8 @@ invalidate_complete_page(struct address_
  * mapping is large, it is probably the case that the final pages are the most
  * recently touched, and freeing happens in ascending file offset order.
  */
-void truncate_inode_pages_range(struct address_space *mapping, loff_t lstart, loff_t lend)
+void truncate_inode_pages_range(struct address_space *mapping,
+				loff_t lstart, loff_t lend)
 {
 	const pgoff_t start = (lstart + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
 	pgoff_t end;
@@ -199,7 +200,6 @@ void truncate_inode_pages_range(struct a
 		pagevec_release(&pvec);
 	}
 }
-
 EXPORT_SYMBOL(truncate_inode_pages_range);
 
 /**
@@ -213,10 +213,8 @@ void truncate_inode_pages(struct address
 {
 	truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
 }
-
 EXPORT_SYMBOL(truncate_inode_pages);
 
-
 /**
  * invalidate_mapping_pages - Invalidate all the unlocked pages of one inode
  * @mapping: the address_space which holds the pages to invalidate
_