From: Shaun Tancheff Date: Thu, 13 Jun 2019 22:51:38 +0000 (-0500) Subject: LU-12436 lov: return error if cl_env_get fails X-Git-Tag: 2.12.56~102 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=a7997c836bbfe2a0674007f1c23b9593e596e0ba;ds=inline LU-12436 lov: return error if cl_env_get fails When cl_env_get() fails with an error return the error. Test-Parameters: trivial Cray-bug-id: LUS-7310 Signed-off-by: Shaun Tancheff Change-Id: Ia065aeb142a772f4d620b84111af423e27c06b90 Reviewed-on: https://review.whamcloud.com/35229 Reviewed-by: Andreas Dilger Tested-by: Jenkins Tested-by: Maloo Reviewed-by: James Simmons Reviewed-by: Oleg Drokin --- diff --git a/lustre/lov/lov_io.c b/lustre/lov/lov_io.c index 5ec45bd..095fdb6 100644 --- a/lustre/lov/lov_io.c +++ b/lustre/lov/lov_io.c @@ -122,8 +122,10 @@ static int lov_io_sub_init(const struct lu_env *env, struct lov_io *lio, /* obtain new environment */ sub->sub_env = cl_env_get(&sub->sub_refcheck); - if (IS_ERR(sub->sub_env)) + if (IS_ERR(sub->sub_env)) { result = PTR_ERR(sub->sub_env); + RETURN(result); + } sub_obj = lovsub2cl(lov_r0(lov, index)->lo_sub[stripe]); sub_io = &sub->sub_io;