From c88a0195762cabaf7bdb15004e5cc48a3ace5cda Mon Sep 17 00:00:00 2001
From: adilger <adilger>
Date: Tue, 8 Jul 2008 21:05:41 +0000
Subject: [PATCH] Branch HEAD Allow mount to continue if an invalid conf_param
 was specified. b=14693 i=nathan i=bowen.zhou

---
 lustre/obdclass/obd_config.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lustre/obdclass/obd_config.c b/lustre/obdclass/obd_config.c
index 25f9d5a854..76c746ea94 100644
--- a/lustre/obdclass/obd_config.c
+++ b/lustre/obdclass/obd_config.c
@@ -848,8 +848,7 @@ int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars,
                 sval = strchr(key, '=');
                 if (!sval || (*(sval + 1) == 0)) {
                         CERROR("Can't parse param %s\n", key);
-                        rc = -EINVAL;
-                        /* continue parsing other params */
+                        /* rc = -EINVAL; continue parsing other params */
                         continue;
                 }
                 keylen = sval - key;
-- 
GitLab