From: yury Date: Fri, 1 Sep 2006 06:05:32 +0000 (+0000) Subject: - make seq clients name coherent with server's. X-Git-Tag: v1_8_0_110~486^2~1043 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=95eed01b278ee3618b5b93ccea1c42de8c55f811;p=fs%2Flustre-release.git - make seq clients name coherent with server's. --- diff --git a/lustre/mdc/mdc_request.c b/lustre/mdc/mdc_request.c index e09d078..7eeb499 100644 --- a/lustre/mdc/mdc_request.c +++ b/lustre/mdc/mdc_request.c @@ -1130,8 +1130,9 @@ static int mdc_fid_init(struct obd_export *exp) if (uuid == NULL) GOTO(out_free_seq, rc = -ENOMEM); - snprintf(uuid, MAX_OBD_NAME + 5, "mgr-%s", - exp->exp_obd->obd_name); + snprintf(uuid, MAX_OBD_NAME + 5, "srv-%s", + exp->exp_obd->obd_name); + /* init client side sequence-manager */ rc = seq_client_init(cli->cl_seq, uuid, exp, LUSTRE_SEQ_METADATA);