Commit 0288e7fa authored by Hui Su's avatar Hui Su Committed by Greg Kroah-Hartman

fs/kernfs: remove the double check of dentry->inode

In both kernfs_node_from_dentry() and in
kernfs_dentry_node(), we will check the dentry->inode
is NULL or not, which is superfluous.

So remove the check in kernfs_node_from_dentry().
Acked-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarHui Su <sh_def@163.com>
Link: https://lore.kernel.org/r/20201113132143.GA119541@rlkSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 784b2c48
...@@ -604,8 +604,7 @@ const struct dentry_operations kernfs_dops = { ...@@ -604,8 +604,7 @@ const struct dentry_operations kernfs_dops = {
*/ */
struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry) struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
{ {
if (dentry->d_sb->s_op == &kernfs_sops && if (dentry->d_sb->s_op == &kernfs_sops)
!d_really_is_negative(dentry))
return kernfs_dentry_node(dentry); return kernfs_dentry_node(dentry);
return NULL; return NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment