From 1d74756002986676497a0a96068feba8d2d7ea9c Mon Sep 17 00:00:00 2001
From: Denys Vlasenko <dvlasenk@redhat.com>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] fs/reiserfs/inode.c: Deinline fix_tail_page_for_writing, save 120 bytes

This function compiles to 78 bytes of machine code.

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
---
 fs/reiserfs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/reiserfs/inode.c b/fs/reiserfs/inode.c
index 3d8e7e6..8657e63 100644
--- a/fs/reiserfs/inode.c
+++ b/fs/reiserfs/inode.c
@@ -189,7 +189,7 @@ inline void make_le_item_head(struct item_head *ih, const struct cpu_key *key,
  * to be unmapped, so that __block_write_begin will correctly call
  * reiserfs_get_block to convert the tail into an unformatted node
  */
-static inline void fix_tail_page_for_writing(struct page *page)
+static void fix_tail_page_for_writing(struct page *page)
 {
 	struct buffer_head *head, *next, *bh;
 
-- 
2.1.0

