From d5e4c34e2c74115d750914864d3cbd15581c8870 Mon Sep 17 00:00:00 2001 From: bwzhou Date: Fri, 27 Jun 2008 16:49:30 +0000 Subject: [PATCH] Branch HEAD 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 b2a15f0..fbfb086 100644 --- a/lustre/obdclass/obd_config.c +++ b/lustre/obdclass/obd_config.c @@ -892,8 +892,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