summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2015-07-31 16:32:43 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-31 16:03:50 -0700
commit208bf77049a95cd023c8e884a28449a9182f1c1a (patch)
tree106d29663e71c32f0ecc5eb4841ccb6c9342201b /drivers/staging/lustre
parente56e17ea935a66fe3a6cd2445649a0d9365a8449 (diff)
downloadop-kernel-dev-208bf77049a95cd023c8e884a28449a9182f1c1a.zip
op-kernel-dev-208bf77049a95cd023c8e884a28449a9182f1c1a.tar.gz
staging: lustre: drop redundant check
There is no need to verify that its an error, as we are anyway going to match the error value to -ENOENT. Drop the redundant check. Reported-by: "Kirill A. Shutemov" <kirill@shutemov.name> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre')
-rw-r--r--drivers/staging/lustre/lustre/obdclass/lu_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/obdclass/lu_object.c b/drivers/staging/lustre/lustre/obdclass/lu_object.c
index 4d9b633..9469a25 100644
--- a/drivers/staging/lustre/lustre/obdclass/lu_object.c
+++ b/drivers/staging/lustre/lustre/obdclass/lu_object.c
@@ -674,7 +674,7 @@ static struct lu_object *lu_object_find_try(const struct lu_env *env,
cfs_hash_bd_lock(hs, &bd, 1);
shadow = htable_lookup(s, &bd, f, waiter, &version);
- if (likely(IS_ERR(shadow) && PTR_ERR(shadow) == -ENOENT)) {
+ if (likely(PTR_ERR(shadow) == -ENOENT)) {
struct lu_site_bkt_data *bkt;
bkt = cfs_hash_bd_extra_get(hs, &bd);
OpenPOWER on IntegriCloud