diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2015-07-13 11:30:51 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2015-08-10 22:05:45 +0200 |
commit | af9dbaf48d00a34c2933ed0c0e9c82b37eb16356 (patch) | |
tree | ba9d57adbde48551873a5bca0d86ef4ec17c33d3 /fs/nfsd | |
parent | nfsd/sunrpc: factor svc_rqst allocation and freeing from sv_nrthreads refcoun... (diff) | |
download | linux-af9dbaf48d00a34c2933ed0c0e9c82b37eb16356.tar.xz linux-af9dbaf48d00a34c2933ed0c0e9c82b37eb16356.zip |
nfsd: Fix a memory leak of struct file_lock
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfs4state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 61dfb33f0559..84fb6eb5ff2f 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -3934,6 +3934,7 @@ static int nfs4_setlease(struct nfs4_delegation *dp) if (!filp) { /* We should always have a readable file here */ WARN_ON_ONCE(1); + locks_free_lock(fl); return -EBADF; } fl->fl_file = filp; |