mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 08:50:52 +07:00
adfs_lookup: do not fail with ENOENT on negatives, use d_splice_alias()
Cc: Russell King <linux@armlinux.org.uk> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
686bb96d1b
commit
9a7dddcaff
@ -252,17 +252,17 @@ adfs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
|
||||
|
||||
error = adfs_dir_lookup_byname(dir, &dentry->d_name, &obj);
|
||||
if (error == 0) {
|
||||
error = -EACCES;
|
||||
/*
|
||||
* This only returns NULL if get_empty_inode
|
||||
* fails.
|
||||
*/
|
||||
inode = adfs_iget(dir->i_sb, &obj);
|
||||
if (inode)
|
||||
error = 0;
|
||||
if (!inode)
|
||||
inode = ERR_PTR(-EACCES);
|
||||
} else if (error != -ENOENT) {
|
||||
inode = ERR_PTR(error);
|
||||
}
|
||||
d_add(dentry, inode);
|
||||
return ERR_PTR(error);
|
||||
return d_splice_alias(inode, dentry);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user