Whamcloud - gitweb
Branch HEAD
authoradilger <adilger>
Tue, 8 Jul 2008 21:05:41 +0000 (21:05 +0000)
committeradilger <adilger>
Tue, 8 Jul 2008 21:05:41 +0000 (21:05 +0000)
Allow mount to continue if an invalid conf_param was specified.
b=14693
i=nathan
i=bowen.zhou

lustre/obdclass/obd_config.c

index 25f9d5a..76c746e 100644 (file)
@@ -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;