From: yury Date: Thu, 15 Jun 2006 07:18:00 +0000 (+0000) Subject: - changes in sec-mgr X-Git-Tag: v1_8_0_110~486^2~1634 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=cf7412e66635390160ccbe4051f3516a6f1740c9;p=fs%2Flustre-release.git - changes in sec-mgr --- diff --git a/lustre/fid/fid_handler.c b/lustre/fid/fid_handler.c index 25d8f5e..9b83f07 100644 --- a/lustre/fid/fid_handler.c +++ b/lustre/fid/fid_handler.c @@ -49,9 +49,9 @@ /* client seq mgr interface */ static int -seq_client_alloc_common(struct lu_client_seq *seq, - struct lu_range *range, - __u32 opc) +seq_client_rpc(struct lu_client_seq *seq, + struct lu_range *range, + __u32 opc) { int repsize = sizeof(struct lu_range); int rc, reqsize = sizeof(__u32); @@ -97,8 +97,8 @@ seq_client_alloc_super(struct lu_client_seq *seq) ENTRY; LASSERT(seq->seq_flags & LUSTRE_CLI_SEQ_SERVER); - rc = seq_client_alloc_common(seq, &seq->seq_cl_range, - SEQ_ALLOC_SUPER); + rc = seq_client_rpc(seq, &seq->seq_cl_range, + SEQ_ALLOC_SUPER); if (rc == 0) { CDEBUG(D_INFO, "SEQ-MGR(cli): allocated super-sequence " "["LPX64"-"LPX64"]\n", seq->seq_cl_range.lr_start, @@ -116,8 +116,8 @@ seq_client_alloc_meta(struct lu_client_seq *seq) ENTRY; LASSERT(seq->seq_flags & LUSTRE_CLI_SEQ_CLIENT); - rc = seq_client_alloc_common(seq, &seq->seq_cl_range, - SEQ_ALLOC_META); + rc = seq_client_rpc(seq, &seq->seq_cl_range, + SEQ_ALLOC_META); if (rc == 0) { CDEBUG(D_INFO, "SEQ-MGR(cli): allocated meta-sequence " "["LPX64"-"LPX64"]\n", seq->seq_cl_range.lr_start,