Skip to content
Snippets Groups Projects
Commit c88a0195 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Branch HEAD

Allow mount to continue if an invalid conf_param was specified.
b=14693
i=nathan
i=bowen.zhou
parent f332c588
No related branches found
No related tags found
No related merge requests found
...@@ -848,8 +848,7 @@ int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars, ...@@ -848,8 +848,7 @@ int class_process_proc_param(char *prefix, struct lprocfs_vars *lvars,
sval = strchr(key, '='); sval = strchr(key, '=');
if (!sval || (*(sval + 1) == 0)) { if (!sval || (*(sval + 1) == 0)) {
CERROR("Can't parse param %s\n", key); CERROR("Can't parse param %s\n", key);
rc = -EINVAL; /* rc = -EINVAL; continue parsing other params */
/* continue parsing other params */
continue; continue;
} }
keylen = sval - key; keylen = sval - key;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment