mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 19:24:01 -04:00
staging: lustre: lustre: Remove unneeded else after goto
Remove unnecessary else following an if block with a goto statement. Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7d51a7dab7
commit
6c441b971d
@@ -850,7 +850,8 @@ cfs_cpt_table_create_pattern(char *pattern)
|
||||
if (*str != 0) {
|
||||
CERROR("Invalid pattern %s\n", str);
|
||||
goto failed;
|
||||
} else if (c != ncpt) {
|
||||
}
|
||||
if (c != ncpt) {
|
||||
CERROR("expect %d partitions but found %d\n",
|
||||
ncpt, c);
|
||||
goto failed;
|
||||
|
||||
@@ -399,10 +399,9 @@ static int lov_set_osc_active(struct obd_device *obd, struct obd_uuid *uuid,
|
||||
CDEBUG(D_INFO, "OSC %s already %sactive!\n",
|
||||
uuid->uuid, active ? "" : "in");
|
||||
goto out;
|
||||
} else {
|
||||
CDEBUG(D_CONFIG, "Marking OSC %s %sactive\n",
|
||||
obd_uuid2str(uuid), active ? "" : "in");
|
||||
}
|
||||
CDEBUG(D_CONFIG, "Marking OSC %s %sactive\n",
|
||||
obd_uuid2str(uuid), active ? "" : "in");
|
||||
|
||||
lov->lov_tgts[index]->ltd_active = active;
|
||||
if (active) {
|
||||
|
||||
@@ -402,8 +402,9 @@ int lov_getstripe(struct obd_export *exp, struct lov_stripe_md *lsm,
|
||||
if (copy_from_user(&lum, lump, lum_size)) {
|
||||
rc = -EFAULT;
|
||||
goto out_set;
|
||||
} else if ((lum.lmm_magic != LOV_USER_MAGIC) &&
|
||||
(lum.lmm_magic != LOV_USER_MAGIC_V3)) {
|
||||
}
|
||||
if ((lum.lmm_magic != LOV_USER_MAGIC) &&
|
||||
(lum.lmm_magic != LOV_USER_MAGIC_V3)) {
|
||||
rc = -EINVAL;
|
||||
goto out_set;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user