mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 00:39:30 -04:00
staging: lustre: ldlm: ldlm_resource.c removed unecessary braces
- this fixed the "WARNING: braces {} are not necessary for
single statement blocks"
Signed-off-by: Anil Belur <askb23@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d1acbe57c7
commit
bf050e55a3
@@ -854,9 +854,8 @@ void ldlm_namespace_free_prior(struct ldlm_namespace *ns,
|
||||
{
|
||||
int rc;
|
||||
|
||||
if (!ns) {
|
||||
if (!ns)
|
||||
return;
|
||||
}
|
||||
|
||||
spin_lock(&ns->ns_lock);
|
||||
ns->ns_stopping = 1;
|
||||
@@ -888,9 +887,8 @@ void ldlm_namespace_free_prior(struct ldlm_namespace *ns,
|
||||
*/
|
||||
void ldlm_namespace_free_post(struct ldlm_namespace *ns)
|
||||
{
|
||||
if (!ns) {
|
||||
if (!ns)
|
||||
return;
|
||||
}
|
||||
|
||||
/* Make sure that nobody can find this ns in its list. */
|
||||
ldlm_namespace_unregister(ns, ns->ns_client);
|
||||
|
||||
Reference in New Issue
Block a user