Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 297445
b: refs/heads/master
c: 393d8ed
h: refs/heads/master
i:
  297443: c2d4fd8
v: v3
  • Loading branch information
J. Bruce Fields committed Mar 6, 2012
1 parent 3364bad commit adffe30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1255a8f36cb16a02540bdad91c0bc0971b9fb429
refs/heads/master: 393d8ed80f0e9b7edad737053a5fb375f0bf4849
4 changes: 3 additions & 1 deletion trunk/fs/nfsd/nfs4state.c
Original file line number Diff line number Diff line change
Expand Up @@ -4415,7 +4415,9 @@ nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
struct nfs4_client *clp;

clp = find_confirmed_client_by_str(name, strhashval);
return clp ? 1 : 0;
if (!clp)
return 0;
return clp->cl_firststate;
}

/*
Expand Down

0 comments on commit adffe30

Please sign in to comment.