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

Branch b1_6

Don't even try to connect to the MGC if we are passed an old-style profile.
b=11691
i=nathan
parent 6f97b637
No related branches found
No related tags found
No related merge requests found
......@@ -908,7 +908,10 @@ int ll_fill_super(struct super_block *sb)
cfg.cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid;
/* set up client obds */
err = lustre_process_log(sb, profilenm, &cfg);
if (strchr(profilenm, '/') != NULL) /* COMPAT_146 */
err = -EINVAL; /* skip error messages, use old config code */
else
err = lustre_process_log(sb, profilenm, &cfg);
/* COMPAT_146 */
if (err < 0) {
char *oldname;
......
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