minix: Deinline get_block, save 2691 bytes
authorDenys Vlasenko <dvlasenk@redhat.com>
Wed, 21 Jun 2017 17:46:47 +0000 (19:46 +0200)
committerAl Viro <viro@zeniv.linux.org.uk>
Fri, 30 Jun 2017 00:09:12 +0000 (20:09 -0400)
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@redhat.com>
CC: Al Viro <viro@zeniv.linux.org.uk>
CC: linux-fsdevel@vger.kernel.org
CC: linux-kernel@vger.kernel.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/minix/itree_common.c

index 4c57c9af6946f0918bf689e42107343b4e09f164..2d1ca08870f7f6142082e880d78d0e9acc31c3dd 100644 (file)
@@ -142,7 +142,7 @@ changed:
        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;