diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-12 23:32:34 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-15 08:10:39 +0300 |
commit | 18d8c860112f96b62899819f933912833398cd58 (patch) | |
tree | 4906ef8082f612cc81848df89487f5f731c4f85f /fs/namei.c | |
parent | aed434ada68573549d9f5106cde26b94c48e51c2 (diff) | |
download | linux-18d8c860112f96b62899819f933912833398cd58.tar.xz |
namei: uninline set_root{,_rcu}()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/namei.c b/fs/namei.c index d5f45681ea88..177934c79a04 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -777,12 +777,12 @@ static int complete_walk(struct nameidata *nd) return status; } -static __always_inline void set_root(struct nameidata *nd) +static void set_root(struct nameidata *nd) { get_fs_root(current->fs, &nd->root); } -static __always_inline unsigned set_root_rcu(struct nameidata *nd) +static unsigned set_root_rcu(struct nameidata *nd) { struct fs_struct *fs = current->fs; unsigned seq; |