Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9e1d435 authored by Al Viro's avatar Al Viro
Browse files

ovl_lookup_real(): use lookup_one_len_unlocked()



Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 383d4e8a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -411,9 +411,7 @@ static inline struct dentry *ovl_lookup_real(struct dentry *dir,
{
	struct dentry *dentry;

	inode_lock(dir->d_inode);
	dentry = lookup_one_len(name->name, dir, name->len);
	inode_unlock(dir->d_inode);
	dentry = lookup_one_len_unlocked(name->name, dir, name->len);

	if (IS_ERR(dentry)) {
		if (PTR_ERR(dentry) == -ENOENT)