struct lustre_mount_data *lmd = sbi->ll_lmd;
char *profile = lmd->lmd_profile, *name = NULL;
struct config_llog_instance cfg;
- int rc, namelen = 0;
+ int rc, namelen = 0, version;
struct llog_ctxt *ctxt;
ENTRY;
OBD_ALLOC(name, namelen);
if (name == NULL)
RETURN(-ENOMEM);
-#if 0
+
if (clean) {
version = sbi->ll_config_version - 1;
sprintf(name, "%s-clean-%d", profile, version);
version = sbi->ll_config_version + 1;
sprintf(name, "%s-%d", profile, version);
}
-#else
- if (clean) {
- sprintf(name, "%s-clean", profile);
- } else {
- sprintf(name, "%s", profile);
- }
-#endif
+
CWARN("Applying configuration log %s\n", name);
ctxt = llog_get_context(&sbi->ll_md_exp->exp_obd->obd_llogs,
LLOG_CONFIG_REPL_CTXT);
rc = class_config_process_llog(ctxt, name, &cfg);
-
+ if (rc == 0)
+ sbi->ll_config_version = version;
CWARN("Finished applying configuration log %s: %d\n", name, rc);
if (rc == 0 && clean == 0) {
struct config_llog_instance cfg;
struct llog_ctxt *ctxt;
char *profile = mds->mds_profile, *name;
- int rc, namelen;
+ int rc, version, namelen;
ENTRY;
if (profile == NULL)
OBD_ALLOC(name, namelen);
if (name == NULL)
RETURN(-ENOMEM);
-#if 0
if (clean) {
version = mds->mds_config_version - 1;
sprintf(name, "%s-clean-%d", profile, version);
version = mds->mds_config_version + 1;
sprintf(name, "%s-%d", profile, version);
}
-#else
- if (clean) {
- sprintf(name, "%s-clean", profile);
- } else {
- sprintf(name, "%s", profile);
- }
-#warning "should add config version finally"
-#endif
CWARN("Applying configuration log %s\n", name);
push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
ctxt = llog_get_context(&obd->obd_llogs, LLOG_CONFIG_ORIG_CTXT);
rc = class_config_process_llog(ctxt, name, &cfg);
pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
-
+ if (rc == 0)
+ mds->mds_config_version = version;
CWARN("Finished applying configuration log %s: %d\n", name, rc);
OBD_FREE(name, namelen);