summaryrefslogtreecommitdiff
path: root/fs/autofs4
diff options
context:
space:
mode:
authorClaudiu Ghioc <claudiughioc@gmail.com>2013-05-06 05:47:16 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2013-05-06 20:06:59 (GMT)
commit954829863d3017d1c14600c975f9b92696d36836 (patch)
tree0c132e81fadb5344c1ef4e3f7ab5258c368b1e5d /fs/autofs4
parent2bf1bef0d6c3636353938dd1f183a4522957fc35 (diff)
downloadlinux-fsl-qoriq-954829863d3017d1c14600c975f9b92696d36836.tar.xz
autofs - fix sparse warning for autofs4_d_manage()
Fixed the sparse warning: fs/autofs4/root.c:411:5: warning: symbol 'autofs4_d_manage' was not declared. Should it be static?" [ Clearly it should be static as the function is declared static at the top of root.c. - imk ] Signed-off-by: Claudiu Ghioc <claudiu.ghioc@gmail.com> Signed-off-by: Ian Kent <raven@themaw.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/autofs4')
-rw-r--r--fs/autofs4/root.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c
index 9bd1625..085da86 100644
--- a/fs/autofs4/root.c
+++ b/fs/autofs4/root.c
@@ -408,7 +408,7 @@ done:
return NULL;
}
-int autofs4_d_manage(struct dentry *dentry, bool rcu_walk)
+static int autofs4_d_manage(struct dentry *dentry, bool rcu_walk)
{
struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
struct autofs_info *ino = autofs4_dentry_ino(dentry);