diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-20 23:05:59 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-29 21:24:17 +0400 |
commit | 5c33b183a36500a5b0a3c53c11c431f0fec6efc8 (patch) | |
tree | bcd892ece8a97c47f2081c5afcdd607442a43830 /fs | |
parent | 0b1d90119a479ca3b70d871da4b2ce6c4ef9eff0 (diff) | |
download | blackbird-op-linux-5c33b183a36500a5b0a3c53c11c431f0fec6efc8.tar.gz blackbird-op-linux-5c33b183a36500a5b0a3c53c11c431f0fec6efc8.zip |
uninline file_free_rcu()
What inline? Its only use is passing its address to call_rcu(), for fuck sake!
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/file_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/file_table.c b/fs/file_table.c index b3fc4d67a26b..b54bf7fd0b15 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); |