From 95eed01b278ee3618b5b93ccea1c42de8c55f811 Mon Sep 17 00:00:00 2001 From: yury Date: Fri, 1 Sep 2006 06:05:32 +0000 Subject: [PATCH] - make seq clients name coherent with server's. --- lustre/mdc/mdc_request.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); -- 1.8.3.1