[JFFS2] Use d_splice_alias() not d_add() in jffs2_lookup()
authorDavid Woodhouse <dwmw2@infradead.org>
Mon, 18 Aug 2008 14:36:47 +0000 (15:36 +0100)
committerAl Viro <viro@zeniv.linux.org.uk>
Thu, 23 Oct 2008 09:13:12 +0000 (05:13 -0400)
Now that JFFS2 can be exported by NFS, we need to get this right.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/jffs2/dir.c

index b1aaae8..621bdfa 100644 (file)
@@ -108,9 +108,7 @@ static struct dentry *jffs2_lookup(struct inode *dir_i, struct dentry *target,
                }
        }
 
-       d_add(target, inode);
-
-       return NULL;
+       return d_splice_alias(inode, target);
 }
 
 /***********************************************************************/