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

Commit b87c0adf authored by Chuck Lever's avatar Chuck Lever Committed by Linus Torvalds
Browse files

[PATCH] NFS: remove unused check in nfs4_open_revalidate



Coverity spotted a superfluous error check in nfs4_open_revalidate().  Remove
it.

Coverity: #cid 847

Test plan:
Code inspection; another pass through Coverity.

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 85233a7a
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1314,12 +1314,10 @@ nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, st
			case -EROFS:
				lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
				return 1;
			case -ENOENT:
				if (dentry->d_inode == NULL)
					return 1;
		}
			default:
				goto out_drop;
		}
	}
	if (state->inode == dentry->d_inode) {
		nfs4_intent_set_file(nd, dentry, state);
		return 1;