mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
staging: lustre: ldlm: free resource when ldlm_lock_create() fails.
[ Upstream commit d8caf662b4 ]
ldlm_lock_create() gets a resource, but don't put it on
all failure paths. It should.
Signed-off-by: NeilBrown <neilb@suse.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1c80292332
commit
c18d68c7c2
@@ -1489,8 +1489,10 @@ struct ldlm_lock *ldlm_lock_create(struct ldlm_namespace *ns,
|
||||
return ERR_CAST(res);
|
||||
|
||||
lock = ldlm_lock_new(res);
|
||||
if (!lock)
|
||||
if (!lock) {
|
||||
ldlm_resource_putref(res);
|
||||
return ERR_PTR(-ENOMEM);
|
||||
}
|
||||
|
||||
lock->l_req_mode = mode;
|
||||
lock->l_ast_data = data;
|
||||
@@ -1533,6 +1535,8 @@ out:
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Enqueue (request) a lock.
|
||||
* On the client this is called from ldlm_cli_enqueue_fini
|
||||
|
||||
Reference in New Issue
Block a user