Make generic_writepages inlinable in current file. Signed-off-by: Mikulas Patocka --- mm/page-writeback.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: linux-2.6.26-rc8/mm/page-writeback.c =================================================================== --- linux-2.6.26-rc8.orig/mm/page-writeback.c 2008-06-25 03:58:20.000000000 +0200 +++ linux-2.6.26-rc8/mm/page-writeback.c 2008-07-01 17:42:55.000000000 +0200 @@ -981,8 +981,8 @@ static int __writepage(struct page *page * This is a library function, which implements the writepages() * address_space_operation. */ -int generic_writepages(struct address_space *mapping, - struct writeback_control *wbc) +__always_inline int generic_writepages(struct address_space *mapping, + struct writeback_control *wbc) { /* deal with chardevs and other special file */ if (!mapping->a_ops->writepage)