diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-10-19 01:20:15 +0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-10-19 01:20:15 +0400 |
commit | faf5f49c2d9c0af2847837c232a432cc146e203b (patch) | |
tree | f0c097ae68ca3ec3cd5ee0a904916493b00b9c1b /fs/nfs/nfs4state.c | |
parent | 0a8838f972883112f0a7b259141b24db17583c2d (diff) | |
download | linux-faf5f49c2d9c0af2847837c232a432cc146e203b.tar.xz |
NFSv4: Make NFS clean up byte range locks asynchronously
Currently we fail to do so if the process was signalled.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4state.c')
-rw-r--r-- | fs/nfs/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index bb3574361958..23834c8fb740 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -600,7 +600,7 @@ static struct nfs4_lock_state *nfs4_get_lock_state(struct nfs4_state *state, fl_ * Release reference to lock_state, and free it if we see that * it is no longer in use */ -static void nfs4_put_lock_state(struct nfs4_lock_state *lsp) +void nfs4_put_lock_state(struct nfs4_lock_state *lsp) { struct nfs4_state *state; |