From: Yan Hong Date: Wed, 12 Dec 2012 21:52:15 +0000 (-0800) Subject: fs/buffer.c: do not inline exported function X-Git-Tag: v3.8-rc1~127^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3f3c29cb290a2d5d26e3cf5504f447fd7256a81;p=platform%2Fupstream%2Fkernel-adaptation-pc.git fs/buffer.c: do not inline exported function It makes no sense to inline an exported function. Signed-off-by: Yan Hong Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/buffer.c b/fs/buffer.c index 6e9ed48..9083e52 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -46,8 +46,7 @@ static int fsync_buffers_list(spinlock_t *lock, struct list_head *list); #define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers) -inline void -init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private) +void init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private) { bh->b_end_io = handler; bh->b_private = private;