dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
David Woodhouse 2008-08-18 15:36:47 +01:00 committed by Al Viro
parent c002a6c797
commit 8966c5e0fc
1 changed files with 1 additions and 3 deletions

View 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);
}
/***********************************************************************/