aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/namei.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c
index 841c8d9286c0..0dc4cbf21f37 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -2261,12 +2261,15 @@ mountpoint_last(struct nameidata *nd, struct path *path)
2261 dentry = d_alloc(dir, &nd->last); 2261 dentry = d_alloc(dir, &nd->last);
2262 if (!dentry) { 2262 if (!dentry) {
2263 error = -ENOMEM; 2263 error = -ENOMEM;
2264 mutex_unlock(&dir->d_inode->i_mutex);
2264 goto out; 2265 goto out;
2265 } 2266 }
2266 dentry = lookup_real(dir->d_inode, dentry, nd->flags); 2267 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2267 error = PTR_ERR(dentry); 2268 error = PTR_ERR(dentry);
2268 if (IS_ERR(dentry)) 2269 if (IS_ERR(dentry)) {
2270 mutex_unlock(&dir->d_inode->i_mutex);
2269 goto out; 2271 goto out;
2272 }
2270 } 2273 }
2271 mutex_unlock(&dir->d_inode->i_mutex); 2274 mutex_unlock(&dir->d_inode->i_mutex);
2272 2275