提交 f249fdd8 编写于 作者: H Harvey Harrison 提交者: Linus Torvalds

autofs4: fix sparse warning in root.c

fs/autofs4/root.c:536:23: warning: symbol 'ino' shadows an earlier one
fs/autofs4/root.c:510:22: originally declared here

There is no need to redeclare, we are at the end of the loop and in
the next iteration of the loop, ino will be reset.
Signed-off-by: NHarvey Harrison <harvey.harrison@gmail.com>
Acked-by: NIan Kent <raven@themaw.net>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 58b250da
...@@ -533,9 +533,9 @@ static struct dentry *autofs4_lookup_unhashed(struct autofs_sb_info *sbi, struct ...@@ -533,9 +533,9 @@ static struct dentry *autofs4_lookup_unhashed(struct autofs_sb_info *sbi, struct
goto next; goto next;
if (d_unhashed(dentry)) { if (d_unhashed(dentry)) {
struct autofs_info *ino = autofs4_dentry_ino(dentry);
struct inode *inode = dentry->d_inode; struct inode *inode = dentry->d_inode;
ino = autofs4_dentry_ino(dentry);
list_del_init(&ino->rehash); list_del_init(&ino->rehash);
dget(dentry); dget(dentry);
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册