From: Amir Goldstein Date: Fri, 29 Sep 2017 18:43:07 +0000 (+0300) Subject: ovl: use d_splice_alias() in place of d_add() in lookup X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=829c28be9bb9a05aa7eeb8a68a4536cca2d3d694;p=openwrt%2Fstaging%2Fblogic.git ovl: use d_splice_alias() in place of d_add() in lookup This is required for NFS export. Signed-off-by: Amir Goldstein Signed-off-by: Miklos Szeredi --- diff --git a/fs/overlayfs/namei.c b/fs/overlayfs/namei.c index d69ea0a385f6..9d3ccbd95dde 100644 --- a/fs/overlayfs/namei.c +++ b/fs/overlayfs/namei.c @@ -982,9 +982,7 @@ struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry, dput(index); kfree(stack); kfree(d.redirect); - d_add(dentry, inode); - - return NULL; + return d_splice_alias(inode, dentry); out_free_oe: dentry->d_fsdata = NULL;