[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20170621174647.5540-1-dvlasenk@redhat.com>
Date: Wed, 21 Jun 2017 19:46:47 +0200
From: Denys Vlasenko <dvlasenk@...hat.com>
To: Al Viro <viro@...iv.linux.org.uk>
Cc: Denys Vlasenko <dvlasenk@...hat.com>,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] minix: Deinline get_block, save 2691 bytes
This function compiles to 1402 bytes of machine code.
It has 2 callsites, and also a not-inlined copy gets created by compiler
anyway since its address gets passed as a parameter to block_truncate_page().
Signed-off-by: Denys Vlasenko <dvlasenk@...hat.com>
CC: Al Viro <viro@...iv.linux.org.uk>
CC: linux-fsdevel@...r.kernel.org
CC: linux-kernel@...r.kernel.org
---
fs/minix/itree_common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/minix/itree_common.c b/fs/minix/itree_common.c
index 4c57c9a..2325777 100644
--- a/fs/minix/itree_common.c
+++ b/fs/minix/itree_common.c
@@ -142,7 +142,7 @@ static inline int splice_branch(struct inode *inode,
return -EAGAIN;
}
-static inline int get_block(struct inode * inode, sector_t block,
+static int get_block(struct inode * inode, sector_t block,
struct buffer_head *bh, int create)
{
int err = -EIO;
--
1.8.3.1
Powered by blists - more mailing lists