* [PATCH] staging: lustre: lustre: lclient: Removed the else statement
@ 2015-09-17 16:14 Anjali Menon
2015-09-17 16:51 ` Jaime Arrocha
2015-09-19 2:44 ` Greg KH
0 siblings, 2 replies; 3+ messages in thread
From: Anjali Menon @ 2015-09-17 16:14 UTC (permalink / raw)
To: gregkh; +Cc: oleg.drokin, jinshan.xiong, linux-kernel, devel, Anjali Menon
Removed the else statement along with some unwanted brackets
to fix the following coding style warning detected by
checkpatch.
WARNING: else is not generally useful after a break or return
Signed-off-by: Anjali Menon <cse.anjalimenon@gmail.com>
---
drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
index ab6cb41..23092fc 100644
--- a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
+++ b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
@@ -836,7 +836,7 @@ int ccc_prep_size(const struct lu_env *env, struct cl_object *obj,
*exceed = 1;
}
return result;
- } else {
+ }
/*
* region is within kms and, hence, within real file
* size (A). We need to increase i_size to cover the
@@ -847,14 +847,12 @@ int ccc_prep_size(const struct lu_env *env, struct cl_object *obj,
* which will always be >= the kms value here.
* b=11081
*/
- if (cl_isize_read(inode) < kms) {
- cl_isize_write_nolock(inode, kms);
- CDEBUG(D_VFSTRACE,
- DFID" updating i_size %llu\n",
- PFID(lu_object_fid(&obj->co_lu)),
- (__u64)cl_isize_read(inode));
-
- }
+ if (cl_isize_read(inode) < kms) {
+ cl_isize_write_nolock(inode, kms);
+ CDEBUG(D_VFSTRACE,
+ DFID" updating i_size %llu\n",
+ PFID(lu_object_fid(&obj->co_lu)),
+ (__u64)cl_isize_read(inode));
}
}
ccc_object_size_unlock(obj);
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] staging: lustre: lustre: lclient: Removed the else statement
2015-09-17 16:14 [PATCH] staging: lustre: lustre: lclient: Removed the else statement Anjali Menon
@ 2015-09-17 16:51 ` Jaime Arrocha
2015-09-19 2:44 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Jaime Arrocha @ 2015-09-17 16:51 UTC (permalink / raw)
To: Anjali Menon, gregkh; +Cc: oleg.drokin, jinshan.xiong, linux-kernel, devel
On 09/17/2015 11:14 AM, Anjali Menon wrote:
> Removed the else statement along with some unwanted brackets
> to fix the following coding style warning detected by
> checkpatch.
>
> WARNING: else is not generally useful after a break or return
>
> Signed-off-by: Anjali Menon <cse.anjalimenon@gmail.com>
> ---
> drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 16 +++++++---------
> 1 file changed, 7 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
> index ab6cb41..23092fc 100644
> --- a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
> +++ b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
> @@ -836,7 +836,7 @@ int ccc_prep_size(const struct lu_env *env, struct cl_object *obj,
> *exceed = 1;
> }
> return result;
> - } else {
> + }
> /*
> * region is within kms and, hence, within real file
> * size (A). We need to increase i_size to cover the
> @@ -847,14 +847,12 @@ int ccc_prep_size(const struct lu_env *env, struct cl_object *obj,
> * which will always be >= the kms value here.
> * b=11081
> */
> - if (cl_isize_read(inode) < kms) {
> - cl_isize_write_nolock(inode, kms);
> - CDEBUG(D_VFSTRACE,
> - DFID" updating i_size %llu\n",
> - PFID(lu_object_fid(&obj->co_lu)),
> - (__u64)cl_isize_read(inode));
> -
> - }
> + if (cl_isize_read(inode) < kms) {
> + cl_isize_write_nolock(inode, kms);
> + CDEBUG(D_VFSTRACE,
> + DFID" updating i_size %llu\n",
> + PFID(lu_object_fid(&obj->co_lu)),
> + (__u64)cl_isize_read(inode));
> }
> }
> ccc_object_size_unlock(obj);
I think the "else" bracket is needed for when the statement "pos > kms"
is not true, but it might work since there's only two choices tested.
The checkpatch.pl error can bring notices like that, what's important is
the context of the code.
It might be there to increase readability since it is kind of an obvious
situation.
That's just my analysis.
-JA
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] staging: lustre: lustre: lclient: Removed the else statement
2015-09-17 16:14 [PATCH] staging: lustre: lustre: lclient: Removed the else statement Anjali Menon
2015-09-17 16:51 ` Jaime Arrocha
@ 2015-09-19 2:44 ` Greg KH
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-09-19 2:44 UTC (permalink / raw)
To: Anjali Menon; +Cc: oleg.drokin, jinshan.xiong, linux-kernel, devel
On Thu, Sep 17, 2015 at 09:44:41PM +0530, Anjali Menon wrote:
> Removed the else statement along with some unwanted brackets
> to fix the following coding style warning detected by
> checkpatch.
>
> WARNING: else is not generally useful after a break or return
>
> Signed-off-by: Anjali Menon <cse.anjalimenon@gmail.com>
> ---
> drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 16 +++++++---------
> 1 file changed, 7 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
> index ab6cb41..23092fc 100644
> --- a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
> +++ b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c
> @@ -836,7 +836,7 @@ int ccc_prep_size(const struct lu_env *env, struct cl_object *obj,
> *exceed = 1;
> }
> return result;
> - } else {
> + }
> /*
> * region is within kms and, hence, within real file
> * size (A). We need to increase i_size to cover the
This change isn't correct, look at how the code now looks :(
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-19 5:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-17 16:14 [PATCH] staging: lustre: lustre: lclient: Removed the else statement Anjali Menon
2015-09-17 16:51 ` Jaime Arrocha
2015-09-19 2:44 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox