From 555a5ad8930155e801d90d3f1b30cf61f1d2aa96 Mon Sep 17 00:00:00 2001 From: bwzhou Date: Sun, 15 Jun 2008 17:16:53 +0000 Subject: [PATCH] Branch b1_8 b=14693 r=nathan Don't return an error for conf_param processing failures --- 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 924c6fb..c56aa8f 100644 --- a/lustre/obdclass/obd_config.c +++ b/lustre/obdclass/obd_config.c @@ -908,8 +908,7 @@ int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars, if (!matched) { CERROR("%s: unknown param %s\n", (char *)lustre_cfg_string(lcfg, 0), key); - rc = -EINVAL; - /* continue parsing other params */ + /* rc = -EINVAL; continue parsing other params */ } else { LCONSOLE_INFO("%s.%.*s: set parameter %.*s=%s\n", (char *)lustre_cfg_string(lcfg, 0), -- 1.8.3.1