Skip to content

Commit

Permalink
[PATCH] knfsd: nfsd4: remove spurious replay_owner check
Browse files Browse the repository at this point in the history
OK, this is embarassing--I've even looked back at the history, and cannot for
the life of me figure out why I added this check.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
J.Bruce Fields authored and Linus Torvalds committed Dec 13, 2006
1 parent ca36431 commit d9e626f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/nfsd/nfs4proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ nfsd4_proc_compound(struct svc_rqst *rqstp,
nfsd4_encode_operation(resp, op);
status = op->status;
}
if (replay_owner && (replay_owner != (void *)(-1))) {
if (replay_owner) {
nfs4_put_stateowner(replay_owner);
replay_owner = NULL;
}
Expand Down

0 comments on commit d9e626f

Please sign in to comment.