From cf46df18b58de25732351aee4d76f0330983de8c Mon Sep 17 00:00:00 2001 From: bwzhou <bwzhou> Date: Sun, 15 Jun 2008 17:15:52 +0000 Subject: [PATCH] Branch b1_6 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 924c6fb48f..c56aa8feab 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), -- GitLab