diff options
author | Parinay Kondekar <parinay.kondekar@seagate.com> | 2016-12-02 19:53:26 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-12-06 10:47:55 +0100 |
commit | d6426a64df330b1330f06b342d2c6537d7c6c165 (patch) | |
tree | cf4c69abb71451497b59ae3f7266162528900d4f /drivers/staging | |
parent | 26c5d2db9cbb058a1604b7e945fbf7322b299fb2 (diff) | |
download | linux-stable-d6426a64df330b1330f06b342d2c6537d7c6c165.tar.gz linux-stable-d6426a64df330b1330f06b342d2c6537d7c6c165.tar.bz2 linux-stable-d6426a64df330b1330f06b342d2c6537d7c6c165.zip |
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.c | 3 |
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; |