From: Vivek Goyal Date: Wed, 1 Nov 2017 19:37:22 +0000 (-0400) Subject: ovl: Put upperdentry if ovl_check_origin() fails X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=13e6560075607ff354b48556f306bee925328325;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ovl: Put upperdentry if ovl_check_origin() fails commit 5455f92b54e516995a9ca45bbf790d3629c27a93 upstream. If ovl_check_origin() fails, we should put upperdentry. We have a reference on it by now. So goto out_put_upper instead of out. Fixes: a9d019573e88 ("ovl: lookup non-dir copy-up-origin by file handle") Signed-off-by: Vivek Goyal Signed-off-by: Miklos Szeredi Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/overlayfs/namei.c b/fs/overlayfs/namei.c index a12dc10bf726..bc6d5c5a3443 100644 --- a/fs/overlayfs/namei.c +++ b/fs/overlayfs/namei.c @@ -630,7 +630,7 @@ struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry, err = ovl_check_origin(upperdentry, roe->lowerstack, roe->numlower, &stack, &ctr); if (err) - goto out; + goto out_put_upper; } if (d.redirect) {