[PATCH] direct-io: Deinline dio_send_cur_page, save ~2000 bytes

From: Denys Vlasenko
Date: Sun Mar 13 2016 - 17:01:16 EST


This function compiles to 1070 bytes, 2 callsites

text data bss dec hex filename
9559 16 0 9575 2567 direct-io.o.before3
7587 16 0 7603 1db3 direct-io.o

Signed-off-by: Denys Vlasenko <dvlasenk@xxxxxxxxxx>
CC: Al Viro <viro@xxxxxxxxxxxxxxxxxx>
CC: Jens Axboe <axboe@xxxxxx>
CC: Christoph Hellwig <hch@xxxxxx>
CC: linux-kernel@xxxxxxxxxxxxxxx
---
fs/direct-io.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/direct-io.c b/fs/direct-io.c
index 729c902..469baf7 100644
--- a/fs/direct-io.c
+++ b/fs/direct-io.c
@@ -710,7 +710,7 @@ static inline int dio_bio_add_page(struct dio_submit *sdio)
* The caller of this function is responsible for removing cur_page from the
* dio, and for dropping the refcount which came from that presence.
*/
-static inline int dio_send_cur_page(struct dio *dio, struct dio_submit *sdio,
+static int dio_send_cur_page(struct dio *dio, struct dio_submit *sdio,
struct buffer_head *map_bh)
{
int ret = 0;
--
1.8.1.4