4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License version 2 for more details. A copy is
14 * included in the COPYING file that accompanied this code.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved
24 * Use is subject to license terms.
26 * Copyright (c) 2012, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * lustre/lod/lod_qos.c
34 * Implementation of different allocation algorithm used
35 * to distribute objects and data among OSTs.
38 #define DEBUG_SUBSYSTEM S_LOV
40 #include <asm/div64.h>
41 #include <libcfs/libcfs.h>
42 #include <uapi/linux/lustre/lustre_idl.h>
43 #include <lustre_swab.h>
44 #include <obd_class.h>
46 #include "lod_internal.h"
49 * force QoS policy (not RR) to be used for testing purposes
55 #define QOS_DEBUG(fmt, ...) CDEBUG(D_QOS, fmt, ## __VA_ARGS__)
56 #define QOS_CONSOLE(fmt, ...) LCONSOLE(D_QOS, fmt, ## __VA_ARGS__)
58 #define TGT_BAVAIL(i) (OST_TGT(lod,i)->ltd_statfs.os_bavail * \
59 OST_TGT(lod,i)->ltd_statfs.os_bsize)
62 * Add a new target to Quality of Service (QoS) target table.
64 * Add a new OST target to the structure representing an OSS. Resort the list
65 * of known OSSs by the number of OSTs attached to each OSS. The OSS list is
66 * protected internally and no external locking is required.
68 * \param[in] lod LOD device
69 * \param[in] ost_desc OST description
71 * \retval 0 on success
72 * \retval -ENOMEM on error
74 int qos_add_tgt(struct lod_device *lod, struct lod_tgt_desc *ost_desc)
76 struct lod_qos_oss *oss = NULL, *temposs;
77 struct obd_export *exp = ost_desc->ltd_exp;
78 int rc = 0, found = 0;
79 struct list_head *list;
83 down_write(&lod->lod_qos.lq_rw_sem);
85 * a bit hacky approach to learn NID of corresponding connection
86 * but there is no official API to access information like this
89 list_for_each_entry(oss, &lod->lod_qos.lq_oss_list, lqo_oss_list) {
90 if (obd_uuid_equals(&oss->lqo_uuid,
91 &exp->exp_connection->c_remote_uuid)) {
102 GOTO(out, rc = -ENOMEM);
103 memcpy(&oss->lqo_uuid, &exp->exp_connection->c_remote_uuid,
104 sizeof(oss->lqo_uuid));
108 /* Assume we have to move this one */
109 list_del(&oss->lqo_oss_list);
112 oss->lqo_ost_count++;
113 ost_desc->ltd_qos.ltq_oss = oss;
115 CDEBUG(D_QOS, "add tgt %s to OSS %s (%d OSTs)\n",
116 obd_uuid2str(&ost_desc->ltd_uuid), obd_uuid2str(&oss->lqo_uuid),
119 /* Add sorted by # of OSTs. Find the first entry that we're
121 list = &lod->lod_qos.lq_oss_list;
122 list_for_each_entry(temposs, list, lqo_oss_list) {
123 if (oss->lqo_ost_count > temposs->lqo_ost_count)
126 /* ...and add before it. If we're the first or smallest, temposs
127 points to the list head, and we add to the end. */
128 list_add_tail(&oss->lqo_oss_list, &temposs->lqo_oss_list);
130 lod->lod_qos.lq_dirty = 1;
131 lod->lod_qos.lq_rr.lqr_dirty = 1;
134 up_write(&lod->lod_qos.lq_rw_sem);
139 * Remove OST target from QoS table.
141 * Removes given OST target from QoS table and releases related OSS structure
142 * if no OSTs remain on the OSS.
144 * \param[in] lod LOD device
145 * \param[in] ost_desc OST description
147 * \retval 0 on success
148 * \retval -ENOENT if no OSS was found
150 int qos_del_tgt(struct lod_device *lod, struct lod_tgt_desc *ost_desc)
152 struct lod_qos_oss *oss;
156 down_write(&lod->lod_qos.lq_rw_sem);
157 oss = ost_desc->ltd_qos.ltq_oss;
159 GOTO(out, rc = -ENOENT);
161 oss->lqo_ost_count--;
162 if (oss->lqo_ost_count == 0) {
163 CDEBUG(D_QOS, "removing OSS %s\n",
164 obd_uuid2str(&oss->lqo_uuid));
165 list_del(&oss->lqo_oss_list);
166 ost_desc->ltd_qos.ltq_oss = NULL;
170 lod->lod_qos.lq_dirty = 1;
171 lod->lod_qos.lq_rr.lqr_dirty = 1;
173 up_write(&lod->lod_qos.lq_rw_sem);
178 * Check whether the target is available for new OST objects.
180 * Request statfs data from the given target and verify it's active and not
181 * read-only. If so, then it can be used to place new OST objects. This
182 * function also maintains the number of active/inactive targets and sets
183 * dirty flags if those numbers change so others can run re-balance procedures.
184 * No external locking is required.
186 * \param[in] env execution environment for this thread
187 * \param[in] d LOD device
188 * \param[in] index index of OST target to check
189 * \param[out] sfs buffer for statfs data
191 * \retval 0 if the target is good
192 * \retval negative negated errno on error
195 static int lod_statfs_and_check(const struct lu_env *env, struct lod_device *d,
196 int index, struct obd_statfs *sfs)
198 struct lod_tgt_desc *ost;
203 ost = OST_TGT(d,index);
206 rc = dt_statfs(env, ost->ltd_ost, sfs);
208 if (rc == 0 && ((sfs->os_state & OS_STATE_ENOSPC) ||
209 (sfs->os_state & OS_STATE_ENOINO && sfs->os_fprecreated == 0)))
212 if (rc && rc != -ENOTCONN)
213 CERROR("%s: statfs: rc = %d\n", lod2obd(d)->obd_name, rc);
215 /* If the OST is readonly then we can't allocate objects there */
216 if (sfs->os_state & OS_STATE_READONLY)
219 /* object precreation is skipped on the OST with max_create_count=0 */
220 if (sfs->os_state & OS_STATE_NOPRECREATE)
223 /* check whether device has changed state (active, inactive) */
224 if (rc != 0 && ost->ltd_active) {
225 /* turned inactive? */
226 spin_lock(&d->lod_lock);
227 if (ost->ltd_active) {
230 ost->ltd_connecting = 1;
232 LASSERT(d->lod_desc.ld_active_tgt_count > 0);
233 d->lod_desc.ld_active_tgt_count--;
234 d->lod_qos.lq_dirty = 1;
235 d->lod_qos.lq_rr.lqr_dirty = 1;
236 CDEBUG(D_CONFIG, "%s: turns inactive\n",
237 ost->ltd_exp->exp_obd->obd_name);
239 spin_unlock(&d->lod_lock);
240 } else if (rc == 0 && ost->ltd_active == 0) {
242 LASSERTF(d->lod_desc.ld_active_tgt_count < d->lod_ostnr,
243 "active tgt count %d, ost nr %d\n",
244 d->lod_desc.ld_active_tgt_count, d->lod_ostnr);
245 spin_lock(&d->lod_lock);
246 if (ost->ltd_active == 0) {
248 ost->ltd_connecting = 0;
249 d->lod_desc.ld_active_tgt_count++;
250 d->lod_qos.lq_dirty = 1;
251 d->lod_qos.lq_rr.lqr_dirty = 1;
252 CDEBUG(D_CONFIG, "%s: turns active\n",
253 ost->ltd_exp->exp_obd->obd_name);
255 spin_unlock(&d->lod_lock);
262 * Maintain per-target statfs data.
264 * The function refreshes statfs data for all the targets every N seconds.
265 * The actual N is controlled via procfs and set to LOV_DESC_QOS_MAXAGE_DEFAULT
268 * \param[in] env execution environment for this thread
269 * \param[in] lod LOD device
271 void lod_qos_statfs_update(const struct lu_env *env, struct lod_device *lod)
273 struct obd_device *obd = lod2obd(lod);
274 struct ost_pool *osts = &(lod->lod_pool_info);
281 max_age = ktime_get_seconds() - 2 * lod->lod_desc.ld_qos_maxage;
283 if (obd->obd_osfs_age > max_age)
284 /* statfs data are quite recent, don't need to refresh it */
287 down_write(&lod->lod_qos.lq_rw_sem);
289 if (obd->obd_osfs_age > max_age)
292 for (i = 0; i < osts->op_count; i++) {
293 idx = osts->op_array[i];
294 avail = OST_TGT(lod,idx)->ltd_statfs.os_bavail;
295 if (lod_statfs_and_check(env, lod, idx,
296 &OST_TGT(lod, idx)->ltd_statfs))
298 if (OST_TGT(lod,idx)->ltd_statfs.os_bavail != avail)
299 /* recalculate weigths */
300 lod->lod_qos.lq_dirty = 1;
302 obd->obd_osfs_age = ktime_get_seconds();
305 up_write(&lod->lod_qos.lq_rw_sem);
310 * Calculate per-OST and per-OSS penalties
312 * Re-calculate penalties when the configuration changes, active targets
313 * change and after statfs refresh (all these are reflected by lq_dirty flag).
314 * On every OST and OSS: decay the penalty by half for every 8x the update
315 * interval that the device has been idle. That gives lots of time for the
316 * statfs information to be updated (which the penalty is only a proxy for),
317 * and avoids penalizing OSS/OSTs under light load.
318 * See lod_qos_calc_weight() for how penalties are factored into the weight.
320 * \param[in] lod LOD device
322 * \retval 0 on success
323 * \retval -EAGAIN the number of OSTs isn't enough
325 static int lod_qos_calc_ppo(struct lod_device *lod)
327 struct lod_qos_oss *oss;
328 __u64 ba_max, ba_min, temp;
335 if (!lod->lod_qos.lq_dirty)
338 num_active = lod->lod_desc.ld_active_tgt_count - 1;
340 GOTO(out, rc = -EAGAIN);
342 /* find bavail on each OSS */
343 list_for_each_entry(oss, &lod->lod_qos.lq_oss_list, lqo_oss_list)
345 lod->lod_qos.lq_active_oss_count = 0;
348 * How badly user wants to select OSTs "widely" (not recently chosen
349 * and not on recent OSS's). As opposed to "freely" (free space
352 prio_wide = 256 - lod->lod_qos.lq_prio_free;
354 ba_min = (__u64)(-1);
356 now = ktime_get_real_seconds();
357 /* Calculate OST penalty per object
358 * (lod ref taken in lod_qos_prep_create())
360 cfs_foreach_bit(lod->lod_ost_bitmap, i) {
361 LASSERT(OST_TGT(lod,i));
362 temp = TGT_BAVAIL(i);
365 ba_min = min(temp, ba_min);
366 ba_max = max(temp, ba_max);
368 /* Count the number of usable OSS's */
369 if (OST_TGT(lod,i)->ltd_qos.ltq_oss->lqo_bavail == 0)
370 lod->lod_qos.lq_active_oss_count++;
371 OST_TGT(lod,i)->ltd_qos.ltq_oss->lqo_bavail += temp;
373 /* per-OST penalty is prio * TGT_bavail / (num_ost - 1) / 2 */
375 do_div(temp, num_active);
376 OST_TGT(lod,i)->ltd_qos.ltq_penalty_per_obj =
377 (temp * prio_wide) >> 8;
379 age = (now - OST_TGT(lod,i)->ltd_qos.ltq_used) >> 3;
380 if (lod->lod_qos.lq_reset ||
381 age > 32 * lod->lod_desc.ld_qos_maxage)
382 OST_TGT(lod,i)->ltd_qos.ltq_penalty = 0;
383 else if (age > lod->lod_desc.ld_qos_maxage)
384 /* Decay OST penalty. */
385 OST_TGT(lod,i)->ltd_qos.ltq_penalty >>=
386 (age / lod->lod_desc.ld_qos_maxage);
389 num_active = lod->lod_qos.lq_active_oss_count - 1;
390 if (num_active < 1) {
391 /* If there's only 1 OSS, we can't penalize it, so instead
392 we have to double the OST penalty */
394 cfs_foreach_bit(lod->lod_ost_bitmap, i)
395 OST_TGT(lod,i)->ltd_qos.ltq_penalty_per_obj <<= 1;
398 /* Per-OSS penalty is prio * oss_avail / oss_osts / (num_oss - 1) / 2 */
399 list_for_each_entry(oss, &lod->lod_qos.lq_oss_list, lqo_oss_list) {
400 temp = oss->lqo_bavail >> 1;
401 do_div(temp, oss->lqo_ost_count * num_active);
402 oss->lqo_penalty_per_obj = (temp * prio_wide) >> 8;
404 age = (now - oss->lqo_used) >> 3;
405 if (lod->lod_qos.lq_reset ||
406 age > 32 * lod->lod_desc.ld_qos_maxage)
407 oss->lqo_penalty = 0;
408 else if (age > lod->lod_desc.ld_qos_maxage)
409 /* Decay OSS penalty. */
410 oss->lqo_penalty >>= age / lod->lod_desc.ld_qos_maxage;
413 lod->lod_qos.lq_dirty = 0;
414 lod->lod_qos.lq_reset = 0;
416 /* If each ost has almost same free space,
417 * do rr allocation for better creation performance */
418 lod->lod_qos.lq_same_space = 0;
419 if ((ba_max * (256 - lod->lod_qos.lq_threshold_rr)) >> 8 < ba_min) {
420 lod->lod_qos.lq_same_space = 1;
421 /* Reset weights for the next time we enter qos mode */
422 lod->lod_qos.lq_reset = 1;
428 if (!rc && lod->lod_qos.lq_same_space)
435 * Calculate weight for a given OST target.
437 * The final OST weight is the number of bytes available minus the OST and
438 * OSS penalties. See lod_qos_calc_ppo() for how penalties are calculated.
440 * \param[in] lod LOD device, where OST targets are listed
441 * \param[in] i OST target index
445 static int lod_qos_calc_weight(struct lod_device *lod, int i)
449 temp = TGT_BAVAIL(i);
450 temp2 = OST_TGT(lod,i)->ltd_qos.ltq_penalty +
451 OST_TGT(lod,i)->ltd_qos.ltq_oss->lqo_penalty;
453 OST_TGT(lod,i)->ltd_qos.ltq_weight = 0;
455 OST_TGT(lod,i)->ltd_qos.ltq_weight = temp - temp2;
460 * Re-calculate weights.
462 * The function is called when some OST target was used for a new object. In
463 * this case we should re-calculate all the weights to keep new allocations
466 * \param[in] lod LOD device
467 * \param[in] osts OST pool where a new object was placed
468 * \param[in] index OST target where a new object was placed
469 * \param[out] total_wt new total weight for the pool
473 static int lod_qos_used(struct lod_device *lod, struct ost_pool *osts,
474 __u32 index, __u64 *total_wt)
476 struct lod_tgt_desc *ost;
477 struct lod_qos_oss *oss;
481 ost = OST_TGT(lod,index);
484 /* Don't allocate on this devuce anymore, until the next alloc_qos */
485 ost->ltd_qos.ltq_usable = 0;
487 oss = ost->ltd_qos.ltq_oss;
489 /* Decay old penalty by half (we're adding max penalty, and don't
490 want it to run away.) */
491 ost->ltd_qos.ltq_penalty >>= 1;
492 oss->lqo_penalty >>= 1;
494 /* mark the OSS and OST as recently used */
495 ost->ltd_qos.ltq_used = oss->lqo_used = ktime_get_real_seconds();
497 /* Set max penalties for this OST and OSS */
498 ost->ltd_qos.ltq_penalty +=
499 ost->ltd_qos.ltq_penalty_per_obj * lod->lod_ostnr;
500 oss->lqo_penalty += oss->lqo_penalty_per_obj *
501 lod->lod_qos.lq_active_oss_count;
503 /* Decrease all OSS penalties */
504 list_for_each_entry(oss, &lod->lod_qos.lq_oss_list, lqo_oss_list) {
505 if (oss->lqo_penalty < oss->lqo_penalty_per_obj)
506 oss->lqo_penalty = 0;
508 oss->lqo_penalty -= oss->lqo_penalty_per_obj;
512 /* Decrease all OST penalties */
513 for (j = 0; j < osts->op_count; j++) {
516 i = osts->op_array[j];
517 if (!cfs_bitmap_check(lod->lod_ost_bitmap, i))
520 ost = OST_TGT(lod,i);
523 if (ost->ltd_qos.ltq_penalty <
524 ost->ltd_qos.ltq_penalty_per_obj)
525 ost->ltd_qos.ltq_penalty = 0;
527 ost->ltd_qos.ltq_penalty -=
528 ost->ltd_qos.ltq_penalty_per_obj;
530 lod_qos_calc_weight(lod, i);
532 /* Recalc the total weight of usable osts */
533 if (ost->ltd_qos.ltq_usable)
534 *total_wt += ost->ltd_qos.ltq_weight;
536 QOS_DEBUG("recalc tgt %d usable=%d avail=%llu"
537 " ostppo=%llu ostp=%llu ossppo=%llu"
538 " ossp=%llu wt=%llu\n",
539 i, ost->ltd_qos.ltq_usable, TGT_BAVAIL(i) >> 10,
540 ost->ltd_qos.ltq_penalty_per_obj >> 10,
541 ost->ltd_qos.ltq_penalty >> 10,
542 ost->ltd_qos.ltq_oss->lqo_penalty_per_obj >> 10,
543 ost->ltd_qos.ltq_oss->lqo_penalty >> 10,
544 ost->ltd_qos.ltq_weight >> 10);
550 void lod_qos_rr_init(struct lod_qos_rr *lqr)
552 spin_lock_init(&lqr->lqr_alloc);
557 #define LOV_QOS_EMPTY ((__u32)-1)
560 * Calculate optimal round-robin order with regard to OSSes.
562 * Place all the OSTs from pool \a src_pool in a special array to be used for
563 * round-robin (RR) stripe allocation. The placement algorithm interleaves
564 * OSTs from the different OSSs so that RR allocation can balance OSSs evenly.
565 * Resorts the targets when the number of active targets changes (because of
566 * a new target or activation/deactivation).
568 * \param[in] lod LOD device
569 * \param[in] src_pool OST pool
570 * \param[in] lqr round-robin list
572 * \retval 0 on success
573 * \retval -ENOMEM fails to allocate the array
575 static int lod_qos_calc_rr(struct lod_device *lod, struct ost_pool *src_pool,
576 struct lod_qos_rr *lqr)
578 struct lod_qos_oss *oss;
579 struct lod_tgt_desc *ost;
580 unsigned placed, real_count;
585 if (!lqr->lqr_dirty) {
586 LASSERT(lqr->lqr_pool.op_size);
590 /* Do actual allocation. */
591 down_write(&lod->lod_qos.lq_rw_sem);
594 * Check again. While we were sleeping on @lq_rw_sem something could
597 if (!lqr->lqr_dirty) {
598 LASSERT(lqr->lqr_pool.op_size);
599 up_write(&lod->lod_qos.lq_rw_sem);
603 real_count = src_pool->op_count;
605 /* Zero the pool array */
606 /* alloc_rr is holding a read lock on the pool, so nobody is adding/
607 deleting from the pool. The lq_rw_sem insures that nobody else
609 lqr->lqr_pool.op_count = real_count;
610 rc = lod_ost_pool_extend(&lqr->lqr_pool, real_count);
612 up_write(&lod->lod_qos.lq_rw_sem);
615 for (i = 0; i < lqr->lqr_pool.op_count; i++)
616 lqr->lqr_pool.op_array[i] = LOV_QOS_EMPTY;
618 /* Place all the OSTs from 1 OSS at the same time. */
620 list_for_each_entry(oss, &lod->lod_qos.lq_oss_list, lqo_oss_list) {
623 for (i = 0; i < lqr->lqr_pool.op_count; i++) {
626 if (!cfs_bitmap_check(lod->lod_ost_bitmap,
627 src_pool->op_array[i]))
630 ost = OST_TGT(lod,src_pool->op_array[i]);
631 LASSERT(ost && ost->ltd_ost);
632 if (ost->ltd_qos.ltq_oss != oss)
635 /* Evenly space these OSTs across arrayspace */
636 next = j * lqr->lqr_pool.op_count / oss->lqo_ost_count;
637 while (lqr->lqr_pool.op_array[next] != LOV_QOS_EMPTY)
638 next = (next + 1) % lqr->lqr_pool.op_count;
640 lqr->lqr_pool.op_array[next] = src_pool->op_array[i];
647 up_write(&lod->lod_qos.lq_rw_sem);
649 if (placed != real_count) {
650 /* This should never happen */
651 LCONSOLE_ERROR_MSG(0x14e, "Failed to place all OSTs in the "
652 "round-robin list (%d of %d).\n",
654 for (i = 0; i < lqr->lqr_pool.op_count; i++) {
655 LCONSOLE(D_WARNING, "rr #%d ost idx=%d\n", i,
656 lqr->lqr_pool.op_array[i]);
663 for (i = 0; i < lqr->lqr_pool.op_count; i++)
664 QOS_CONSOLE("rr #%d ost idx=%d\n", i, lqr->lqr_pool.op_array[i]);
671 * Instantiate and declare creation of a new object.
673 * The function instantiates LU representation for a new object on the
674 * specified device. Also it declares an intention to create that
675 * object on the storage target.
677 * Note lu_object_anon() is used which is a trick with regard to LU/OSD
678 * infrastructure - in the existing precreation framework we can't assign FID
679 * at this moment, we do this later once a transaction is started. So the
680 * special method instantiates FID-less object in the cache and later it
681 * will get a FID and proper placement in LU cache.
683 * \param[in] env execution environment for this thread
684 * \param[in] d LOD device
685 * \param[in] ost_idx OST target index where the object is being created
686 * \param[in] th transaction handle
688 * \retval object ptr on success, ERR_PTR() otherwise
690 static struct dt_object *lod_qos_declare_object_on(const struct lu_env *env,
691 struct lod_device *d,
695 struct lod_tgt_desc *ost;
696 struct lu_object *o, *n;
697 struct lu_device *nd;
698 struct dt_object *dt;
703 LASSERT(ost_idx < d->lod_osts_size);
704 ost = OST_TGT(d,ost_idx);
706 LASSERT(ost->ltd_ost);
708 nd = &ost->ltd_ost->dd_lu_dev;
711 * allocate anonymous object with zero fid, real fid
712 * will be assigned by OSP within transaction
713 * XXX: to be fixed with fully-functional OST fids
715 o = lu_object_anon(env, nd, NULL);
717 GOTO(out, dt = ERR_PTR(PTR_ERR(o)));
719 n = lu_object_locate(o->lo_header, nd->ld_type);
720 if (unlikely(n == NULL)) {
721 CERROR("can't find slice\n");
722 lu_object_put(env, o);
723 GOTO(out, dt = ERR_PTR(-EINVAL));
726 dt = container_of(n, struct dt_object, do_lu);
728 rc = lod_sub_declare_create(env, dt, NULL, NULL, NULL, th);
730 CDEBUG(D_OTHER, "can't declare creation on #%u: %d\n",
732 lu_object_put(env, o);
741 * Calculate a minimum acceptable stripe count.
743 * Return an acceptable stripe count depending on flag LOV_USES_DEFAULT_STRIPE:
744 * all stripes or 3/4 of stripes.
746 * \param[in] stripe_count number of stripes requested
747 * \param[in] flags 0 or LOV_USES_DEFAULT_STRIPE
749 * \retval acceptable stripecount
751 static int min_stripe_count(__u32 stripe_count, int flags)
753 return (flags & LOV_USES_DEFAULT_STRIPE ?
754 stripe_count - (stripe_count / 4) : stripe_count);
757 #define LOV_CREATE_RESEED_MULT 30
758 #define LOV_CREATE_RESEED_MIN 2000
761 * Initialize temporary OST-in-use array.
763 * Allocate or extend the array used to mark targets already assigned to a new
764 * striping so they are not used more than once.
766 * \param[in] env execution environment for this thread
767 * \param[in] stripes number of items needed in the array
769 * \retval 0 on success
770 * \retval -ENOMEM on error
772 static inline int lod_qos_ost_in_use_clear(const struct lu_env *env,
775 struct lod_thread_info *info = lod_env_info(env);
777 if (info->lti_ea_store_size < sizeof(int) * stripes)
778 lod_ea_store_resize(info, stripes * sizeof(int));
779 if (info->lti_ea_store_size < sizeof(int) * stripes) {
780 CERROR("can't allocate memory for ost-in-use array\n");
783 memset(info->lti_ea_store, -1, sizeof(int) * stripes);
788 * Remember a target in the array of used targets.
790 * Mark the given target as used for a new striping being created. The status
791 * of an OST in a striping can be checked with lod_qos_is_ost_used().
793 * \param[in] env execution environment for this thread
794 * \param[in] idx index in the array
795 * \param[in] ost OST target index to mark as used
797 static inline void lod_qos_ost_in_use(const struct lu_env *env,
800 struct lod_thread_info *info = lod_env_info(env);
801 int *osts = info->lti_ea_store;
803 LASSERT(info->lti_ea_store_size >= idx * sizeof(int));
808 * Check is OST used in a striping.
810 * Checks whether OST with the given index is marked as used in the temporary
811 * array (see lod_qos_ost_in_use()).
813 * \param[in] env execution environment for this thread
814 * \param[in] ost OST target index to check
815 * \param[in] stripes the number of items used in the array already
820 static int lod_qos_is_ost_used(const struct lu_env *env, int ost, __u32 stripes)
822 struct lod_thread_info *info = lod_env_info(env);
823 int *osts = info->lti_ea_store;
826 for (j = 0; j < stripes; j++) {
834 lod_obj_is_ost_use_skip_cb(const struct lu_env *env, struct lod_object *lo,
835 int comp_idx, struct lod_obj_stripe_cb_data *data)
837 struct lod_layout_component *comp = &lo->ldo_comp_entries[comp_idx];
839 return comp->llc_ost_indices == NULL;
843 lod_obj_is_ost_use_cb(const struct lu_env *env, struct lod_object *lo,
844 int comp_idx, struct lod_obj_stripe_cb_data *data)
846 struct lod_layout_component *comp = &lo->ldo_comp_entries[comp_idx];
849 for (i = 0; i < comp->llc_stripe_count; i++) {
850 if (comp->llc_ost_indices[i] == data->locd_ost_index) {
851 data->locd_ost_index = -1;
860 * Check is OST used in a composite layout
862 * \param[in] lo lod object
863 * \param[in] ost OST target index to check
865 * \retval false not used
868 static inline bool lod_comp_is_ost_used(const struct lu_env *env,
869 struct lod_object *lo, int ost)
871 struct lod_obj_stripe_cb_data data = { { 0 } };
873 data.locd_ost_index = ost;
874 data.locd_comp_skip_cb = lod_obj_is_ost_use_skip_cb;
875 data.locd_comp_cb = lod_obj_is_ost_use_cb;
877 (void)lod_obj_for_each_stripe(env, lo, NULL, &data);
879 return data.locd_ost_index == -1;
882 static inline void lod_avoid_update(struct lod_object *lo,
883 struct lod_avoid_guide *lag)
888 lag->lag_ost_avail--;
891 static inline bool lod_should_avoid_ost(struct lod_object *lo,
892 struct lod_avoid_guide *lag,
895 struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
896 struct lod_tgt_desc *ost = OST_TGT(lod, index);
897 struct lod_qos_oss *lqo = ost->ltd_qos.ltq_oss;
901 if (!cfs_bitmap_check(lod->lod_ost_bitmap, index)) {
902 QOS_DEBUG("OST%d: been used in conflicting mirror component\n",
908 * we've tried our best, all available OSTs have been used in
909 * overlapped components in the other mirror
911 if (lag->lag_ost_avail == 0)
915 for (i = 0; i < lag->lag_oaa_count; i++) {
916 if (lag->lag_oss_avoid_array[i] == lqo->lqo_id) {
922 * if the OSS which OST[index] resides has not been used, we'd like to
928 /* if the OSS has been used, check whether the OST has been used */
929 if (!cfs_bitmap_check(lag->lag_ost_avoid_bitmap, index))
932 QOS_DEBUG("OST%d: been used in conflicting mirror component\n",
937 static int lod_check_and_reserve_ost(const struct lu_env *env,
938 struct lod_object *lo,
939 struct obd_statfs *sfs, __u32 ost_idx,
940 __u32 speed, __u32 *s_idx,
941 struct dt_object **stripe,
945 struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
946 struct lod_avoid_guide *lag = &lod_env_info(env)->lti_avoid;
948 __u32 stripe_idx = *s_idx;
952 rc = lod_statfs_and_check(env, lod, ost_idx, sfs);
957 * We expect number of precreated objects in f_ffree at
958 * the first iteration, skip OSPs with no objects ready
960 if (sfs->os_fprecreated == 0 && speed == 0) {
961 QOS_DEBUG("#%d: precreation is empty\n", ost_idx);
966 * try to use another OSP if this one is degraded
968 if (sfs->os_state & OS_STATE_DEGRADED && speed < 2) {
969 QOS_DEBUG("#%d: degraded\n", ost_idx);
974 * try not allocate on OST which has been used by other
977 if (speed == 0 && lod_comp_is_ost_used(env, lo, ost_idx)) {
978 QOS_DEBUG("iter %d: OST%d used by other component\n",
984 * try not allocate OSTs used by conflicting component of other mirrors
985 * for the first and second time.
987 if (speed < 2 && lod_should_avoid_ost(lo, lag, ost_idx)) {
988 QOS_DEBUG("iter %d: OST%d used by conflicting mirror "
989 "component\n", speed, ost_idx);
993 * do not put >1 objects on a single OST
995 if (lod_qos_is_ost_used(env, ost_idx, stripe_idx))
998 o = lod_qos_declare_object_on(env, lod, ost_idx, th);
1000 CDEBUG(D_OTHER, "can't declare new object on #%u: %d\n",
1001 ost_idx, (int) PTR_ERR(o));
1007 * We've successfully declared (reserved) an object
1009 lod_avoid_update(lo, lag);
1010 lod_qos_ost_in_use(env, stripe_idx, ost_idx);
1011 stripe[stripe_idx] = o;
1012 ost_indices[stripe_idx] = ost_idx;
1013 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_LOV_CREATE_RACE, 2);
1015 *s_idx = stripe_idx;
1021 * Allocate a striping using round-robin algorithm.
1023 * Allocates a new striping using round-robin algorithm. The function refreshes
1024 * all the internal structures (statfs cache, array of available OSTs sorted
1025 * with regard to OSS, etc). The number of stripes required is taken from the
1026 * object (must be prepared by the caller), but can change if the flag
1027 * LOV_USES_DEFAULT_STRIPE is supplied. The caller should ensure nobody else
1028 * is trying to create a striping on the object in parallel. All the internal
1029 * structures (like pools, etc) are protected and no additional locking is
1030 * required. The function succeeds even if a single stripe is allocated. To save
1031 * time we give priority to targets which already have objects precreated.
1032 * Full OSTs are skipped (see lod_qos_dev_is_full() for the details).
1034 * \param[in] env execution environment for this thread
1035 * \param[in] lo LOD object
1036 * \param[out] stripe striping created
1037 * \param[out] ost_indices ost indices of striping created
1038 * \param[in] flags allocation flags (0 or LOV_USES_DEFAULT_STRIPE)
1039 * \param[in] th transaction handle
1040 * \param[in] comp_idx index of ldo_comp_entries
1042 * \retval 0 on success
1043 * \retval -ENOSPC if not enough OSTs are found
1044 * \retval negative negated errno for other failures
1046 static int lod_alloc_rr(const struct lu_env *env, struct lod_object *lo,
1047 struct dt_object **stripe, __u32 *ost_indices,
1048 int flags, struct thandle *th, int comp_idx)
1050 struct lod_layout_component *lod_comp;
1051 struct lod_device *m = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1052 struct obd_statfs *sfs = &lod_env_info(env)->lti_osfs;
1053 struct pool_desc *pool = NULL;
1054 struct ost_pool *osts;
1055 struct lod_qos_rr *lqr;
1056 unsigned int i, array_idx;
1057 __u32 ost_start_idx_temp;
1058 __u32 stripe_idx = 0;
1059 __u32 stripe_count, stripe_count_min, ost_idx;
1060 int rc, speed = 0, ost_connecting = 0;
1063 LASSERT(lo->ldo_comp_cnt > comp_idx && lo->ldo_comp_entries != NULL);
1064 lod_comp = &lo->ldo_comp_entries[comp_idx];
1065 stripe_count = lod_comp->llc_stripe_count;
1066 stripe_count_min = min_stripe_count(stripe_count, flags);
1068 if (lod_comp->llc_pool != NULL)
1069 pool = lod_find_pool(m, lod_comp->llc_pool);
1072 down_read(&pool_tgt_rw_sem(pool));
1073 osts = &(pool->pool_obds);
1074 lqr = &(pool->pool_rr);
1076 osts = &(m->lod_pool_info);
1077 lqr = &(m->lod_qos.lq_rr);
1080 rc = lod_qos_calc_rr(m, osts, lqr);
1084 rc = lod_qos_ost_in_use_clear(env, stripe_count);
1088 down_read(&m->lod_qos.lq_rw_sem);
1089 spin_lock(&lqr->lqr_alloc);
1090 if (--lqr->lqr_start_count <= 0) {
1091 lqr->lqr_start_idx = cfs_rand() % osts->op_count;
1092 lqr->lqr_start_count =
1093 (LOV_CREATE_RESEED_MIN / max(osts->op_count, 1U) +
1094 LOV_CREATE_RESEED_MULT) * max(osts->op_count, 1U);
1095 } else if (stripe_count_min >= osts->op_count ||
1096 lqr->lqr_start_idx > osts->op_count) {
1097 /* If we have allocated from all of the OSTs, slowly
1098 * precess the next start if the OST/stripe count isn't
1099 * already doing this for us. */
1100 lqr->lqr_start_idx %= osts->op_count;
1101 if (stripe_count > 1 && (osts->op_count % stripe_count) != 1)
1102 ++lqr->lqr_offset_idx;
1104 ost_start_idx_temp = lqr->lqr_start_idx;
1108 QOS_DEBUG("pool '%s' want %d start_idx %d start_count %d offset %d "
1109 "active %d count %d\n",
1110 lod_comp->llc_pool ? lod_comp->llc_pool : "",
1111 stripe_count, lqr->lqr_start_idx, lqr->lqr_start_count,
1112 lqr->lqr_offset_idx, osts->op_count, osts->op_count);
1114 for (i = 0; i < osts->op_count && stripe_idx < stripe_count; i++) {
1115 array_idx = (lqr->lqr_start_idx + lqr->lqr_offset_idx) %
1117 ++lqr->lqr_start_idx;
1118 ost_idx = lqr->lqr_pool.op_array[array_idx];
1120 QOS_DEBUG("#%d strt %d act %d strp %d ary %d idx %d\n",
1121 i, lqr->lqr_start_idx, /* XXX: active*/ 0,
1122 stripe_idx, array_idx, ost_idx);
1124 if ((ost_idx == LOV_QOS_EMPTY) ||
1125 !cfs_bitmap_check(m->lod_ost_bitmap, ost_idx))
1128 /* Fail Check before osc_precreate() is called
1129 so we can only 'fail' single OSC. */
1130 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OSC_PRECREATE) && ost_idx == 0)
1133 spin_unlock(&lqr->lqr_alloc);
1134 rc = lod_check_and_reserve_ost(env, lo, sfs, ost_idx, speed,
1135 &stripe_idx, stripe, ost_indices,
1137 spin_lock(&lqr->lqr_alloc);
1139 if (rc != 0 && OST_TGT(m, ost_idx)->ltd_connecting)
1142 if ((speed < 2) && (stripe_idx < stripe_count_min)) {
1143 /* Try again, allowing slower OSCs */
1145 lqr->lqr_start_idx = ost_start_idx_temp;
1151 spin_unlock(&lqr->lqr_alloc);
1152 up_read(&m->lod_qos.lq_rw_sem);
1155 lod_comp->llc_stripe_count = stripe_idx;
1156 /* at least one stripe is allocated */
1159 /* nobody provided us with a single object */
1168 up_read(&pool_tgt_rw_sem(pool));
1169 /* put back ref got by lod_find_pool() */
1170 lod_pool_putref(pool);
1177 * Allocate a specific striping layout on a user defined set of OSTs.
1179 * Allocates new striping using the OST index range provided by the data from
1180 * the lmm_obejcts contained in the lov_user_md passed to this method. Full
1181 * OSTs are not considered. The exact order of OSTs requested by the user
1182 * is respected as much as possible depending on OST status. The number of
1183 * stripes needed and stripe offset are taken from the object. If that number
1184 * can not be met, then the function returns a failure and then it's the
1185 * caller's responsibility to release the stripes allocated. All the internal
1186 * structures are protected, but no concurrent allocation is allowed on the
1189 * \param[in] env execution environment for this thread
1190 * \param[in] lo LOD object
1191 * \param[out] stripe striping created
1192 * \param[out] ost_indices ost indices of striping created
1193 * \param[in] th transaction handle
1194 * \param[in] comp_idx index of ldo_comp_entries
1196 * \retval 0 on success
1197 * \retval -ENODEV OST index does not exist on file system
1198 * \retval -EINVAL requested OST index is invalid
1199 * \retval negative negated errno on error
1201 static int lod_alloc_ost_list(const struct lu_env *env, struct lod_object *lo,
1202 struct dt_object **stripe, __u32 *ost_indices,
1203 struct thandle *th, int comp_idx)
1205 struct lod_layout_component *lod_comp;
1206 struct lod_device *m = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1207 struct obd_statfs *sfs = &lod_env_info(env)->lti_osfs;
1208 struct dt_object *o;
1209 unsigned int array_idx = 0;
1210 int stripe_count = 0;
1215 /* for specific OSTs layout */
1216 LASSERT(lo->ldo_comp_cnt > comp_idx && lo->ldo_comp_entries != NULL);
1217 lod_comp = &lo->ldo_comp_entries[comp_idx];
1218 LASSERT(lod_comp->llc_ostlist.op_array);
1219 LASSERT(lod_comp->llc_ostlist.op_count);
1221 rc = lod_qos_ost_in_use_clear(env, lod_comp->llc_stripe_count);
1225 if (lod_comp->llc_stripe_offset == LOV_OFFSET_DEFAULT)
1226 lod_comp->llc_stripe_offset =
1227 lod_comp->llc_ostlist.op_array[0];
1229 for (i = 0; i < lod_comp->llc_stripe_count; i++) {
1230 if (lod_comp->llc_ostlist.op_array[i] ==
1231 lod_comp->llc_stripe_offset) {
1236 if (i == lod_comp->llc_stripe_count) {
1238 "%s: start index %d not in the specified list of OSTs\n",
1239 lod2obd(m)->obd_name, lod_comp->llc_stripe_offset);
1243 for (i = 0; i < lod_comp->llc_stripe_count;
1244 i++, array_idx = (array_idx + 1) % lod_comp->llc_stripe_count) {
1245 __u32 ost_idx = lod_comp->llc_ostlist.op_array[array_idx];
1247 if (!cfs_bitmap_check(m->lod_ost_bitmap, ost_idx)) {
1253 * do not put >1 objects on a single OST
1255 if (lod_qos_is_ost_used(env, ost_idx, stripe_count)) {
1260 rc = lod_statfs_and_check(env, m, ost_idx, sfs);
1261 if (rc < 0) /* this OSP doesn't feel well */
1264 o = lod_qos_declare_object_on(env, m, ost_idx, th);
1268 "%s: can't declare new object on #%u: %d\n",
1269 lod2obd(m)->obd_name, ost_idx, rc);
1274 * We've successfully declared (reserved) an object
1276 lod_qos_ost_in_use(env, stripe_count, ost_idx);
1277 stripe[stripe_count] = o;
1278 ost_indices[stripe_count] = ost_idx;
1286 * Allocate a striping on a predefined set of OSTs.
1288 * Allocates new layout starting from OST index in lo->ldo_stripe_offset.
1289 * Full OSTs are not considered. The exact order of OSTs is not important and
1290 * varies depending on OST status. The allocation procedure prefers the targets
1291 * with precreated objects ready. The number of stripes needed and stripe
1292 * offset are taken from the object. If that number cannot be met, then the
1293 * function returns an error and then it's the caller's responsibility to
1294 * release the stripes allocated. All the internal structures are protected,
1295 * but no concurrent allocation is allowed on the same objects.
1297 * \param[in] env execution environment for this thread
1298 * \param[in] lo LOD object
1299 * \param[out] stripe striping created
1300 * \param[out] ost_indices ost indices of striping created
1301 * \param[in] flags not used
1302 * \param[in] th transaction handle
1303 * \param[in] comp_idx index of ldo_comp_entries
1305 * \retval 0 on success
1306 * \retval -ENOSPC if no OST objects are available at all
1307 * \retval -EFBIG if not enough OST objects are found
1308 * \retval -EINVAL requested offset is invalid
1309 * \retval negative errno on failure
1311 static int lod_alloc_specific(const struct lu_env *env, struct lod_object *lo,
1312 struct dt_object **stripe, __u32 *ost_indices,
1313 int flags, struct thandle *th, int comp_idx)
1315 struct lod_layout_component *lod_comp;
1316 struct lod_device *m = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1317 struct obd_statfs *sfs = &lod_env_info(env)->lti_osfs;
1318 struct dt_object *o;
1320 unsigned int i, array_idx, ost_count;
1321 int rc, stripe_num = 0;
1323 struct pool_desc *pool = NULL;
1324 struct ost_pool *osts;
1327 LASSERT(lo->ldo_comp_cnt > comp_idx && lo->ldo_comp_entries != NULL);
1328 lod_comp = &lo->ldo_comp_entries[comp_idx];
1330 rc = lod_qos_ost_in_use_clear(env, lod_comp->llc_stripe_count);
1334 if (lod_comp->llc_pool != NULL)
1335 pool = lod_find_pool(m, lod_comp->llc_pool);
1338 down_read(&pool_tgt_rw_sem(pool));
1339 osts = &(pool->pool_obds);
1341 osts = &(m->lod_pool_info);
1344 ost_count = osts->op_count;
1347 /* search loi_ost_idx in ost array */
1349 for (i = 0; i < ost_count; i++) {
1350 if (osts->op_array[i] == lod_comp->llc_stripe_offset) {
1355 if (i == ost_count) {
1356 CERROR("Start index %d not found in pool '%s'\n",
1357 lod_comp->llc_stripe_offset,
1358 lod_comp->llc_pool ? lod_comp->llc_pool : "");
1359 GOTO(out, rc = -EINVAL);
1362 for (i = 0; i < ost_count;
1363 i++, array_idx = (array_idx + 1) % ost_count) {
1364 ost_idx = osts->op_array[array_idx];
1366 if (!cfs_bitmap_check(m->lod_ost_bitmap, ost_idx))
1369 /* Fail Check before osc_precreate() is called
1370 so we can only 'fail' single OSC. */
1371 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OSC_PRECREATE) && ost_idx == 0)
1375 * do not put >1 objects on a single OST
1377 if (lod_qos_is_ost_used(env, ost_idx, stripe_num))
1381 * try not allocate on the OST used by other component
1383 if (speed == 0 && i != 0 &&
1384 lod_comp_is_ost_used(env, lo, ost_idx))
1387 /* Drop slow OSCs if we can, but not for requested start idx.
1389 * This means "if OSC is slow and it is not the requested
1390 * start OST, then it can be skipped, otherwise skip it only
1391 * if it is inactive/recovering/out-of-space." */
1393 rc = lod_statfs_and_check(env, m, ost_idx, sfs);
1395 /* this OSP doesn't feel well */
1400 * We expect number of precreated objects at the first
1401 * iteration. Skip OSPs with no objects ready. Don't apply
1402 * this logic to OST specified with stripe_offset.
1404 if (i != 0 && sfs->os_fprecreated == 0 && speed == 0)
1407 o = lod_qos_declare_object_on(env, m, ost_idx, th);
1409 CDEBUG(D_OTHER, "can't declare new object on #%u: %d\n",
1410 ost_idx, (int) PTR_ERR(o));
1415 * We've successfully declared (reserved) an object
1417 lod_qos_ost_in_use(env, stripe_num, ost_idx);
1418 stripe[stripe_num] = o;
1419 ost_indices[stripe_num] = ost_idx;
1422 /* We have enough stripes */
1423 if (stripe_num == lod_comp->llc_stripe_count)
1427 /* Try again, allowing slower OSCs */
1432 /* If we were passed specific striping params, then a failure to
1433 * meet those requirements is an error, since we can't reallocate
1434 * that memory (it might be part of a larger array or something).
1436 CERROR("can't lstripe objid "DFID": have %d want %u\n",
1437 PFID(lu_object_fid(lod2lu_obj(lo))), stripe_num,
1438 lod_comp->llc_stripe_count);
1439 rc = stripe_num == 0 ? -ENOSPC : -EFBIG;
1442 up_read(&pool_tgt_rw_sem(pool));
1443 /* put back ref got by lod_find_pool() */
1444 lod_pool_putref(pool);
1451 * Check whether QoS allocation should be used.
1453 * A simple helper to decide when QoS allocation should be used:
1454 * if it's just a single available target or the used space is
1455 * evenly distributed among the targets at the moment, then QoS
1456 * allocation algorithm should not be used.
1458 * \param[in] lod LOD device
1460 * \retval 0 should not be used
1461 * \retval 1 should be used
1463 static inline int lod_qos_is_usable(struct lod_device *lod)
1466 /* to be able to debug QoS code */
1470 /* Detect -EAGAIN early, before expensive lock is taken. */
1471 if (!lod->lod_qos.lq_dirty && lod->lod_qos.lq_same_space)
1474 if (lod->lod_desc.ld_active_tgt_count < 2)
1481 * Allocate a striping using an algorithm with weights.
1483 * The function allocates OST objects to create a striping. The algorithm
1484 * used is based on weights (currently only using the free space), and it's
1485 * trying to ensure the space is used evenly by OSTs and OSSs. The striping
1486 * configuration (# of stripes, offset, pool) is taken from the object and
1487 * is prepared by the caller.
1489 * If LOV_USES_DEFAULT_STRIPE is not passed and prepared configuration can't
1490 * be met due to too few OSTs, then allocation fails. If the flag is passed
1491 * fewer than 3/4 of the requested number of stripes can be allocated, then
1494 * No concurrent allocation is allowed on the object and this must be ensured
1495 * by the caller. All the internal structures are protected by the function.
1497 * The algorithm has two steps: find available OSTs and calculate their
1498 * weights, then select the OSTs with their weights used as the probability.
1499 * An OST with a higher weight is proportionately more likely to be selected
1500 * than one with a lower weight.
1502 * \param[in] env execution environment for this thread
1503 * \param[in] lo LOD object
1504 * \param[out] stripe striping created
1505 * \param[out] ost_indices ost indices of striping created
1506 * \param[in] flags 0 or LOV_USES_DEFAULT_STRIPE
1507 * \param[in] th transaction handle
1508 * \param[in] comp_idx index of ldo_comp_entries
1510 * \retval 0 on success
1511 * \retval -EAGAIN not enough OSTs are found for specified stripe count
1512 * \retval -EINVAL requested OST index is invalid
1513 * \retval negative errno on failure
1515 static int lod_alloc_qos(const struct lu_env *env, struct lod_object *lo,
1516 struct dt_object **stripe, __u32 *ost_indices,
1517 int flags, struct thandle *th, int comp_idx)
1519 struct lod_layout_component *lod_comp;
1520 struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
1521 struct obd_statfs *sfs = &lod_env_info(env)->lti_osfs;
1522 struct lod_avoid_guide *lag = &lod_env_info(env)->lti_avoid;
1523 struct lod_tgt_desc *ost;
1524 struct dt_object *o;
1525 __u64 total_weight = 0;
1526 struct pool_desc *pool = NULL;
1527 struct ost_pool *osts;
1529 __u32 nfound, good_osts, stripe_count, stripe_count_min;
1533 LASSERT(lo->ldo_comp_cnt > comp_idx && lo->ldo_comp_entries != NULL);
1534 lod_comp = &lo->ldo_comp_entries[comp_idx];
1535 stripe_count = lod_comp->llc_stripe_count;
1536 stripe_count_min = min_stripe_count(stripe_count, flags);
1537 if (stripe_count_min < 1)
1540 if (lod_comp->llc_pool != NULL)
1541 pool = lod_find_pool(lod, lod_comp->llc_pool);
1544 down_read(&pool_tgt_rw_sem(pool));
1545 osts = &(pool->pool_obds);
1547 osts = &(lod->lod_pool_info);
1550 /* Detect -EAGAIN early, before expensive lock is taken. */
1551 if (!lod_qos_is_usable(lod))
1552 GOTO(out_nolock, rc = -EAGAIN);
1554 /* Do actual allocation, use write lock here. */
1555 down_write(&lod->lod_qos.lq_rw_sem);
1558 * Check again, while we were sleeping on @lq_rw_sem things could
1561 if (!lod_qos_is_usable(lod))
1562 GOTO(out, rc = -EAGAIN);
1564 rc = lod_qos_calc_ppo(lod);
1568 rc = lod_qos_ost_in_use_clear(env, lod_comp->llc_stripe_count);
1573 /* Find all the OSTs that are valid stripe candidates */
1574 for (i = 0; i < osts->op_count; i++) {
1575 if (!cfs_bitmap_check(lod->lod_ost_bitmap, osts->op_array[i]))
1578 ost = OST_TGT(lod, osts->op_array[i]);
1579 ost->ltd_qos.ltq_usable = 0;
1581 rc = lod_statfs_and_check(env, lod, osts->op_array[i], sfs);
1583 /* this OSP doesn't feel well */
1587 if (sfs->os_state & OS_STATE_DEGRADED)
1590 /* Fail Check before osc_precreate() is called
1591 so we can only 'fail' single OSC. */
1592 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_OSC_PRECREATE) &&
1593 osts->op_array[i] == 0)
1596 ost->ltd_qos.ltq_usable = 1;
1597 lod_qos_calc_weight(lod, osts->op_array[i]);
1598 total_weight += ost->ltd_qos.ltq_weight;
1603 QOS_DEBUG("found %d good osts\n", good_osts);
1605 if (good_osts < stripe_count_min)
1606 GOTO(out, rc = -EAGAIN);
1608 /* We have enough osts */
1609 if (good_osts < stripe_count)
1610 stripe_count = good_osts;
1612 /* Find enough OSTs with weighted random allocation. */
1614 while (nfound < stripe_count) {
1615 __u64 rand, cur_weight;
1621 #if BITS_PER_LONG == 32
1622 rand = cfs_rand() % (unsigned)total_weight;
1623 /* If total_weight > 32-bit, first generate the high
1624 * 32 bits of the random number, then add in the low
1625 * 32 bits (truncated to the upper limit, if needed) */
1626 if (total_weight > 0xffffffffULL)
1627 rand = (__u64)(cfs_rand() %
1628 (unsigned)(total_weight >> 32)) << 32;
1632 if (rand == (total_weight & 0xffffffff00000000ULL))
1633 rand |= cfs_rand() % (unsigned)total_weight;
1638 rand = ((__u64)cfs_rand() << 32 | cfs_rand()) %
1645 /* On average, this will hit larger-weighted OSTs more often.
1646 * 0-weight OSTs will always get used last (only when rand=0) */
1647 for (i = 0; i < osts->op_count; i++) {
1648 __u32 idx = osts->op_array[i];
1650 if (lod_should_avoid_ost(lo, lag, idx))
1653 ost = OST_TGT(lod, idx);
1655 if (!ost->ltd_qos.ltq_usable)
1658 cur_weight += ost->ltd_qos.ltq_weight;
1659 QOS_DEBUG("stripe_count=%d nfound=%d cur_weight=%llu "
1660 "rand=%llu total_weight=%llu\n",
1661 stripe_count, nfound, cur_weight, rand,
1664 if (cur_weight < rand)
1667 QOS_DEBUG("stripe=%d to idx=%d\n", nfound, idx);
1669 * do not put >1 objects on a single OST
1671 if (lod_qos_is_ost_used(env, idx, nfound) ||
1672 lod_comp_is_ost_used(env, lo, idx))
1675 o = lod_qos_declare_object_on(env, lod, idx, th);
1677 QOS_DEBUG("can't declare object on #%u: %d\n",
1678 idx, (int) PTR_ERR(o));
1682 lod_avoid_update(lo, lag);
1683 lod_qos_ost_in_use(env, nfound, idx);
1685 ost_indices[nfound] = idx;
1686 lod_qos_used(lod, osts, idx, &total_weight);
1693 /* no OST found on this iteration, give up */
1698 if (unlikely(nfound != stripe_count)) {
1700 * when the decision to use weighted algorithm was made
1701 * we had enough appropriate OSPs, but this state can
1702 * change anytime (no space on OST, broken connection, etc)
1703 * so it's possible OSP won't be able to provide us with
1704 * an object due to just changed state
1706 QOS_DEBUG("%s: wanted %d objects, found only %d\n",
1707 lod2obd(lod)->obd_name, stripe_count, nfound);
1708 for (i = 0; i < nfound; i++) {
1709 LASSERT(stripe[i] != NULL);
1710 dt_object_put(env, stripe[i]);
1714 /* makes sense to rebalance next time */
1715 lod->lod_qos.lq_dirty = 1;
1716 lod->lod_qos.lq_same_space = 0;
1722 up_write(&lod->lod_qos.lq_rw_sem);
1726 up_read(&pool_tgt_rw_sem(pool));
1727 /* put back ref got by lod_find_pool() */
1728 lod_pool_putref(pool);
1735 * Find largest stripe count the caller can use.
1737 * Find the maximal possible stripe count not greater than \a stripe_count.
1738 * Sometimes suggested stripecount can't be reached for a number of reasons:
1739 * lack of enough active OSTs or the backend does not support EAs that large.
1740 * If the passed one is 0, then the filesystem's default one is used.
1742 * \param[in] lod LOD device
1743 * \param[in] lo The lod_object
1744 * \param[in] stripe_count count the caller would like to use
1746 * \retval the maximum usable stripe count
1748 __u16 lod_get_stripe_count(struct lod_device *lod, struct lod_object *lo,
1751 __u32 max_stripes = LOV_MAX_STRIPE_COUNT_OLD;
1754 stripe_count = lod->lod_desc.ld_default_stripe_count;
1755 if (stripe_count > lod->lod_desc.ld_active_tgt_count)
1756 stripe_count = lod->lod_desc.ld_active_tgt_count;
1760 /* stripe count is based on whether OSD can handle larger EA sizes */
1761 if (lod->lod_osd_max_easize > 0) {
1762 unsigned int easize = lod->lod_osd_max_easize;
1765 if (lo->ldo_is_composite) {
1766 struct lod_layout_component *lod_comp;
1767 unsigned int header_sz = sizeof(struct lov_comp_md_v1);
1769 header_sz += sizeof(struct lov_comp_md_entry_v1) *
1771 for (i = 0; i < lo->ldo_comp_cnt; i++) {
1772 lod_comp = &lo->ldo_comp_entries[i];
1773 if (lod_comp->llc_flags & LCME_FL_INIT)
1774 header_sz += lov_mds_md_size(
1775 lod_comp->llc_stripe_count,
1778 if (easize > header_sz)
1779 easize -= header_sz;
1784 max_stripes = lov_mds_md_max_stripe_count(easize, LOV_MAGIC_V3);
1787 return (stripe_count < max_stripes) ? stripe_count : max_stripes;
1791 * Create in-core respresentation for a fully-defined striping
1793 * When the caller passes a fully-defined striping (i.e. everything including
1794 * OST object FIDs are defined), then we still need to instantiate LU-cache
1795 * with the objects representing the stripes defined. This function completes
1798 * \param[in] env execution environment for this thread
1799 * \param[in] mo LOD object
1800 * \param[in] buf buffer containing the striping
1802 * \retval 0 on success
1803 * \retval negative negated errno on error
1805 int lod_use_defined_striping(const struct lu_env *env,
1806 struct lod_object *mo,
1807 const struct lu_buf *buf)
1809 struct lod_layout_component *lod_comp;
1810 struct lov_mds_md_v1 *v1 = buf->lb_buf;
1811 struct lov_mds_md_v3 *v3 = buf->lb_buf;
1812 struct lov_comp_md_v1 *comp_v1 = NULL;
1813 struct lov_ost_data_v1 *objs;
1820 mutex_lock(&mo->ldo_layout_mutex);
1821 lod_striping_free_nolock(env, mo);
1823 magic = le32_to_cpu(v1->lmm_magic) & ~LOV_MAGIC_DEFINED;
1825 if (magic != LOV_MAGIC_V1 && magic != LOV_MAGIC_V3 &&
1826 magic != LOV_MAGIC_COMP_V1)
1827 GOTO(unlock, rc = -EINVAL);
1829 if (magic == LOV_MAGIC_COMP_V1) {
1830 comp_v1 = buf->lb_buf;
1831 comp_cnt = le16_to_cpu(comp_v1->lcm_entry_count);
1833 GOTO(unlock, rc = -EINVAL);
1834 mirror_cnt = le16_to_cpu(comp_v1->lcm_mirror_count) + 1;
1835 mo->ldo_flr_state = le16_to_cpu(comp_v1->lcm_flags) &
1837 mo->ldo_is_composite = 1;
1839 mo->ldo_is_composite = 0;
1843 mo->ldo_layout_gen = le16_to_cpu(v1->lmm_layout_gen);
1845 rc = lod_alloc_comp_entries(mo, mirror_cnt, comp_cnt);
1849 for (i = 0; i < comp_cnt; i++) {
1850 struct lu_extent *ext;
1854 lod_comp = &mo->ldo_comp_entries[i];
1856 if (mo->ldo_is_composite) {
1857 offs = le32_to_cpu(comp_v1->lcm_entries[i].lcme_offset);
1858 v1 = (struct lov_mds_md_v1 *)((char *)comp_v1 + offs);
1859 magic = le32_to_cpu(v1->lmm_magic);
1861 ext = &comp_v1->lcm_entries[i].lcme_extent;
1862 lod_comp->llc_extent.e_start =
1863 le64_to_cpu(ext->e_start);
1864 lod_comp->llc_extent.e_end = le64_to_cpu(ext->e_end);
1865 lod_comp->llc_flags =
1866 le32_to_cpu(comp_v1->lcm_entries[i].lcme_flags);
1868 le32_to_cpu(comp_v1->lcm_entries[i].lcme_id);
1869 if (lod_comp->llc_id == LCME_ID_INVAL)
1870 GOTO(out, rc = -EINVAL);
1874 if (magic == LOV_MAGIC_V1) {
1875 objs = &v1->lmm_objects[0];
1876 } else if (magic == LOV_MAGIC_V3) {
1877 objs = &v3->lmm_objects[0];
1878 if (v3->lmm_pool_name[0] != '\0')
1879 pool_name = v3->lmm_pool_name;
1881 CDEBUG(D_LAYOUT, "Invalid magic %x\n", magic);
1882 GOTO(out, rc = -EINVAL);
1885 lod_comp->llc_pattern = le32_to_cpu(v1->lmm_pattern);
1886 lod_comp->llc_stripe_size = le32_to_cpu(v1->lmm_stripe_size);
1887 lod_comp->llc_stripe_count = le16_to_cpu(v1->lmm_stripe_count);
1888 lod_comp->llc_layout_gen = le16_to_cpu(v1->lmm_layout_gen);
1890 * The stripe_offset of an uninit-ed component is stored in
1891 * the lmm_layout_gen
1893 if (mo->ldo_is_composite && !lod_comp_inited(lod_comp))
1894 lod_comp->llc_stripe_offset = lod_comp->llc_layout_gen;
1895 lod_obj_set_pool(mo, i, pool_name);
1897 if ((!mo->ldo_is_composite || lod_comp_inited(lod_comp)) &&
1898 !(lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED) &&
1899 !(lod_comp->llc_pattern & LOV_PATTERN_MDT)) {
1900 rc = lod_initialize_objects(env, mo, objs, i);
1906 rc = lod_fill_mirrors(mo);
1910 lod_striping_free_nolock(env, mo);
1912 mutex_unlock(&mo->ldo_layout_mutex);
1918 * Parse suggested striping configuration.
1920 * The caller gets a suggested striping configuration from a number of sources
1921 * including per-directory default and applications. Then it needs to verify
1922 * the suggested striping is valid, apply missing bits and store the resulting
1923 * configuration in the object to be used by the allocator later. Must not be
1924 * called concurrently against the same object. It's OK to provide a
1925 * fully-defined striping.
1927 * \param[in] env execution environment for this thread
1928 * \param[in] lo LOD object
1929 * \param[in] buf buffer containing the striping
1931 * \retval 0 on success
1932 * \retval negative negated errno on error
1934 int lod_qos_parse_config(const struct lu_env *env, struct lod_object *lo,
1935 const struct lu_buf *buf)
1937 struct lod_layout_component *lod_comp;
1938 struct lod_device *d = lu2lod_dev(lod2lu_obj(lo)->lo_dev);
1939 struct lov_desc *desc = &d->lod_desc;
1940 struct lov_user_md_v1 *v1 = NULL;
1941 struct lov_user_md_v3 *v3 = NULL;
1942 struct lov_comp_md_v1 *comp_v1 = NULL;
1943 char def_pool[LOV_MAXPOOLNAME + 1];
1950 if (buf == NULL || buf->lb_buf == NULL || buf->lb_len == 0)
1953 memset(def_pool, 0, sizeof(def_pool));
1954 if (lo->ldo_comp_entries != NULL)
1955 lod_layout_get_pool(lo->ldo_comp_entries, lo->ldo_comp_cnt,
1956 def_pool, sizeof(def_pool));
1958 /* free default striping info */
1959 lod_free_comp_entries(lo);
1961 rc = lod_verify_striping(d, lo, buf, false);
1967 comp_v1 = buf->lb_buf;
1968 magic = v1->lmm_magic;
1970 if (unlikely(le32_to_cpu(magic) & LOV_MAGIC_DEFINED)) {
1971 /* try to use as fully defined striping */
1972 rc = lod_use_defined_striping(env, lo, buf);
1977 case __swab32(LOV_USER_MAGIC_V1):
1978 lustre_swab_lov_user_md_v1(v1);
1979 magic = v1->lmm_magic;
1981 case LOV_USER_MAGIC_V1:
1983 case __swab32(LOV_USER_MAGIC_V3):
1984 lustre_swab_lov_user_md_v3(v3);
1985 magic = v3->lmm_magic;
1987 case LOV_USER_MAGIC_V3:
1989 case __swab32(LOV_USER_MAGIC_SPECIFIC):
1990 lustre_swab_lov_user_md_v3(v3);
1991 lustre_swab_lov_user_md_objects(v3->lmm_objects,
1992 v3->lmm_stripe_count);
1993 magic = v3->lmm_magic;
1995 case LOV_USER_MAGIC_SPECIFIC:
1997 case __swab32(LOV_USER_MAGIC_COMP_V1):
1998 lustre_swab_lov_comp_md_v1(comp_v1);
1999 magic = comp_v1->lcm_magic;
2001 case LOV_USER_MAGIC_COMP_V1:
2004 CERROR("%s: unrecognized magic %X\n",
2005 lod2obd(d)->obd_name, magic);
2009 lustre_print_user_md(D_OTHER, v1, "parse config");
2011 if (magic == LOV_USER_MAGIC_COMP_V1) {
2012 comp_cnt = comp_v1->lcm_entry_count;
2015 mirror_cnt = comp_v1->lcm_mirror_count + 1;
2017 lo->ldo_flr_state = LCM_FL_RDONLY;
2018 lo->ldo_is_composite = 1;
2022 lo->ldo_is_composite = 0;
2025 rc = lod_alloc_comp_entries(lo, mirror_cnt, comp_cnt);
2029 LASSERT(lo->ldo_comp_entries);
2031 for (i = 0; i < comp_cnt; i++) {
2032 struct pool_desc *pool;
2033 struct lu_extent *ext;
2036 lod_comp = &lo->ldo_comp_entries[i];
2038 if (lo->ldo_is_composite) {
2039 v1 = (struct lov_user_md *)((char *)comp_v1 +
2040 comp_v1->lcm_entries[i].lcme_offset);
2041 ext = &comp_v1->lcm_entries[i].lcme_extent;
2042 lod_comp->llc_extent = *ext;
2043 lod_comp->llc_flags =
2044 comp_v1->lcm_entries[i].lcme_flags &
2049 if (v1->lmm_magic == LOV_USER_MAGIC_V3 ||
2050 v1->lmm_magic == LOV_USER_MAGIC_SPECIFIC) {
2051 v3 = (struct lov_user_md_v3 *)v1;
2052 if (v3->lmm_pool_name[0] != '\0')
2053 pool_name = v3->lmm_pool_name;
2055 if (v3->lmm_magic == LOV_USER_MAGIC_SPECIFIC) {
2056 rc = lod_comp_copy_ost_lists(lod_comp, v3);
2058 GOTO(free_comp, rc);
2062 if (pool_name == NULL && def_pool[0] != '\0')
2063 pool_name = def_pool;
2065 if (v1->lmm_pattern == 0)
2066 v1->lmm_pattern = LOV_PATTERN_RAID0;
2067 if (lov_pattern(v1->lmm_pattern) != LOV_PATTERN_RAID0 &&
2068 lov_pattern(v1->lmm_pattern) != LOV_PATTERN_MDT) {
2069 CDEBUG(D_LAYOUT, "%s: invalid pattern: %x\n",
2070 lod2obd(d)->obd_name, v1->lmm_pattern);
2071 GOTO(free_comp, rc = -EINVAL);
2074 lod_comp->llc_pattern = v1->lmm_pattern;
2075 lod_comp->llc_stripe_size = desc->ld_default_stripe_size;
2076 if (v1->lmm_stripe_size)
2077 lod_comp->llc_stripe_size = v1->lmm_stripe_size;
2079 lod_comp->llc_stripe_count = desc->ld_default_stripe_count;
2080 if (v1->lmm_stripe_count ||
2081 lov_pattern(v1->lmm_pattern) == LOV_PATTERN_MDT)
2082 lod_comp->llc_stripe_count = v1->lmm_stripe_count;
2084 lod_comp->llc_stripe_offset = v1->lmm_stripe_offset;
2085 lod_obj_set_pool(lo, i, pool_name);
2087 LASSERT(ergo(lov_pattern(lod_comp->llc_pattern) ==
2088 LOV_PATTERN_MDT, lod_comp->llc_stripe_count == 0));
2090 if (pool_name == NULL)
2093 /* In the function below, .hs_keycmp resolves to
2094 * pool_hashkey_keycmp() */
2095 /* coverity[overrun-buffer-val] */
2096 pool = lod_find_pool(d, pool_name);
2100 if (lod_comp->llc_stripe_offset != LOV_OFFSET_DEFAULT) {
2101 rc = lod_check_index_in_pool(
2102 lod_comp->llc_stripe_offset, pool);
2104 lod_pool_putref(pool);
2105 CDEBUG(D_LAYOUT, "%s: invalid offset, %u\n",
2106 lod2obd(d)->obd_name,
2107 lod_comp->llc_stripe_offset);
2108 GOTO(free_comp, rc = -EINVAL);
2112 if (lod_comp->llc_stripe_count > pool_tgt_count(pool))
2113 lod_comp->llc_stripe_count = pool_tgt_count(pool);
2115 lod_pool_putref(pool);
2121 lod_free_comp_entries(lo);
2126 * prepare enough OST avoidance bitmap space
2128 int lod_prepare_avoidance(const struct lu_env *env, struct lod_object *lo)
2130 struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
2131 struct lod_tgt_descs *ltds = &lod->lod_ost_descs;
2132 struct lod_avoid_guide *lag = &lod_env_info(env)->lti_avoid;
2133 struct cfs_bitmap *bitmap = NULL;
2134 __u32 *new_oss = NULL;
2136 lag->lag_ost_avail = ltds->ltd_tgtnr;
2138 /* reset OSS avoid guide array */
2139 lag->lag_oaa_count = 0;
2140 if (lag->lag_oss_avoid_array && lag->lag_oaa_size < ltds->ltd_tgtnr) {
2141 OBD_FREE(lag->lag_oss_avoid_array,
2142 sizeof(__u32) * lag->lag_oaa_size);
2143 lag->lag_oss_avoid_array = NULL;
2144 lag->lag_oaa_size = 0;
2147 /* init OST avoid guide bitmap */
2148 if (lag->lag_ost_avoid_bitmap) {
2149 if (ltds->ltd_tgtnr <= lag->lag_ost_avoid_bitmap->size) {
2150 CFS_RESET_BITMAP(lag->lag_ost_avoid_bitmap);
2152 CFS_FREE_BITMAP(lag->lag_ost_avoid_bitmap);
2153 lag->lag_ost_avoid_bitmap = NULL;
2157 if (!lag->lag_ost_avoid_bitmap) {
2158 bitmap = CFS_ALLOCATE_BITMAP(ltds->ltd_tgtnr);
2163 if (!lag->lag_oss_avoid_array) {
2165 * usually there are multiple OSTs in one OSS, but we don't
2166 * know the exact OSS number, so we choose a safe option,
2167 * using OST count to allocate the array to store the OSS
2170 OBD_ALLOC(new_oss, sizeof(*new_oss) * ltds->ltd_tgtnr);
2172 CFS_FREE_BITMAP(bitmap);
2178 lag->lag_oss_avoid_array = new_oss;
2179 lag->lag_oaa_size = ltds->ltd_tgtnr;
2182 lag->lag_ost_avoid_bitmap = bitmap;
2188 * Collect information of used OSTs and OSSs in the overlapped components
2191 void lod_collect_avoidance(struct lod_object *lo, struct lod_avoid_guide *lag,
2194 struct lod_device *lod = lu2lod_dev(lo->ldo_obj.do_lu.lo_dev);
2195 struct lod_layout_component *lod_comp = &lo->ldo_comp_entries[comp_idx];
2196 struct cfs_bitmap *bitmap = lag->lag_ost_avoid_bitmap;
2199 /* iterate mirrors */
2200 for (i = 0; i < lo->ldo_mirror_count; i++) {
2201 struct lod_layout_component *comp;
2204 * skip mirror containing component[comp_idx], we only
2205 * collect OSTs info of conflicting component in other mirrors,
2206 * so that during read, if OSTs of a mirror's component are
2207 * not available, we still have other mirror with different
2208 * OSTs to read the data.
2210 comp = &lo->ldo_comp_entries[lo->ldo_mirrors[i].lme_start];
2211 if (comp->llc_id != LCME_ID_INVAL &&
2212 mirror_id_of(comp->llc_id) ==
2213 mirror_id_of(lod_comp->llc_id))
2216 /* iterate components of a mirror */
2217 lod_foreach_mirror_comp(comp, lo, i) {
2219 * skip non-overlapped or un-instantiated components,
2220 * NOTE: don't use lod_comp_inited(comp) to judge
2221 * whether @comp has been inited, since during
2222 * declare phase, comp->llc_stripe has been allocated
2223 * while it's init flag not been set until the exec
2226 if (!lu_extent_is_overlapped(&comp->llc_extent,
2227 &lod_comp->llc_extent) ||
2232 * collect used OSTs index and OSS info from a
2235 for (j = 0; j < comp->llc_stripe_count; j++) {
2236 struct lod_tgt_desc *ost;
2237 struct lod_qos_oss *lqo;
2240 ost = OST_TGT(lod, comp->llc_ost_indices[j]);
2241 lqo = ost->ltd_qos.ltq_oss;
2243 if (cfs_bitmap_check(bitmap, ost->ltd_index))
2246 QOS_DEBUG("OST%d used in conflicting mirror "
2247 "component\n", ost->ltd_index);
2248 cfs_bitmap_set(bitmap, ost->ltd_index);
2249 lag->lag_ost_avail--;
2251 for (k = 0; k < lag->lag_oaa_count; k++) {
2252 if (lag->lag_oss_avoid_array[k] ==
2256 if (k == lag->lag_oaa_count) {
2257 lag->lag_oss_avoid_array[k] =
2259 lag->lag_oaa_count++;
2267 * Create a striping for an obejct.
2269 * The function creates a new striping for the object. The function tries QoS
2270 * algorithm first unless free space is distributed evenly among OSTs, but
2271 * by default RR algorithm is preferred due to internal concurrency (QoS is
2272 * serialized). The caller must ensure no concurrent calls to the function
2273 * are made against the same object.
2275 * \param[in] env execution environment for this thread
2276 * \param[in] lo LOD object
2277 * \param[in] attr attributes OST objects will be declared with
2278 * \param[in] th transaction handle
2279 * \param[in] comp_idx index of ldo_comp_entries
2281 * \retval 0 on success
2282 * \retval negative negated errno on error
2284 int lod_qos_prep_create(const struct lu_env *env, struct lod_object *lo,
2285 struct lu_attr *attr, struct thandle *th,
2288 struct lod_layout_component *lod_comp;
2289 struct lod_device *d = lu2lod_dev(lod2lu_obj(lo)->lo_dev);
2291 int flag = LOV_USES_ASSIGNED_STRIPE;
2293 struct lod_avoid_guide *lag = &lod_env_info(env)->lti_avoid;
2294 struct dt_object **stripe = NULL;
2295 __u32 *ost_indices = NULL;
2299 LASSERT(lo->ldo_comp_cnt > comp_idx && lo->ldo_comp_entries != NULL);
2300 lod_comp = &lo->ldo_comp_entries[comp_idx];
2302 /* A released component is being created */
2303 if (lod_comp->llc_pattern & LOV_PATTERN_F_RELEASED)
2306 /* A Data-on-MDT component is being created */
2307 if (lov_pattern(lod_comp->llc_pattern) == LOV_PATTERN_MDT)
2310 if (likely(lod_comp->llc_stripe == NULL)) {
2312 * no striping has been created so far
2314 LASSERT(lod_comp->llc_stripe_count);
2316 * statfs and check OST targets now, since ld_active_tgt_count
2317 * could be changed if some OSTs are [de]activated manually.
2319 lod_qos_statfs_update(env, d);
2320 stripe_len = lod_get_stripe_count(d, lo,
2321 lod_comp->llc_stripe_count);
2322 if (stripe_len == 0)
2323 GOTO(out, rc = -ERANGE);
2324 lod_comp->llc_stripe_count = stripe_len;
2325 OBD_ALLOC(stripe, sizeof(stripe[0]) * stripe_len);
2327 GOTO(out, rc = -ENOMEM);
2328 OBD_ALLOC(ost_indices, sizeof(*ost_indices) * stripe_len);
2330 GOTO(out, rc = -ENOMEM);
2332 lod_getref(&d->lod_ost_descs);
2333 /* XXX: support for non-0 files w/o objects */
2334 CDEBUG(D_OTHER, "tgt_count %d stripe_count %d\n",
2335 d->lod_desc.ld_tgt_count, stripe_len);
2337 if (lod_comp->llc_ostlist.op_array &&
2338 lod_comp->llc_ostlist.op_count) {
2339 rc = lod_alloc_ost_list(env, lo, stripe, ost_indices,
2341 } else if (lod_comp->llc_stripe_offset == LOV_OFFSET_DEFAULT) {
2343 * collect OSTs and OSSs used in other mirrors whose
2344 * components cross the ldo_comp_entries[comp_idx]
2346 rc = lod_prepare_avoidance(env, lo);
2350 QOS_DEBUG("collecting conflict osts for comp[%d]\n",
2352 lod_collect_avoidance(lo, lag, comp_idx);
2354 rc = lod_alloc_qos(env, lo, stripe, ost_indices, flag,
2357 rc = lod_alloc_rr(env, lo, stripe, ost_indices,
2358 flag, th, comp_idx);
2360 rc = lod_alloc_specific(env, lo, stripe, ost_indices,
2361 flag, th, comp_idx);
2364 lod_putref(d, &d->lod_ost_descs);
2366 for (i = 0; i < stripe_len; i++)
2367 if (stripe[i] != NULL)
2368 dt_object_put(env, stripe[i]);
2369 lod_comp->llc_stripe_count = 0;
2371 lod_comp->llc_stripe = stripe;
2372 lod_comp->llc_ost_indices = ost_indices;
2373 lod_comp->llc_stripes_allocated = stripe_len;
2377 * lod_qos_parse_config() found supplied buf as a predefined
2378 * striping (not a hint), so it allocated all the object
2379 * now we need to create them
2381 for (i = 0; i < lod_comp->llc_stripe_count; i++) {
2382 struct dt_object *o;
2384 o = lod_comp->llc_stripe[i];
2387 rc = lod_sub_declare_create(env, o, attr, NULL,
2390 CERROR("can't declare create: %d\n", rc);
2395 * Clear LCME_FL_INIT for the component so that
2396 * lod_striping_create() can create the striping objects
2399 lod_comp_unset_init(lod_comp);
2405 OBD_FREE(stripe, sizeof(stripe[0]) * stripe_len);
2407 OBD_FREE(ost_indices,
2408 sizeof(*ost_indices) * stripe_len);
2413 int lod_prepare_create(const struct lu_env *env, struct lod_object *lo,
2414 struct lu_attr *attr, const struct lu_buf *buf,
2418 struct lod_device *d = lu2lod_dev(lod2lu_obj(lo)->lo_dev);
2426 /* no OST available */
2427 /* XXX: should we be waiting a bit to prevent failures during
2428 * cluster initialization? */
2429 if (d->lod_ostnr == 0)
2433 * by this time, the object's ldo_stripe_count and ldo_stripe_size
2434 * contain default value for striping: taken from the parent
2435 * or from filesystem defaults
2437 * in case the caller is passing lovea with new striping config,
2438 * we may need to parse lovea and apply new configuration
2440 rc = lod_qos_parse_config(env, lo, buf);
2444 if (attr->la_valid & LA_SIZE)
2445 size = attr->la_size;
2448 * prepare OST object creation for the component covering file's
2449 * size, the 1st component (including plain layout file) is always
2452 for (i = 0; i < lo->ldo_comp_cnt; i++) {
2453 struct lod_layout_component *lod_comp;
2454 struct lu_extent *extent;
2456 lod_comp = &lo->ldo_comp_entries[i];
2457 extent = &lod_comp->llc_extent;
2458 QOS_DEBUG("comp[%d] %lld "DEXT"\n", i, size, PEXT(extent));
2459 if (!lo->ldo_is_composite || size >= extent->e_start) {
2460 rc = lod_qos_prep_create(env, lo, attr, th, i);