Whamcloud - gitweb
1)merge filter_group support from HEAD to cmd_new
[fs/lustre-release.git] / lustre / lov / lov_qos.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  */
24
25 #ifndef EXPORT_SYMTAB
26 # define EXPORT_SYMTAB
27 #endif
28 #define DEBUG_SUBSYSTEM S_LOV
29
30 #ifdef __KERNEL__
31 #include <libcfs/libcfs.h>
32 #else
33 #include <liblustre.h>
34 #endif
35
36 #include <obd_class.h>
37 #include <obd_lov.h>
38 #include "lov_internal.h"
39
40                
41 /* #define QOS_DEBUG 1 */
42 #define D_QOS D_OTHER
43
44 #define TGT_BAVAIL(i)  (lov->lov_tgts[i]->ltd_exp->exp_obd->obd_osfs.os_bavail * \
45                         lov->lov_tgts[i]->ltd_exp->exp_obd->obd_osfs.os_bsize) 
46 #define TGT_FFREE(i)   (lov->lov_tgts[i]->ltd_exp->exp_obd->obd_osfs.os_ffree)
47
48
49 int qos_add_tgt(struct obd_device *obd, __u32 index)
50 {
51         struct lov_obd *lov = &obd->u.lov;
52         struct lov_qos_oss *oss, *temposs;
53         struct obd_export *exp = lov->lov_tgts[index]->ltd_exp;
54         int rc = 0, found = 0;
55         ENTRY;
56
57         /* We only need this QOS struct on MDT, not clients - but we may not
58            have registered the lov's observer yet, so there's no way to check
59            here. */
60                             
61         if (!exp || !exp->exp_connection) {
62                 CERROR("Missing connection\n");
63                 RETURN(-ENOTCONN);
64         }
65
66         down_write(&lov->lov_qos.lq_rw_sem);
67         mutex_down(&lov->lov_lock);
68         list_for_each_entry(oss, &lov->lov_qos.lq_oss_list, lqo_oss_list) {
69                 if (obd_uuid_equals(&oss->lqo_uuid, 
70                                     &exp->exp_connection->c_remote_uuid)) {
71                         found++;
72                         break;
73                 }
74         }
75
76         if (!found) {
77                 OBD_ALLOC_PTR(oss);
78                 if (!oss) 
79                         GOTO(out, rc = -ENOMEM);
80                 memcpy(&oss->lqo_uuid,
81                        &exp->exp_connection->c_remote_uuid,
82                        sizeof(oss->lqo_uuid));
83         } else {
84                 /* Assume we have to move this one */
85                 list_del(&oss->lqo_oss_list);
86         }
87                         
88         oss->lqo_ost_count++;
89         lov->lov_tgts[index]->ltd_qos.ltq_oss = oss;
90
91         /* Add sorted by # of OSTs.  Find the first entry that we're
92            bigger than... */
93         list_for_each_entry(temposs, &lov->lov_qos.lq_oss_list, lqo_oss_list) {
94                 if (oss->lqo_ost_count > temposs->lqo_ost_count) 
95                         break;
96         }
97         /* ...and add before it.  If we're the first or smallest, temposs
98            points to the list head, and we add to the end. */
99         list_add_tail(&oss->lqo_oss_list, &temposs->lqo_oss_list);
100
101         lov->lov_qos.lq_dirty = 1;
102         lov->lov_qos.lq_dirty_rr = 1;
103
104         CDEBUG(D_QOS, "add tgt %s to OSS %s (#%d)\n", 
105                obd_uuid2str(&lov->lov_tgts[index]->ltd_uuid),
106                obd_uuid2str(&oss->lqo_uuid),
107                oss->lqo_ost_count);
108
109 out:
110         mutex_up(&lov->lov_lock);
111         up_write(&lov->lov_qos.lq_rw_sem);
112         RETURN(rc);
113 }
114
115 int qos_del_tgt(struct obd_device *obd, __u32 index)
116 {
117         struct lov_obd *lov = &obd->u.lov;
118         struct lov_qos_oss *oss;
119         int rc = 0;
120         ENTRY;
121
122         down_write(&lov->lov_qos.lq_rw_sem);
123
124         oss = lov->lov_tgts[index]->ltd_qos.ltq_oss;
125         if (!oss)
126                 GOTO(out, rc = -ENOENT);
127
128         oss->lqo_ost_count--;
129         if (oss->lqo_ost_count == 0) {
130                 CDEBUG(D_QOS, "removing OSS %s\n", 
131                        obd_uuid2str(&oss->lqo_uuid));
132                 list_del(&oss->lqo_oss_list);
133                 OBD_FREE_PTR(oss);
134         }
135         
136         lov->lov_qos.lq_dirty = 1;
137         lov->lov_qos.lq_dirty_rr = 1;
138 out:
139         up_write(&lov->lov_qos.lq_rw_sem);
140         RETURN(rc);
141 }
142
143 /* Recalculate per-object penalties for OSSs and OSTs, 
144    depends on size of each ost in an oss */  
145 static int qos_calc_ppo(struct obd_device *obd)
146 {
147         struct lov_obd *lov = &obd->u.lov;
148         struct lov_qos_oss *oss;
149         __u64 ba_max, ba_min, temp;
150         __u32 num_active;
151         int rc, i, prio_wide;
152         ENTRY;
153         
154         if (!lov->lov_qos.lq_dirty) 
155                 GOTO(out, rc = 0);
156                 
157         num_active = lov->desc.ld_active_tgt_count - 1; 
158         if (num_active < 1)
159                 GOTO(out, rc = -EAGAIN);
160
161         /* find bavail on each OSS */
162         list_for_each_entry(oss, &lov->lov_qos.lq_oss_list, lqo_oss_list) {
163                 oss->lqo_bavail = 0;
164         }
165         lov->lov_qos.lq_active_oss_count = 0;
166
167         /* How badly user wants to select osts "widely" (not recently chosen
168            and not on recent oss's).  As opposed to "freely" (free space
169            avail.) 0-256. */
170         prio_wide = 256 - lov->lov_qos.lq_prio_free;
171
172         ba_min = (__u64)(-1);
173         ba_max = 0;
174         /* Calculate OST penalty per object */
175         /* (lov ref taken in alloc_qos) */
176         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
177                 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_active)
178                         continue;
179                 temp = TGT_BAVAIL(i);
180                 if (!temp)
181                         continue;
182                 ba_min = min(temp, ba_min);
183                 ba_max = max(temp, ba_max);
184                 
185                 /* Count the number of usable OSS's */
186                 if (lov->lov_tgts[i]->ltd_qos.ltq_oss->lqo_bavail == 0)
187                         lov->lov_qos.lq_active_oss_count++;
188                 lov->lov_tgts[i]->ltd_qos.ltq_oss->lqo_bavail += temp;
189
190                 /* per-OST penalty is prio * TGT_bavail / (num_ost - 1) / 2 */
191                 temp >>= 1;
192                 do_div(temp, num_active);
193                 lov->lov_tgts[i]->ltd_qos.ltq_penalty_per_obj = 
194                         (temp * prio_wide) >> 8;
195
196                 if (lov->lov_qos.lq_reset == 0) 
197                         lov->lov_tgts[i]->ltd_qos.ltq_penalty = 0;
198         }
199
200         num_active = lov->lov_qos.lq_active_oss_count - 1;
201         if (num_active < 1) {
202                 /* If there's only 1 OSS, we can't penalize it, so instead
203                    we have to double the OST penalty */
204                 num_active = 1;
205                 for (i = 0; i < lov->desc.ld_tgt_count; i++) 
206                         lov->lov_tgts[i]->ltd_qos.ltq_penalty_per_obj <<= 1;
207         }
208         
209         /* Per-OSS penalty is prio * oss_avail / oss_osts / (num_oss - 1) / 2 */
210         list_for_each_entry(oss, &lov->lov_qos.lq_oss_list, lqo_oss_list) {
211                 temp = oss->lqo_bavail >> 1;
212                 do_div(temp, oss->lqo_ost_count * num_active);
213                 oss->lqo_penalty_per_obj = (temp * prio_wide) >> 8;
214                 if (lov->lov_qos.lq_reset == 0) 
215                         oss->lqo_penalty = 0;
216         }
217
218         lov->lov_qos.lq_dirty = 0;
219         lov->lov_qos.lq_reset = 0;
220
221         /* If each ost has almost same free space, 
222          * do rr allocation for better creation performance */
223         lov->lov_qos.lq_same_space = 0;
224         temp = ba_max - ba_min;
225         ba_min = (ba_min * 51) >> 8;     /* 51/256 = .20 */  
226         if (temp < ba_min) {
227                 /* Difference is less than 20% */ 
228                 lov->lov_qos.lq_same_space = 1;
229                 /* Reset weights for the next time we enter qos mode */
230                 lov->lov_qos.lq_reset = 0;
231         }
232         rc = 0;
233
234 out:
235         if (!rc && lov->lov_qos.lq_same_space)
236                 RETURN(-EAGAIN);
237         RETURN(rc);
238 }
239
240 static int qos_calc_weight(struct lov_obd *lov, int i)
241 {
242         __u64 temp, temp2;
243         
244         /* Final ost weight = TGT_BAVAIL - ost_penalty - oss_penalty */
245         temp = TGT_BAVAIL(i);
246         temp2 = lov->lov_tgts[i]->ltd_qos.ltq_penalty + 
247                 lov->lov_tgts[i]->ltd_qos.ltq_oss->lqo_penalty;
248         if (temp < temp2) 
249                 lov->lov_tgts[i]->ltd_qos.ltq_weight = 0;
250         else
251                 lov->lov_tgts[i]->ltd_qos.ltq_weight = temp - temp2;
252         return 0;
253 }
254
255 /* We just used this index for a stripe; adjust everyone's weights */
256 static int qos_used(struct lov_obd *lov, __u32 index, __u64 *total_wt)
257 {
258         struct lov_qos_oss *oss;
259         int i;
260         ENTRY;
261
262         /* Don't allocate from this stripe anymore, until the next alloc_qos */
263         lov->lov_tgts[index]->ltd_qos.ltq_usable = 0;
264
265         oss = lov->lov_tgts[index]->ltd_qos.ltq_oss;
266         
267         /* Decay old penalty by half (we're adding max penalty, and don't
268            want it to run away.) */
269         lov->lov_tgts[index]->ltd_qos.ltq_penalty >>= 1;
270         oss->lqo_penalty >>= 1;
271
272         /* Set max penalties for this OST and OSS */
273         lov->lov_tgts[index]->ltd_qos.ltq_penalty +=
274                 lov->lov_tgts[index]->ltd_qos.ltq_penalty_per_obj *
275                 lov->desc.ld_active_tgt_count;
276         oss->lqo_penalty += oss->lqo_penalty_per_obj * 
277                 lov->lov_qos.lq_active_oss_count;
278         
279         /* Decrease all OSS penalties */
280         list_for_each_entry(oss, &lov->lov_qos.lq_oss_list, lqo_oss_list) {
281                 if (oss->lqo_penalty < oss->lqo_penalty_per_obj) 
282                         oss->lqo_penalty = 0;
283                 else
284                         oss->lqo_penalty -= oss->lqo_penalty_per_obj;
285         }
286
287         *total_wt = 0;
288         /* Decrease all OST penalties */
289         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
290                 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_active) 
291                         continue;
292                 if (lov->lov_tgts[i]->ltd_qos.ltq_penalty <
293                     lov->lov_tgts[i]->ltd_qos.ltq_penalty_per_obj)
294                         lov->lov_tgts[i]->ltd_qos.ltq_penalty = 0;
295                 else
296                         lov->lov_tgts[i]->ltd_qos.ltq_penalty -=
297                         lov->lov_tgts[i]->ltd_qos.ltq_penalty_per_obj;
298                 
299                 qos_calc_weight(lov, i);
300
301                 /* Recalc the total weight of usable osts */
302                 if (lov->lov_tgts[i]->ltd_qos.ltq_usable)
303                         *total_wt += lov->lov_tgts[i]->ltd_qos.ltq_weight;
304
305 #ifdef QOS_DEBUG
306                 CDEBUG(D_QOS, "recalc tgt %d avail="LPU64
307                        " ostppo="LPU64" ostp="LPU64" ossppo="LPU64
308                        " ossp="LPU64" wt="LPU64"\n",
309                        i, TGT_BAVAIL(i), 
310                        lov->lov_tgts[i]->ltd_qos.ltq_penalty_per_obj,
311                        lov->lov_tgts[i]->ltd_qos.ltq_penalty, 
312                        lov->lov_tgts[i]->ltd_qos.ltq_oss->lqo_penalty_per_obj,
313                        lov->lov_tgts[i]->ltd_qos.ltq_oss->lqo_penalty,
314                        lov->lov_tgts[i]->ltd_qos.ltq_weight);
315 #endif
316         }
317
318         RETURN(0);
319 }
320
321 #define LOV_QOS_EMPTY ((__u32)-1)
322 /* compute optimal round-robin order, based on OSTs per OSS */
323 static int qos_calc_rr(struct lov_obd *lov)
324 {
325         struct lov_qos_oss *oss;
326         unsigned ost_count, placed;
327         int i;
328         ENTRY;
329
330         if (!lov->lov_qos.lq_dirty_rr) {
331                 LASSERT(lov->lov_qos.lq_rr_size);
332                 RETURN(0);
333         }
334
335         down_write(&lov->lov_qos.lq_rw_sem);
336         ost_count = lov->desc.ld_tgt_count;
337
338         if (lov->lov_qos.lq_rr_size) 
339                 OBD_FREE(lov->lov_qos.lq_rr_array, lov->lov_qos.lq_rr_size);
340         lov->lov_qos.lq_rr_size = ost_count * 
341                 sizeof(lov->lov_qos.lq_rr_array[0]);
342         OBD_ALLOC(lov->lov_qos.lq_rr_array, lov->lov_qos.lq_rr_size);
343         if (!lov->lov_qos.lq_rr_array) {
344                 lov->lov_qos.lq_rr_size = 0;
345                 up_write(&lov->lov_qos.lq_rw_sem);
346                 RETURN(-ENOMEM);
347         }
348
349         for (i = 0; i < ost_count; i++) 
350                 lov->lov_qos.lq_rr_array[i] = LOV_QOS_EMPTY;
351
352         /* Place all the OSTs from 1 OSS at the same time. */
353         placed = 0;
354         list_for_each_entry(oss, &lov->lov_qos.lq_oss_list, lqo_oss_list) {
355                 int j = 0;
356                 for (i = 0; i < ost_count; i++) {
357                       if (lov->lov_tgts[i]->ltd_qos.ltq_oss == oss) {
358                               /* Evenly space these OSTs across arrayspace */
359                               int next = j * ost_count / oss->lqo_ost_count;
360                               while (lov->lov_qos.lq_rr_array[next] !=
361                                      LOV_QOS_EMPTY)
362                                       next = (next + 1) % ost_count;
363                               lov->lov_qos.lq_rr_array[next] = i;
364                               j++;
365                               placed++;
366                       }
367                 }
368                 LASSERT(j == oss->lqo_ost_count);
369         }
370
371         lov->lov_qos.lq_dirty_rr = 0;
372         up_write(&lov->lov_qos.lq_rw_sem);
373
374 #ifdef QOS_DEBUG
375         for (i = 0; i < ost_count; i++) {
376                 LCONSOLE(D_QOS, "rr %d ost %d\n", i, 
377                          lov->lov_qos.lq_rr_array[i]);
378         }
379 #endif
380
381         if (placed != ost_count) {
382                 /* This should never happen */
383                 CERROR("Placed %d of %d osts\n", placed, ost_count);
384                 for (i = 0; i < ost_count; i++) {
385                         LCONSOLE(D_WARNING, "rr %d ost %d\n", i,
386                                  lov->lov_qos.lq_rr_array[i]);
387                 }
388                 LBUG();
389         }
390         
391         RETURN(0);
392 }
393
394
395 void qos_shrink_lsm(struct lov_request_set *set)
396 {
397         struct lov_stripe_md *lsm = set->set_oi->oi_md, *lsm_new;
398         /* XXX LOV STACKING call into osc for sizes */
399         unsigned oldsize, newsize;
400
401         if (set->set_oti && set->set_cookies && set->set_cookie_sent) {
402                 struct llog_cookie *cookies;
403                 oldsize = lsm->lsm_stripe_count * sizeof(*cookies);
404                 newsize = set->set_count * sizeof(*cookies);
405
406                 cookies = set->set_cookies;
407                 oti_alloc_cookies(set->set_oti, set->set_count);
408                 if (set->set_oti->oti_logcookies) {
409                         memcpy(set->set_oti->oti_logcookies, cookies, newsize);
410                         OBD_FREE(cookies, oldsize);
411                         set->set_cookies = set->set_oti->oti_logcookies;
412                 } else {
413                         CWARN("'leaking' %d bytes\n", oldsize - newsize);
414                 }
415         }
416
417         CWARN("using fewer stripes for object "LPX64": old %u new %u\n",
418               lsm->lsm_object_id, lsm->lsm_stripe_count, set->set_count);
419
420         oldsize = lov_stripe_md_size(lsm->lsm_stripe_count);
421         newsize = lov_stripe_md_size(set->set_count);
422         OBD_ALLOC(lsm_new, newsize);
423         if (lsm_new != NULL) {
424                 memcpy(lsm_new, lsm, newsize);
425                 lsm_new->lsm_stripe_count = set->set_count;
426                 OBD_FREE(lsm, oldsize);
427                 set->set_oi->oi_md = lsm_new;
428         } else {
429                 CWARN("'leaking' %d bytes\n", oldsize - newsize);
430         }
431 }
432
433 int qos_remedy_create(struct lov_request_set *set, struct lov_request *req)
434 {
435         struct lov_stripe_md *lsm = set->set_oi->oi_md;
436         struct lov_obd *lov = &set->set_exp->exp_obd->u.lov;
437         unsigned ost_idx, ost_count = lov->desc.ld_tgt_count;
438         int stripe, i, rc = -EIO;
439         ENTRY;
440
441         ost_idx = (req->rq_idx + lsm->lsm_stripe_count) % ost_count;
442         for (i = 0; i < ost_count; i++, ost_idx = (ost_idx + 1) % ost_count) {
443                 if (!lov->lov_tgts[ost_idx] || 
444                     !lov->lov_tgts[ost_idx]->ltd_active) 
445                         continue;
446                 /* check if objects has been created on this ost */
447                 for (stripe = 0; stripe < lsm->lsm_stripe_count; stripe++) {
448                         if (stripe == req->rq_stripe)
449                                 continue;
450                         if (ost_idx == lsm->lsm_oinfo[stripe].loi_ost_idx)
451                                 break;
452                 }
453
454                 if (stripe >= lsm->lsm_stripe_count) {
455                         req->rq_idx = ost_idx;
456                         rc = obd_create(lov->lov_tgts[ost_idx]->ltd_exp,
457                                         req->rq_oi.oi_oa, &req->rq_oi.oi_md,
458                                         set->set_oti);
459                         if (!rc)
460                                 break;
461                 }
462         }
463         RETURN(rc);
464 }
465
466 #define LOV_CREATE_RESEED_MULT 4
467 #define LOV_CREATE_RESEED_MIN  1000
468 /* Allocate objects on osts with round-robin algorithm */
469 static int alloc_rr(struct lov_obd *lov, int *idx_arr, int *stripe_cnt)
470 {
471         unsigned array_idx, ost_count = lov->desc.ld_tgt_count;
472         unsigned ost_active_count = lov->desc.ld_active_tgt_count;
473         int i, *idx_pos = idx_arr;
474         __u32 ost_idx;
475         ENTRY;
476
477         i = qos_calc_rr(lov);
478         if (i) 
479                 RETURN(i);
480
481         if (--lov->lov_start_count <= 0) {
482                 lov->lov_start_idx = ll_rand() % ost_count;
483                 lov->lov_start_count =
484                         (LOV_CREATE_RESEED_MIN / max(ost_active_count, 1U) +
485                          LOV_CREATE_RESEED_MULT) * max(ost_active_count, 1U);
486         } else if (*stripe_cnt >= ost_active_count || 
487                    lov->lov_start_idx > ost_count) {
488                 /* If we have allocated from all of the OSTs, slowly
489                    precess the next start */
490                 lov->lov_start_idx %= ost_count;
491                 ++lov->lov_offset_idx;
492         }
493         array_idx = (lov->lov_start_idx + lov->lov_offset_idx) % ost_count;
494 #ifdef QOS_DEBUG
495         CDEBUG(D_QOS, "want %d startidx %d startcnt %d offset %d arrayidx %d\n",
496                *stripe_cnt, lov->lov_start_idx, lov->lov_start_count,
497                lov->lov_offset_idx, array_idx);
498 #endif
499
500         down_read(&lov->lov_qos.lq_rw_sem);
501         for (i = 0; i < ost_count; i++, array_idx=(array_idx + 1) % ost_count) {
502                 ++lov->lov_start_idx;
503                 ost_idx = lov->lov_qos.lq_rr_array[array_idx];
504 #ifdef QOS_DEBUG
505                 CDEBUG(D_QOS, "#%d strt %d act %d strp %d ary %d idx %d\n",
506                        i, lov->lov_start_idx, 
507                        lov->lov_tgts[ost_idx] ? 
508                        lov->lov_tgts[ost_idx].ltd_active : 0,
509                        idx_pos - idx_arr, array_idx, ost_idx);
510 #endif
511                 if (!lov->lov_tgts[ost_idx] || 
512                     !lov->lov_tgts[ost_idx]->ltd_active) 
513                         continue;
514                 *idx_pos = ost_idx;
515                 idx_pos++;
516                 /* We have enough stripes */
517                 if (idx_pos - idx_arr == *stripe_cnt) 
518                         break;
519         }
520         up_read(&lov->lov_qos.lq_rw_sem);
521
522         *stripe_cnt = idx_pos - idx_arr;
523         RETURN(0);
524 }
525
526 /* alloc objects on osts with specific stripe offset */
527 static int alloc_specific(struct lov_obd *lov, struct lov_stripe_md *lsm,
528                           int *idx_arr)
529 {
530         unsigned ost_idx, ost_count = lov->desc.ld_tgt_count;
531         int i, *idx_pos = idx_arr;
532         ENTRY;
533
534         ost_idx = lsm->lsm_oinfo[0].loi_ost_idx;
535         for (i = 0; i < ost_count; i++, ost_idx = (ost_idx + 1) % ost_count) {
536                 if (!lov->lov_tgts[ost_idx] || 
537                     !lov->lov_tgts[ost_idx]->ltd_active) {
538                         continue;
539                 }
540                 *idx_pos = ost_idx;
541                 idx_pos++;
542                 /* got enough ost */
543                 if (idx_pos - idx_arr == lsm->lsm_stripe_count)
544                         RETURN(0);
545         }
546         /* If we were passed specific striping params, then a failure to
547          * meet those requirements is an error, since we can't reallocate
548          * that memory (it might be part of a larger array or something).
549          *
550          * We can only get here if lsm_stripe_count was originally > 1.
551          */
552         CERROR("can't lstripe objid "LPX64": have %u want %u\n",
553                lsm->lsm_object_id, idx_pos - idx_arr, lsm->lsm_stripe_count);
554         RETURN(-EFBIG);
555 }
556
557 /* Alloc objects on osts with optimization based on:
558    - free space
559    - network resources (shared OSS's)
560 */
561 static int alloc_qos(struct obd_export *exp, int *idx_arr, int *stripe_cnt)
562 {
563         struct lov_obd *lov = &exp->exp_obd->u.lov;
564         static time_t last_warn = 0;
565         time_t now = cfs_time_current_sec();
566         __u64 cur_weight, temp, rand, bavail, total_bavail, total_weight = 0;
567         __u32 ost_count;
568         int nfound, good_osts, i, warn = 0, rc = 0;
569         ENTRY;
570         
571         lov_getref(exp->exp_obd);
572         down_write(&lov->lov_qos.lq_rw_sem);
573
574         ost_count = lov->desc.ld_tgt_count;
575
576         if (lov->desc.ld_active_tgt_count < 2) 
577                 GOTO(out, rc = -EAGAIN);
578
579         rc = qos_calc_ppo(exp->exp_obd);
580         if (rc) 
581                 GOTO(out, rc);
582         
583         total_bavail = 0;
584         good_osts = 0;
585         /* Warn users about zero available space/inode every 30 min */
586         if (cfs_time_sub(now, last_warn) > 60 * 30)
587                 warn = 1;
588         /* Find all the OSTs that are valid stripe candidates */
589         for (i = 0; i < ost_count; i++) {
590                 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_active)
591                         continue;
592                 bavail = TGT_BAVAIL(i);
593                 if (!bavail) {
594                         if (warn) {
595                                 CDEBUG(D_QOS, "no free space on %s\n", 
596                                        obd_uuid2str(&lov->lov_tgts[i]->ltd_uuid));
597                                 last_warn = now;
598                         }
599                         continue;
600                 }
601                 if (!TGT_FFREE(i)) {
602                         if (warn) {
603                                 CDEBUG(D_QOS, "no free inodes on %s\n", 
604                                        obd_uuid2str(&lov->lov_tgts[i]->ltd_uuid));
605                                 last_warn = now;
606                         }
607                         continue;
608                 }
609
610                 lov->lov_tgts[i]->ltd_qos.ltq_usable = 1;
611                 qos_calc_weight(lov, i);
612                 total_bavail += bavail;
613                 total_weight += lov->lov_tgts[i]->ltd_qos.ltq_weight;
614
615                 good_osts++;
616         }
617         
618         if (!total_bavail)
619                 GOTO(out, rc = -ENOSPC);
620        
621         /* if we don't have enough good OSTs, we reduce the stripe count. */
622         if (good_osts < *stripe_cnt)
623                 *stripe_cnt = good_osts;
624
625         if (!*stripe_cnt) 
626                 GOTO(out, rc = -EAGAIN);
627         
628         /* Find enough OSTs with weighted random allocation. */
629         nfound = 0;
630         while (nfound < *stripe_cnt) {
631                 cur_weight = 0;
632                 rc = -ENODEV;
633
634                 if (total_weight) {
635                         /* If total_weight > 32-bit, make a 64-bit random # */
636                         temp = (total_weight & 0xffffffff00000000ULL ?
637                                 (__u64)ll_rand() << 32 : 0ULL) | ll_rand();
638                         /* Random number between 0 and total_weight */
639                         rand = do_div(temp, total_weight); 
640                 } else {
641                         rand = 0;
642                 }
643
644                 /* On average, this will hit larger-weighted osts more often.
645                    0-weight osts will always get used last (only when rand=0).*/
646                 for (i = 0; i < ost_count; i++) {
647                         if (!lov->lov_tgts[i]->ltd_qos.ltq_usable)
648                                 continue;
649                         cur_weight += lov->lov_tgts[i]->ltd_qos.ltq_weight;
650                         if (cur_weight >= rand) {
651 #ifdef QOS_DEBUG
652                                 CDEBUG(D_QOS, "assigned stripe=%d to idx=%d\n",
653                                        nfound, i);
654 #endif
655                                 idx_arr[nfound++] = i;
656                                 qos_used(lov, i, &total_weight);
657                                 rc = 0;
658                                 break;
659                         }
660                 }
661                 /* should never satisfy below condition */
662                 if (rc) {
663                         CERROR("Didn't find any OSTs?\n");
664                         break;
665                 }
666         }
667         LASSERT(nfound == *stripe_cnt);
668         
669 out:
670         up_write(&lov->lov_qos.lq_rw_sem);
671         
672         if (rc == -EAGAIN)
673                 rc = alloc_rr(lov, idx_arr, stripe_cnt);
674         
675         lov_putref(exp->exp_obd);
676         RETURN(rc);
677 }
678
679 /* return new alloced stripe count on success */
680 static int alloc_idx_array(struct obd_export *exp, struct lov_stripe_md *lsm, 
681                            int newea, int **idx_arr, int *arr_cnt)
682 {
683         struct lov_obd *lov = &exp->exp_obd->u.lov;
684         int stripe_cnt = lsm->lsm_stripe_count;
685         int i, rc = 0;
686         int *tmp_arr = NULL;
687         ENTRY;
688
689         *arr_cnt = stripe_cnt;
690         OBD_ALLOC(tmp_arr, *arr_cnt * sizeof(int));
691         if (tmp_arr == NULL)
692                 RETURN(-ENOMEM);
693         for (i = 0; i < *arr_cnt; i++)
694                 tmp_arr[i] = -1;
695
696         if (newea || 
697             lsm->lsm_oinfo[0].loi_ost_idx >= lov->desc.ld_tgt_count) 
698                 rc = alloc_qos(exp, tmp_arr, &stripe_cnt);
699         else
700                 rc = alloc_specific(lov, lsm, tmp_arr);
701
702         if (rc)
703                 GOTO(out_arr, rc);
704
705         *idx_arr = tmp_arr;
706         RETURN(stripe_cnt);
707 out_arr:
708         OBD_FREE(tmp_arr, *arr_cnt * sizeof(int));
709         *arr_cnt = 0;
710         RETURN(rc);
711 }
712
713 static void free_idx_array(int *idx_arr, int arr_cnt)
714 {
715         if (arr_cnt)
716                 OBD_FREE(idx_arr, arr_cnt * sizeof(int));
717 }
718
719 int qos_prep_create(struct obd_export *exp, struct lov_request_set *set)
720 {
721         struct lov_obd *lov = &exp->exp_obd->u.lov;
722         struct lov_stripe_md *lsm;
723         struct obdo *src_oa = set->set_oi->oi_oa;
724         struct obd_trans_info *oti = set->set_oti;
725         int i, stripes, rc = 0, newea = 0;
726         int *idx_arr, idx_cnt = 0;
727         ENTRY;
728
729         LASSERT(src_oa->o_valid & OBD_MD_FLID);
730  
731         if (set->set_oi->oi_md == NULL) {
732                 int stripe_cnt = lov_get_stripecnt(lov, 0);
733
734                 /* If the MDS file was truncated up to some size, stripe over
735                  * enough OSTs to allow the file to be created at that size. 
736                  * This may mean we use more than the default # of stripes. */
737                 if (src_oa->o_valid & OBD_MD_FLSIZE) {
738                         obd_size min_bavail = (obd_size)-1;
739                         
740                         /* Find a small number of stripes we can use 
741                            (up to # of active osts). */
742                         stripes = 1;
743                         lov_getref(exp->exp_obd);
744                         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
745                                 if (!lov->lov_tgts[i] || 
746                                     !lov->lov_tgts[i]->ltd_active)
747                                         continue;
748                                 min_bavail = min(min_bavail, TGT_BAVAIL(i));
749                                 if (min_bavail * stripes > src_oa->o_size)
750                                         break;
751                                 stripes++;
752                         }
753                         lov_putref(exp->exp_obd);
754
755                         if (stripes < stripe_cnt)
756                                 stripes = stripe_cnt;
757                 } else {
758                         stripes = stripe_cnt;
759                 }
760
761                 rc = lov_alloc_memmd(&set->set_oi->oi_md, stripes, 
762                                      lov->desc.ld_pattern ?
763                                      lov->desc.ld_pattern : LOV_PATTERN_RAID0,
764                                      LOV_MAGIC);
765                 if (rc < 0)
766                         GOTO(out_err, rc);
767                 rc = 0;
768                 newea = 1;
769         }
770
771         lsm = set->set_oi->oi_md;
772         lsm->lsm_object_id = src_oa->o_id;
773         lsm->lsm_object_gr = src_oa->o_gr;
774
775         if (!lsm->lsm_stripe_size)
776                 lsm->lsm_stripe_size = lov->desc.ld_default_stripe_size;
777         if (!lsm->lsm_pattern) {
778                 LASSERT(lov->desc.ld_pattern);
779                 lsm->lsm_pattern = lov->desc.ld_pattern;
780         }
781
782         stripes = alloc_idx_array(exp, lsm, newea, &idx_arr, &idx_cnt);
783         LASSERT(stripes <= lsm->lsm_stripe_count);
784         if (stripes <= 0)
785                 GOTO(out_err, rc = stripes ? stripes : -EIO);
786         
787         for (i = 0; i < stripes; i++) {
788                 struct lov_request *req;
789                 int ost_idx = idx_arr[i];
790                 LASSERT(ost_idx >= 0);
791
792                 OBD_ALLOC(req, sizeof(*req));
793                 if (req == NULL)
794                         GOTO(out_err, rc = -ENOMEM);
795                 lov_set_add_req(req, set);
796
797                 req->rq_buflen = sizeof(*req->rq_oi.oi_md);
798                 OBD_ALLOC(req->rq_oi.oi_md, req->rq_buflen);
799                 if (req->rq_oi.oi_md == NULL)
800                         GOTO(out_err, rc = -ENOMEM);
801
802                 req->rq_oi.oi_oa = obdo_alloc();
803                 if (req->rq_oi.oi_oa == NULL)
804                         GOTO(out_err, rc = -ENOMEM);
805
806                 req->rq_idx = ost_idx;
807                 req->rq_stripe = i;
808                 /* create data objects with "parent" OA */
809                 memcpy(req->rq_oi.oi_oa, src_oa, sizeof(*req->rq_oi.oi_oa));
810
811                 /* XXX When we start creating objects on demand, we need to
812                  *     make sure that we always create the object on the
813                  *     stripe which holds the existing file size.
814                  */
815                 if (src_oa->o_valid & OBD_MD_FLSIZE) {
816                         req->rq_oi.oi_oa->o_size = 
817                                 lov_size_to_stripe(lsm, src_oa->o_size, i);
818
819                         CDEBUG(D_INODE, "stripe %d has size "LPU64"/"LPU64"\n",
820                                i, req->rq_oi.oi_oa->o_size, src_oa->o_size);
821                 }
822
823         }
824         LASSERT(set->set_count == stripes);
825
826         if (stripes < lsm->lsm_stripe_count)
827                 qos_shrink_lsm(set);
828
829         if (oti && (src_oa->o_valid & OBD_MD_FLCOOKIE)) {
830                 oti_alloc_cookies(oti, set->set_count);
831                 if (!oti->oti_logcookies)
832                         GOTO(out_err, rc = -ENOMEM);
833                 set->set_cookies = oti->oti_logcookies;
834         }
835 out_err:
836         if (newea && rc)
837                 obd_free_memmd(exp, &set->set_oi->oi_md);
838         free_idx_array(idx_arr, idx_cnt);
839         EXIT;
840         return rc;
841 }
842
843 void qos_update(struct lov_obd *lov, int idx, struct obd_statfs *osfs)
844 {
845         ENTRY;
846         lov->lov_qos.lq_dirty = 1;
847 }
848