From: nikita Date: Mon, 3 Jul 2006 15:02:56 +0000 (+0000) Subject: fix typo X-Git-Tag: v1_8_0_110~486^2~1486 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=20459932cd40eadc2b0e70a872810cee8da64f1b;p=fs%2Flustre-release.git fix typo --- diff --git a/lustre/lmv/lmv_obd.c b/lustre/lmv/lmv_obd.c index 4d797b3..fa837c7 100644 --- a/lustre/lmv/lmv_obd.c +++ b/lustre/lmv/lmv_obd.c @@ -650,8 +650,8 @@ static int lmv_fids_balanced(struct obd_device *obd) /* returns number of target where new fid should be allocated using passed @hint * as input data for making decision. */ -static int lmv_placment_policy(struct obd_device *obd, - struct lu_placement_hint *hint) +static int lmv_placement_policy(struct obd_device *obd, + struct lu_placement_hint *hint) { struct lmv_obd *lmv = &obd->u.lmv; ENTRY; @@ -719,7 +719,7 @@ static int lmv_fid_alloc(struct obd_export *exp, struct lu_fid *fid, LASSERT(fid != NULL); LASSERT(hint != NULL); - mds = lmv_placment_policy(obd, hint); + mds = lmv_placement_policy(obd, hint); if (mds < 0 || mds >= lmv->desc.ld_tgt_count) { CERROR("can't get target for allocating fid\n"); RETURN(-EINVAL);