mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 02:20:54 +07:00
qnx4_lookup: use d_splice_alias()
code is simpler that way Acked-by: Anders Larsen <al@alarsen.net> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
b014951692
commit
b135dcea37
@ -114,13 +114,9 @@ struct dentry * qnx4_lookup(struct inode *dir, struct dentry *dentry, unsigned i
|
|||||||
brelse(bh);
|
brelse(bh);
|
||||||
|
|
||||||
foundinode = qnx4_iget(dir->i_sb, ino);
|
foundinode = qnx4_iget(dir->i_sb, ino);
|
||||||
if (IS_ERR(foundinode)) {
|
if (IS_ERR(foundinode))
|
||||||
QNX4DEBUG((KERN_ERR "qnx4: lookup->iget -> error %ld\n",
|
QNX4DEBUG((KERN_ERR "qnx4: lookup->iget -> error %ld\n",
|
||||||
PTR_ERR(foundinode)));
|
PTR_ERR(foundinode)));
|
||||||
return ERR_CAST(foundinode);
|
|
||||||
}
|
|
||||||
out:
|
out:
|
||||||
d_add(dentry, foundinode);
|
return d_splice_alias(foundinode, dentry);
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user