summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Mannthey <keith.mannthey@intel.com>2013-07-22 16:06:47 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-23 20:35:50 (GMT)
commita55e0f44cf360a2f466b4599ec107fae4bafae64 (patch)
tree8a92b6568ec60d25a2ea8e1436b0f7c1a1706a07
parentc6c9f60d9d537e9c05c8667f60eac88be269343a (diff)
downloadlinux-fsl-qoriq-a55e0f44cf360a2f466b4599ec107fae4bafae64.tar.xz
staging/lustre/osc: Check return code for lu_kmem_init
lu_kmem_init can fail and returns has a return code. Check for this return code in lu_kmem_init. This issue was found during 2gb VM Racer testing Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-3063 Lustre-change: http://review.whamcloud.com/6514 Signed-off-by: Keith Mannthey <keith.mannthey@intel.com> Reviewed-by: Mike Pershin <mike.pershin@intel.com> Reviewed-by: Nathaniel Clark <nathaniel.l.clark@intel.com> Reviewed-by: Bob Glossman <bob.glossman@intel.com> Reviewed-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Peng Tao <tao.peng@emc.com> Signed-off-by: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/lustre/lustre/osc/osc_request.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/lustre/lustre/osc/osc_request.c b/drivers/staging/lustre/lustre/osc/osc_request.c
index 0c0e07b..fea04ca 100644
--- a/drivers/staging/lustre/lustre/osc/osc_request.c
+++ b/drivers/staging/lustre/lustre/osc/osc_request.c
@@ -3681,6 +3681,8 @@ int __init osc_init(void)
CDEBUG(D_INFO, "Lustre OSC module (%p).\n", &osc_caches);
rc = lu_kmem_init(osc_caches);
+ if (rc)
+ RETURN(rc);
lprocfs_osc_init_vars(&lvars);