summaryrefslogtreecommitdiff
path: root/drivers/staging
diff options
context:
space:
mode:
authorParinay Kondekar <parinay.kondekar@seagate.com>2016-12-03 03:53:26 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-12-06 12:47:55 +0300
commitd6426a64df330b1330f06b342d2c6537d7c6c165 (patch)
treecf4c69abb71451497b59ae3f7266162528900d4f /drivers/staging
parent26c5d2db9cbb058a1604b7e945fbf7322b299fb2 (diff)
downloadlinux-d6426a64df330b1330f06b342d2c6537d7c6c165.tar.xz
staging: lustre: llite: ll_dir_ioctl cleanup of redundant comparisons
In ll_dir_ioctl() two identical comparisions are present for return code (rc) of ll_dir_getstripe(). This patch removes the other inside if( ) condition which is not necessary. Signed-off-by: Parinay Kondekar <parinay.kondekar@seagate.com> Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6512 Reviewed-on: http://review.whamcloud.com/18027 Reviewed-by: Bobi Jam <bobijam@hotmail.com> Reviewed-by: James Simmons <uja.ornl@yahoo.com> Reviewed-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/lustre/lustre/llite/dir.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/staging/lustre/lustre/llite/dir.c b/drivers/staging/lustre/lustre/llite/dir.c
index 7bdcbb46deae..ea5d247a3f70 100644
--- a/drivers/staging/lustre/lustre/llite/dir.c
+++ b/drivers/staging/lustre/lustre/llite/dir.c
@@ -1229,9 +1229,6 @@ lmv_out_free:
/* Get default LMV EA */
if (lum.lum_magic == LMV_USER_MAGIC) {
- if (rc)
- goto finish_req;
-
if (lmmsize > sizeof(*ulmv)) {
rc = -EINVAL;
goto finish_req;