From: adilger Date: Tue, 8 Jul 2008 21:05:41 +0000 (+0000) Subject: Branch HEAD X-Git-Tag: v1_9_50~236 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=c88a0195762cabaf7bdb15004e5cc48a3ace5cda;p=fs%2Flustre-release.git Branch HEAD Allow mount to continue if an invalid conf_param was specified. b=14693 i=nathan i=bowen.zhou --- diff --git a/lustre/obdclass/obd_config.c b/lustre/obdclass/obd_config.c index 25f9d5a..76c746e 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;