diff options
author | David Woodhouse <dwmw2@infradead.org> | 2008-08-18 15:36:47 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-10-23 05:13:12 -0400 |
commit | 8966c5e0fc867f5a7da5756b4cd1b8bbbed3d5dd (patch) | |
tree | 2134d6ee7bfcb64e79eb026dff07c0fab7d0567e | |
parent | c002a6c7977320f95b5edede5ce4e0eeecf291ff (diff) |
[JFFS2] Use d_splice_alias() not d_add() in jffs2_lookup()
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>
-rw-r--r-- | fs/jffs2/dir.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/jffs2/dir.c b/fs/jffs2/dir.c index b1aaae823a52..621bdfa994e7 100644 --- a/fs/jffs2/dir.c +++ b/fs/jffs2/dir.c @@ -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); } /***********************************************************************/ |