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

Commit 45db9240 authored by Jan Blunck's avatar Jan Blunck Committed by Benjamin Herrenschmidt
Browse files

powerpc/spufs: Remove double check for non-negative dentry



This patch removes an unnecessary double check if the dentry returned by
lookup_create() is actually non-negative. Since lookup_create() itself returns
an error in this case just remove the check.

Signed-off-by: default avatarJan Blunck <jblunck@suse.de>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 8d165db1
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -631,10 +631,6 @@ long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode,
	if (IS_ERR(dentry))
		goto out_dir;

	ret = -EEXIST;
	if (dentry->d_inode)
		goto out_dput;

	mode &= ~current_umask();

	if (flags & SPU_CREATE_GANG)