[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20171206191700.26532-3-luisbg@kernel.org>
Date: Wed, 6 Dec 2017 19:17:00 +0000
From: Luis de Bethencourt <luisbg@...nel.org>
To: linux-kernel@...r.kernel.org
Cc: devel@...verdev.osuosl.org, lustre-devel@...ts.lustre.org,
Lai Siyao <lai.siyao@...el.com>,
Ernestas Kulik <ernestas.kulik@...il.com>,
Aastha Gupta <aastha.gupta4104@...il.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
James Simmons <jsimmons@...radead.org>,
Andreas Dilger <andreas.dilger@...el.com>,
Oleg Drokin <oleg.drokin@...el.com>,
Luis de Bethencourt <luisbg@...nel.org>
Subject: [PATCH 3/3] staging: lustre: llite: Remove redundant else keyword
There is no need to use 'else' if in main branch 'return' is present.
Signed-off-by: Luis de Bethencourt <luisbg@...nel.org>
---
drivers/staging/lustre/lustre/llite/vvp_io.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/lustre/lustre/llite/vvp_io.c b/drivers/staging/lustre/lustre/llite/vvp_io.c
index bfae98e82d6f..e7a4778e02e4 100644
--- a/drivers/staging/lustre/lustre/llite/vvp_io.c
+++ b/drivers/staging/lustre/lustre/llite/vvp_io.c
@@ -699,7 +699,7 @@ static int vvp_io_read_start(const struct lu_env *env,
result = vvp_prep_size(env, obj, io, pos, tot, &exceed);
if (result != 0)
return result;
- else if (exceed != 0)
+ if (exceed != 0)
goto out;
LU_OBJECT_HEADER(D_INODE, env, &obj->co_lu,
--
2.15.1
Powered by blists - more mailing lists