From: Jeff Layton Date: Wed, 10 Apr 2013 19:36:48 +0000 (-0400) Subject: nfs: remove unnecessary check for NULL inode->i_flock from nfs_delegation_claim_locks X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=314d7cc05d10208d6e63b0b1185f02c73a16adfb;p=linux-edison.git nfs: remove unnecessary check for NULL inode->i_flock from nfs_delegation_claim_locks The second check was added in commit 65b62a29 but it will never be true. Signed-off-by: Jeff Layton Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/delegation.c b/fs/nfs/delegation.c index f30bd1ec63b..57db3244f4d 100644 --- a/fs/nfs/delegation.c +++ b/fs/nfs/delegation.c @@ -71,10 +71,8 @@ static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_ int status = 0; if (inode->i_flock == NULL) - return 0; - - if (inode->i_flock == NULL) goto out; + /* Protect inode->i_flock using the file locks lock */ lock_flocks(); for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {