Commit 4d1d413a authored by Greg Donald's avatar Greg Donald Committed by Greg Kroah-Hartman

drivers: staging: lustre: Fix "else should follow close brace '}'" errors

Fix checkpatch.pl "else should follow close brace '}'" errors
Signed-off-by: default avatarGreg Donald <gdonald@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ca4be887
...@@ -137,8 +137,7 @@ ll_quota_on(struct super_block *sb, int off, int ver, char *name, int remount) ...@@ -137,8 +137,7 @@ ll_quota_on(struct super_block *sb, int off, int ver, char *name, int remount)
); );
path_put(&path); path_put(&path);
return rc; return rc;
} } else
else
return -ENOSYS; return -ENOSYS;
} }
...@@ -147,8 +146,7 @@ static inline int ll_quota_off(struct super_block *sb, int off, int remount) ...@@ -147,8 +146,7 @@ static inline int ll_quota_off(struct super_block *sb, int off, int remount)
if (sb->s_qcop->quota_off) { if (sb->s_qcop->quota_off) {
return sb->s_qcop->quota_off(sb, off return sb->s_qcop->quota_off(sb, off
); );
} } else
else
return -ENOSYS; return -ENOSYS;
} }
......
...@@ -1509,8 +1509,7 @@ static long ll_dir_ioctl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -1509,8 +1509,7 @@ static long ll_dir_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
cmd == LL_IOC_MDC_GETINFO)) { cmd == LL_IOC_MDC_GETINFO)) {
rc = 0; rc = 0;
goto skip_lmm; goto skip_lmm;
} } else
else
goto out_req; goto out_req;
} }
......
...@@ -438,8 +438,7 @@ int lov_getstripe(struct obd_export *exp, struct lov_stripe_md *lsm, ...@@ -438,8 +438,7 @@ int lov_getstripe(struct obd_export *exp, struct lov_stripe_md *lsm,
if (copy_from_user(&lum, lump, lum_size)) { if (copy_from_user(&lum, lump, lum_size)) {
rc = -EFAULT; rc = -EFAULT;
goto out_set; goto out_set;
} } else if ((lum.lmm_magic != LOV_USER_MAGIC) &&
else if ((lum.lmm_magic != LOV_USER_MAGIC) &&
(lum.lmm_magic != LOV_USER_MAGIC_V3)) { (lum.lmm_magic != LOV_USER_MAGIC_V3)) {
rc = -EINVAL; rc = -EINVAL;
goto out_set; goto out_set;
......
...@@ -332,8 +332,7 @@ static struct dt_object *dt_reg_open(const struct lu_env *env, ...@@ -332,8 +332,7 @@ static struct dt_object *dt_reg_open(const struct lu_env *env,
result = dt_lookup_dir(env, p, name, fid); result = dt_lookup_dir(env, p, name, fid);
if (result == 0){ if (result == 0){
o = dt_locate(env, dt, fid); o = dt_locate(env, dt, fid);
} } else
else
o = ERR_PTR(result); o = ERR_PTR(result);
return o; return o;
......
...@@ -694,8 +694,7 @@ static ssize_t ptlrpc_lprocfs_nrs_seq_write(struct file *file, ...@@ -694,8 +694,7 @@ static ssize_t ptlrpc_lprocfs_nrs_seq_write(struct file *file,
if (queue == PTLRPC_NRS_QUEUE_HP && !nrs_svc_has_hp(svc)) { if (queue == PTLRPC_NRS_QUEUE_HP && !nrs_svc_has_hp(svc)) {
rc = -ENODEV; rc = -ENODEV;
goto out; goto out;
} } else if (queue == PTLRPC_NRS_QUEUE_BOTH && !nrs_svc_has_hp(svc))
else if (queue == PTLRPC_NRS_QUEUE_BOTH && !nrs_svc_has_hp(svc))
queue = PTLRPC_NRS_QUEUE_REG; queue = PTLRPC_NRS_QUEUE_REG;
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment