Commit ce3e9a8a authored by Kent Overstreet's avatar Kent Overstreet
Browse files

bcachefs: .get_parent() should return an error pointer



Delete the useless check for inum == 0; we'll return -ENOENT without it,
which is what we want.

Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 4bd156c4
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -1213,9 +1213,6 @@ static struct dentry *bch2_get_parent(struct dentry *child)
		.inum = inode->ei_inode.bi_dir,
	};

	if (!parent_inum.inum)
		return NULL;

	return d_obtain_alias(bch2_vfs_inode_get(c, parent_inum));
}