From: Al Viro Date: Fri, 20 Jul 2012 19:05:59 +0000 (+0400) Subject: uninline file_free_rcu() X-Git-Tag: v3.6-rc1~18^2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c33b183a36500a5b0a3c53c11c431f0fec6efc8;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git uninline file_free_rcu() What inline? Its only use is passing its address to call_rcu(), for fuck sake! Signed-off-by: Al Viro --- diff --git a/fs/file_table.c b/fs/file_table.c index b3fc4d6..b54bf7f 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -43,7 +43,7 @@ static struct kmem_cache *filp_cachep __read_mostly; static struct percpu_counter nr_files __cacheline_aligned_in_smp; -static inline void file_free_rcu(struct rcu_head *head) +static void file_free_rcu(struct rcu_head *head) { struct file *f = container_of(head, struct file, f_u.fu_rcuhead);