mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 12:24:37 -04:00
staging: lustre: Fix brace {} are not necessary for single statement blocks
This patch fixed "WARNING: braces {} are not necessary for
single statement blocks" in lustre/lustre/mgc_request.c
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
37821997e7
commit
3126b4d121
@@ -1090,18 +1090,18 @@ int mgc_set_info_async(const struct lu_env *env, struct obd_export *exp,
|
||||
return -EINVAL;
|
||||
|
||||
rc = mgc_fs_setup(exp->exp_obd, sb);
|
||||
if (rc) {
|
||||
if (rc)
|
||||
CERROR("set_fs got %d\n", rc);
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
if (KEY_IS(KEY_CLEAR_FS)) {
|
||||
if (vallen != 0)
|
||||
return -EINVAL;
|
||||
rc = mgc_fs_cleanup(exp->exp_obd);
|
||||
if (rc) {
|
||||
if (rc)
|
||||
CERROR("clear_fs got %d\n", rc);
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
if (KEY_IS(KEY_SET_INFO)) {
|
||||
|
||||
Reference in New Issue
Block a user