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:
parent
d1acbe57c7
commit
bf050e55a3
1 changed files with 2 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue