Whamcloud - gitweb
LU-3230 osp: bail out of precreate_reserve on I/O errors
[fs/lustre-release.git] / lustre / osp / osp_precreate.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
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.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osp/osp_sync.c
37  *
38  * Lustre OST Proxy Device
39  *
40  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
41  * Author: Mikhail Pershin <mike.pershin@intel.com>
42  * Author: Di Wang <di.wang@intel.com>
43  */
44
45 #define DEBUG_SUBSYSTEM S_MDS
46
47 #include "osp_internal.h"
48
49 /*
50  * there are two specific states to take care about:
51  *
52  * = import is disconnected =
53  *
54  * = import is inactive =
55  *   in this case osp_declare_object_create() returns an error
56  *
57  */
58
59 /*
60  * statfs
61  */
62 static inline int osp_statfs_need_update(struct osp_device *d)
63 {
64         return !cfs_time_before(cfs_time_current(),
65                                 d->opd_statfs_fresh_till);
66 }
67
68 static void osp_statfs_timer_cb(unsigned long _d)
69 {
70         struct osp_device *d = (struct osp_device *) _d;
71
72         LASSERT(d);
73         cfs_waitq_signal(&d->opd_pre_waitq);
74 }
75
76 static int osp_statfs_interpret(const struct lu_env *env,
77                                 struct ptlrpc_request *req,
78                                 union ptlrpc_async_args *aa, int rc)
79 {
80         struct obd_import       *imp = req->rq_import;
81         struct obd_statfs       *msfs;
82         struct osp_device       *d;
83
84         ENTRY;
85
86         aa = ptlrpc_req_async_args(req);
87         d = aa->pointer_arg[0];
88         LASSERT(d);
89
90         if (rc != 0)
91                 GOTO(out, rc);
92
93         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
94         if (msfs == NULL)
95                 GOTO(out, rc = -EPROTO);
96
97         d->opd_statfs = *msfs;
98
99         osp_pre_update_status(d, rc);
100
101         /* schedule next update */
102         d->opd_statfs_fresh_till = cfs_time_shift(d->opd_statfs_maxage);
103         cfs_timer_arm(&d->opd_statfs_timer, d->opd_statfs_fresh_till);
104         d->opd_statfs_update_in_progress = 0;
105
106         CDEBUG(D_CACHE, "updated statfs %p\n", d);
107
108         RETURN(0);
109 out:
110         /* couldn't update statfs, try again as soon as possible */
111         cfs_waitq_signal(&d->opd_pre_waitq);
112         if (req->rq_import_generation == imp->imp_generation)
113                 CDEBUG(D_CACHE, "%s: couldn't update statfs: rc = %d\n",
114                        d->opd_obd->obd_name, rc);
115         RETURN(rc);
116 }
117
118 static int osp_statfs_update(struct osp_device *d)
119 {
120         struct ptlrpc_request   *req;
121         struct obd_import       *imp;
122         union ptlrpc_async_args *aa;
123         int                      rc;
124
125         ENTRY;
126
127         CDEBUG(D_CACHE, "going to update statfs\n");
128
129         imp = d->opd_obd->u.cli.cl_import;
130         LASSERT(imp);
131
132         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
133         if (req == NULL)
134                 RETURN(-ENOMEM);
135
136         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
137         if (rc) {
138                 ptlrpc_request_free(req);
139                 RETURN(rc);
140         }
141         ptlrpc_request_set_replen(req);
142         req->rq_request_portal = OST_CREATE_PORTAL;
143         ptlrpc_at_set_req_timeout(req);
144
145         req->rq_interpret_reply = (ptlrpc_interpterer_t)osp_statfs_interpret;
146         aa = ptlrpc_req_async_args(req);
147         aa->pointer_arg[0] = d;
148
149         /*
150          * no updates till reply
151          */
152         cfs_timer_disarm(&d->opd_statfs_timer);
153         d->opd_statfs_fresh_till = cfs_time_shift(obd_timeout * 1000);
154         d->opd_statfs_update_in_progress = 1;
155
156         ptlrpcd_add_req(req, PDL_POLICY_ROUND, -1);
157
158         RETURN(0);
159 }
160
161 /*
162  * XXX: there might be a case where removed object(s) do not add free
163  * space (empty object). if the number of such deletions is high, then
164  * we can start to update statfs too often - a rpc storm
165  * TODO: some throttling is needed
166  */
167 void osp_statfs_need_now(struct osp_device *d)
168 {
169         if (!d->opd_statfs_update_in_progress) {
170                 /*
171                  * if current status is -ENOSPC (lack of free space on OST)
172                  * then we should poll OST immediately once object destroy
173                  * is replied
174                  */
175                 d->opd_statfs_fresh_till = cfs_time_shift(-1);
176                 cfs_timer_disarm(&d->opd_statfs_timer);
177                 cfs_waitq_signal(&d->opd_pre_waitq);
178         }
179 }
180
181
182 /*
183  * OSP tries to maintain pool of available objects so that calls to create
184  * objects don't block most of time
185  *
186  * each time OSP gets connected to OST, we should start from precreation cleanup
187  */
188 static inline int osp_precreate_running(struct osp_device *d)
189 {
190         return !!(d->opd_pre_thread.t_flags & SVC_RUNNING);
191 }
192
193 static inline int osp_precreate_stopped(struct osp_device *d)
194 {
195         return !!(d->opd_pre_thread.t_flags & SVC_STOPPED);
196 }
197
198 static inline int osp_objs_precreated(const struct lu_env *env,
199                                       struct osp_device *osp)
200 {
201         struct lu_fid *fid1 = &osp->opd_pre_last_created_fid;
202         struct lu_fid *fid2 = &osp->opd_pre_used_fid;
203
204         LASSERTF(fid_seq(fid1) == fid_seq(fid2),
205                  "Created fid"DFID" Next fid "DFID"\n", PFID(fid1), PFID(fid2));
206
207         if (fid_is_idif(fid1)) {
208                 struct ost_id *oi1 = &osp_env_info(env)->osi_oi;
209                 struct ost_id *oi2 = &osp_env_info(env)->osi_oi2;
210
211                 LASSERT(fid_is_idif(fid1) && fid_is_idif(fid2));
212                 fid_to_ostid(fid1, oi1);
213                 fid_to_ostid(fid2, oi2);
214                 LASSERT(ostid_id(oi1) >= ostid_id(oi2));
215
216                 return ostid_id(oi1) - ostid_id(oi2);
217         }
218
219         return fid_oid(fid1) - fid_oid(fid2);
220 }
221
222 static inline int osp_precreate_near_empty_nolock(const struct lu_env *env,
223                                                   struct osp_device *d)
224 {
225         int window = osp_objs_precreated(env, d);
226
227         /* don't consider new precreation till OST is healty and
228          * has free space */
229         return ((window - d->opd_pre_reserved < d->opd_pre_grow_count / 2) &&
230                 (d->opd_pre_status == 0));
231 }
232
233 static inline int osp_precreate_near_empty(const struct lu_env *env,
234                                            struct osp_device *d)
235 {
236         int rc;
237
238         /* XXX: do we really need locking here? */
239         spin_lock(&d->opd_pre_lock);
240         rc = osp_precreate_near_empty_nolock(env, d);
241         spin_unlock(&d->opd_pre_lock);
242         return rc;
243 }
244
245 static inline int osp_create_end_seq(const struct lu_env *env,
246                                      struct osp_device *osp)
247 {
248         struct lu_fid *fid = &osp->opd_pre_used_fid;
249         int rc;
250
251         spin_lock(&osp->opd_pre_lock);
252         rc = osp_fid_end_seq(env, fid);
253         spin_unlock(&osp->opd_pre_lock);
254         return rc;
255 }
256
257 /**
258  * Write fid into last_oid/last_seq file.
259  **/
260 int osp_write_last_oid_seq_files(struct lu_env *env, struct osp_device *osp,
261                                  struct lu_fid *fid, int sync)
262 {
263         struct osp_thread_info  *oti = osp_env_info(env);
264         struct lu_buf      *lb_oid = &oti->osi_lb;
265         struct lu_buf      *lb_oseq = &oti->osi_lb2;
266         loff_t             oid_off;
267         loff_t             oseq_off;
268         struct thandle    *th;
269         int                   rc;
270         ENTRY;
271
272         /* Note: through f_oid is only 32bits, it will also write
273          * 64 bits for oid to keep compatiblity with the previous
274          * version. */
275         lb_oid->lb_buf = &fid->f_oid;
276         lb_oid->lb_len = sizeof(obd_id);
277         oid_off = sizeof(obd_id) * osp->opd_index;
278
279         lb_oseq->lb_buf = &fid->f_seq;
280         lb_oseq->lb_len = sizeof(obd_id);
281         oseq_off = sizeof(obd_id) * osp->opd_index;
282
283         th = dt_trans_create(env, osp->opd_storage);
284         if (IS_ERR(th))
285                 RETURN(PTR_ERR(th));
286
287         th->th_sync |= sync;
288         rc = dt_declare_record_write(env, osp->opd_last_used_oid_file,
289                                      lb_oid->lb_len, oid_off, th);
290         if (rc != 0)
291                 GOTO(out, rc);
292
293         rc = dt_declare_record_write(env, osp->opd_last_used_seq_file,
294                                      lb_oseq->lb_len, oseq_off, th);
295         if (rc != 0)
296                 GOTO(out, rc);
297
298         rc = dt_trans_start_local(env, osp->opd_storage, th);
299         if (rc != 0)
300                 GOTO(out, rc);
301
302         rc = dt_record_write(env, osp->opd_last_used_oid_file, lb_oid,
303                              &oid_off, th);
304         if (rc != 0) {
305                 CERROR("%s: can not write to last seq file: rc = %d\n",
306                         osp->opd_obd->obd_name, rc);
307                 GOTO(out, rc);
308         }
309         rc = dt_record_write(env, osp->opd_last_used_seq_file, lb_oseq,
310                              &oseq_off, th);
311         if (rc) {
312                 CERROR("%s: can not write to last seq file: rc = %d\n",
313                         osp->opd_obd->obd_name, rc);
314                 GOTO(out, rc);
315         }
316 out:
317         dt_trans_stop(env, osp->opd_storage, th);
318         RETURN(rc);
319 }
320
321 int osp_precreate_rollover_new_seq(struct lu_env *env, struct osp_device *osp)
322 {
323         struct lu_fid   *fid = &osp_env_info(env)->osi_fid;
324         struct lu_fid   *last_fid = &osp->opd_last_used_fid;
325         int             rc;
326         ENTRY;
327
328         rc = seq_client_get_seq(env, osp->opd_obd->u.cli.cl_seq, &fid->f_seq);
329         if (rc != 0) {
330                 CERROR("%s: alloc fid error: rc = %d\n",
331                        osp->opd_obd->obd_name, rc);
332                 RETURN(rc);
333         }
334
335         fid->f_oid = 1;
336         fid->f_ver = 0;
337         LASSERTF(fid_seq(fid) != fid_seq(last_fid),
338                  "fid "DFID", last_fid "DFID"\n", PFID(fid),
339                  PFID(last_fid));
340
341         rc = osp_write_last_oid_seq_files(env, osp, fid, 1);
342         if (rc != 0) {
343                 CERROR("%s: Can not update oid/seq file: rc = %d\n",
344                        osp->opd_obd->obd_name, rc);
345                 RETURN(rc);
346         }
347
348         LCONSOLE_INFO("%s: update sequence from "LPX64" to "LPX64"\n",
349                       osp->opd_obd->obd_name, fid_seq(last_fid),
350                       fid_seq(fid));
351         /* Update last_xxx to the new seq */
352         spin_lock(&osp->opd_pre_lock);
353         osp->opd_last_used_fid = *fid;
354         osp->opd_gap_start_fid = *fid;
355         osp->opd_pre_used_fid = *fid;
356         osp->opd_pre_last_created_fid = *fid;
357         spin_unlock(&osp->opd_pre_lock);
358
359         RETURN(rc);
360 }
361
362 /**
363  * alloc fids for precreation.
364  * rc = 0 Success, @grow is the count of real allocation.
365  * rc = 1 Current seq is used up.
366  * rc < 0 Other error.
367  **/
368 static int osp_precreate_fids(const struct lu_env *env, struct osp_device *osp,
369                               struct lu_fid *fid, int *grow)
370 {
371         struct osp_thread_info  *osi = osp_env_info(env);
372         __u64                   end;
373         int                     i = 0;
374
375         if (fid_is_idif(fid)) {
376                 struct lu_fid   *last_fid;
377                 struct ost_id   *oi = &osi->osi_oi;
378
379                 spin_lock(&osp->opd_pre_lock);
380                 last_fid = &osp->opd_pre_last_created_fid;
381                 fid_to_ostid(last_fid, oi);
382                 end = min(ostid_id(oi) + *grow, IDIF_MAX_OID);
383                 *grow = end - ostid_id(oi);
384                 ostid_set_id(oi, ostid_id(oi) + *grow);
385                 spin_unlock(&osp->opd_pre_lock);
386
387                 if (*grow == 0)
388                         return 1;
389
390                 ostid_to_fid(fid, oi, osp->opd_index);
391                 return 0;
392         }
393
394         spin_lock(&osp->opd_pre_lock);
395         *fid = osp->opd_pre_last_created_fid;
396         end = fid->f_oid;
397         end = min((end + *grow), (__u64)LUSTRE_DATA_SEQ_MAX_WIDTH);
398         *grow = end - fid->f_oid;
399         fid->f_oid += end - fid->f_oid;
400         spin_unlock(&osp->opd_pre_lock);
401
402         CDEBUG(D_INFO, "Expect %d, actual %d ["DFID" -- "DFID"]\n",
403                *grow, i, PFID(fid), PFID(&osp->opd_pre_last_created_fid));
404
405         return *grow > 0 ? 0 : 1;
406 }
407
408 static int osp_precreate_send(const struct lu_env *env, struct osp_device *d)
409 {
410         struct osp_thread_info  *oti = osp_env_info(env);
411         struct ptlrpc_request   *req;
412         struct obd_import       *imp;
413         struct ost_body         *body;
414         int                      rc, grow, diff;
415         struct lu_fid           *fid = &oti->osi_fid;
416         ENTRY;
417
418         /* don't precreate new objects till OST healthy and has free space */
419         if (unlikely(d->opd_pre_status)) {
420                 CDEBUG(D_INFO, "%s: don't send new precreate: rc = %d\n",
421                        d->opd_obd->obd_name, d->opd_pre_status);
422                 RETURN(0);
423         }
424
425         /*
426          * if not connection/initialization is compeleted, ignore
427          */
428         imp = d->opd_obd->u.cli.cl_import;
429         LASSERT(imp);
430
431         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
432         if (req == NULL)
433                 RETURN(-ENOMEM);
434         req->rq_request_portal = OST_CREATE_PORTAL;
435         /* we should not resend create request - anyway we will have delorphan
436          * and kill these objects */
437         req->rq_no_delay = req->rq_no_resend = 1;
438
439         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
440         if (rc) {
441                 ptlrpc_request_free(req);
442                 RETURN(rc);
443         }
444
445         spin_lock(&d->opd_pre_lock);
446         if (d->opd_pre_grow_count > d->opd_pre_max_grow_count / 2)
447                 d->opd_pre_grow_count = d->opd_pre_max_grow_count / 2;
448         grow = d->opd_pre_grow_count;
449         spin_unlock(&d->opd_pre_lock);
450
451         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
452         LASSERT(body);
453
454         *fid = d->opd_pre_last_created_fid;
455         rc = osp_precreate_fids(env, d, fid, &grow);
456         if (rc == 1) {
457                 /* Current seq has been used up*/
458                 if (!osp_is_fid_client(d)) {
459                         osp_pre_update_status(d, -ENOSPC);
460                         rc = -ENOSPC;
461                 }
462                 cfs_waitq_signal(&d->opd_pre_waitq);
463                 GOTO(out_req, rc);
464         }
465
466         if (!osp_is_fid_client(d)) {
467                 /* Non-FID client will always send seq 0 because of
468                  * compatiblity */
469                 LASSERTF(fid_is_idif(fid), "Invalid fid "DFID"\n", PFID(fid));
470                 fid->f_seq = 0;
471         }
472
473         fid_to_ostid(fid, &body->oa.o_oi);
474         body->oa.o_valid = OBD_MD_FLGROUP;
475
476         ptlrpc_request_set_replen(req);
477
478         rc = ptlrpc_queue_wait(req);
479         if (rc) {
480                 CERROR("%s: can't precreate: rc = %d\n", d->opd_obd->obd_name,
481                        rc);
482                 GOTO(out_req, rc);
483         }
484         LASSERT(req->rq_transno == 0);
485
486         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
487         if (body == NULL)
488                 GOTO(out_req, rc = -EPROTO);
489
490         ostid_to_fid(fid, &body->oa.o_oi, d->opd_index);
491         LASSERTF(lu_fid_diff(fid, &d->opd_pre_used_fid) > 0,
492                  "reply fid "DFID" pre used fid "DFID"\n", PFID(fid),
493                  PFID(&d->opd_pre_used_fid));
494
495         diff = lu_fid_diff(fid, &d->opd_pre_last_created_fid);
496
497         spin_lock(&d->opd_pre_lock);
498         if (diff < grow) {
499                 /* the OST has not managed to create all the
500                  * objects we asked for */
501                 d->opd_pre_grow_count = max(diff, OST_MIN_PRECREATE);
502                 d->opd_pre_grow_slow = 1;
503         } else {
504                 /* the OST is able to keep up with the work,
505                  * we could consider increasing grow_count
506                  * next time if needed */
507                 d->opd_pre_grow_slow = 0;
508         }
509
510         d->opd_pre_last_created_fid = *fid;
511         spin_unlock(&d->opd_pre_lock);
512
513         CDEBUG(D_HA, "%s: current precreated pool: "DFID"-"DFID"\n",
514                d->opd_obd->obd_name, PFID(&d->opd_pre_used_fid),
515                PFID(&d->opd_pre_last_created_fid));
516 out_req:
517         /* now we can wakeup all users awaiting for objects */
518         osp_pre_update_status(d, rc);
519         cfs_waitq_signal(&d->opd_pre_user_waitq);
520
521         ptlrpc_req_finished(req);
522         RETURN(rc);
523 }
524
525 static int osp_get_lastfid_from_ost(const struct lu_env *env,
526                                     struct osp_device *d)
527 {
528         struct ptlrpc_request   *req = NULL;
529         struct obd_import       *imp;
530         struct lu_fid           *last_fid;
531         char                    *tmp;
532         int                     rc;
533         ENTRY;
534
535         imp = d->opd_obd->u.cli.cl_import;
536         LASSERT(imp);
537
538         req = ptlrpc_request_alloc(imp, &RQF_OST_GET_INFO_LAST_FID);
539         if (req == NULL)
540                 RETURN(-ENOMEM);
541
542         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY, RCL_CLIENT,
543                              sizeof(KEY_LAST_FID));
544
545         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL, RCL_CLIENT,
546                              sizeof(struct lu_fid));
547
548         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_GET_INFO);
549         if (rc) {
550                 ptlrpc_request_free(req);
551                 RETURN(rc);
552         }
553
554         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
555         memcpy(tmp, KEY_LAST_FID, sizeof(KEY_LAST_FID));
556
557         req->rq_no_delay = req->rq_no_resend = 1;
558         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
559         fid_cpu_to_le((struct lu_fid *)tmp, &d->opd_last_used_fid);
560         ptlrpc_request_set_replen(req);
561
562         rc = ptlrpc_queue_wait(req);
563         if (rc) {
564                 /* bad-bad OST.. let sysadm sort this out */
565                 if (rc == -ENOTSUPP) {
566                         CERROR("%s: server does not support FID: rc = %d\n",
567                                d->opd_obd->obd_name, -ENOTSUPP);
568                 }
569                 ptlrpc_set_import_active(imp, 0);
570                 GOTO(out, rc);
571         }
572
573         last_fid = req_capsule_server_get(&req->rq_pill, &RMF_FID);
574         if (last_fid == NULL) {
575                 CERROR("%s: Got last_fid failed.\n", d->opd_obd->obd_name);
576                 GOTO(out, rc = -EPROTO);
577         }
578
579         if (!fid_is_sane(last_fid)) {
580                 CERROR("%s: Got insane last_fid "DFID"\n",
581                        d->opd_obd->obd_name, PFID(last_fid));
582                 GOTO(out, rc = -EPROTO);
583         }
584
585         /* Only update the last used fid, if the OST has objects for
586          * this sequence, i.e. fid_oid > 0 */
587         if (fid_oid(last_fid) > 0)
588                 d->opd_last_used_fid = *last_fid;
589
590         CDEBUG(D_HA, "%s: Got last_fid "DFID"\n", d->opd_obd->obd_name,
591                PFID(last_fid));
592
593 out:
594         ptlrpc_req_finished(req);
595         RETURN(rc);
596 }
597
598 /**
599  * asks OST to clean precreate orphans
600  * and gets next id for new objects
601  */
602 static int osp_precreate_cleanup_orphans(struct lu_env *env,
603                                          struct osp_device *d)
604 {
605         struct osp_thread_info  *osi = osp_env_info(env);
606         struct lu_fid           *last_fid = &osi->osi_fid;
607         struct ptlrpc_request   *req = NULL;
608         struct obd_import       *imp;
609         struct ost_body         *body;
610         struct l_wait_info       lwi = { 0 };
611         int                      update_status = 0;
612         int                      rc;
613         int                      diff;
614
615         ENTRY;
616
617         /*
618          * wait for local recovery to finish, so we can cleanup orphans
619          * orphans are all objects since "last used" (assigned), but
620          * there might be objects reserved and in some cases they won't
621          * be used. we can't cleanup them till we're sure they won't be
622          * used. also can't we allow new reservations because they may
623          * end up getting orphans being cleaned up below. so we block
624          * new reservations and wait till all reserved objects either
625          * user or released.
626          */
627         spin_lock(&d->opd_pre_lock);
628         d->opd_pre_recovering = 1;
629         spin_unlock(&d->opd_pre_lock);
630         /*
631          * The locking above makes sure the opd_pre_reserved check below will
632          * catch all osp_precreate_reserve() calls who find
633          * "!opd_pre_recovering".
634          */
635         l_wait_event(d->opd_pre_waitq,
636                      (!d->opd_pre_reserved && d->opd_recovery_completed) ||
637                      !osp_precreate_running(d) || d->opd_got_disconnected,
638                      &lwi);
639         if (!osp_precreate_running(d) || d->opd_got_disconnected)
640                 GOTO(out, rc = -EAGAIN);
641
642         CDEBUG(D_HA, "%s: going to cleanup orphans since "DFID"\n",
643                d->opd_obd->obd_name, PFID(&d->opd_last_used_fid));
644
645         *last_fid = d->opd_last_used_fid;
646         /* The OSP should already get the valid seq now */
647         LASSERT(!fid_is_zero(last_fid));
648         if (fid_oid(&d->opd_last_used_fid) < 2) {
649                 /* lastfid looks strange... ask OST */
650                 rc = osp_get_lastfid_from_ost(env, d);
651                 if (rc)
652                         GOTO(out, rc);
653         }
654
655         imp = d->opd_obd->u.cli.cl_import;
656         LASSERT(imp);
657
658         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
659         if (req == NULL)
660                 GOTO(out, rc = -ENOMEM);
661
662         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
663         if (rc) {
664                 ptlrpc_request_free(req);
665                 req = NULL;
666                 GOTO(out, rc);
667         }
668
669         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
670         if (body == NULL)
671                 GOTO(out, rc = -EPROTO);
672
673         body->oa.o_flags = OBD_FL_DELORPHAN;
674         body->oa.o_valid = OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
675
676         fid_to_ostid(&d->opd_last_used_fid, &body->oa.o_oi);
677
678         ptlrpc_request_set_replen(req);
679
680         /* Don't resend the delorphan req */
681         req->rq_no_resend = req->rq_no_delay = 1;
682
683         rc = ptlrpc_queue_wait(req);
684         if (rc) {
685                 update_status = 1;
686                 GOTO(out, rc);
687         }
688
689         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
690         if (body == NULL)
691                 GOTO(out, rc = -EPROTO);
692
693         /*
694          * OST provides us with id new pool starts from in body->oa.o_id
695          */
696         ostid_to_fid(last_fid, &body->oa.o_oi, d->opd_index);
697
698         spin_lock(&d->opd_pre_lock);
699         diff = lu_fid_diff(&d->opd_last_used_fid, last_fid);
700         if (diff > 0) {
701                 d->opd_pre_grow_count = OST_MIN_PRECREATE + diff;
702                 d->opd_pre_last_created_fid = d->opd_last_used_fid;
703         } else {
704                 d->opd_pre_grow_count = OST_MIN_PRECREATE;
705                 d->opd_pre_last_created_fid = *last_fid;
706         }
707         /*
708          * This empties the pre-creation pool and effectively blocks any new
709          * reservations.
710          */
711         LASSERT(fid_oid(&d->opd_pre_last_created_fid) <=
712                 LUSTRE_DATA_SEQ_MAX_WIDTH);
713         d->opd_pre_used_fid = d->opd_pre_last_created_fid;
714         d->opd_pre_grow_slow = 0;
715         spin_unlock(&d->opd_pre_lock);
716
717         CDEBUG(D_HA, "%s: Got last_id "DFID" from OST, last_created "DFID
718                "last_used is "DFID"\n", d->opd_obd->obd_name, PFID(last_fid),
719                PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_last_used_fid));
720 out:
721         if (req)
722                 ptlrpc_req_finished(req);
723
724         d->opd_pre_recovering = 0;
725
726         /*
727          * If rc is zero, the pre-creation window should have been emptied.
728          * Since waking up the herd would be useless without pre-created
729          * objects, we defer the signal to osp_precreate_send() in that case.
730          */
731         if (rc != 0) {
732                 if (update_status) {
733                         CERROR("%s: cannot cleanup orphans: rc = %d\n",
734                                d->opd_obd->obd_name, rc);
735                         /* we can't proceed from here, OST seem to
736                          * be in a bad shape, better to wait for
737                          * a new instance of the server and repeat
738                          * from the beginning. notify possible waiters
739                          * this OSP isn't quite functional yet */
740                         osp_pre_update_status(d, rc);
741                 } else {
742                         cfs_waitq_signal(&d->opd_pre_user_waitq);
743                 }
744         }
745
746         RETURN(rc);
747 }
748
749 /*
750  * the function updates current precreation status used: functional or not
751  *
752  * rc is a last code from the transport, rc == 0 meaning transport works
753  * well and users of lod can use objects from this OSP
754  *
755  * the status depends on current usage of OST
756  */
757 void osp_pre_update_status(struct osp_device *d, int rc)
758 {
759         struct obd_statfs       *msfs = &d->opd_statfs;
760         int                      old = d->opd_pre_status;
761         __u64                    used;
762
763         d->opd_pre_status = rc;
764         if (rc)
765                 goto out;
766
767         /* Add a bit of hysteresis so this flag isn't continually flapping,
768          * and ensure that new files don't get extremely fragmented due to
769          * only a small amount of available space in the filesystem.
770          * We want to set the NOSPC flag when there is less than ~0.1% free
771          * and clear it when there is at least ~0.2% free space, so:
772          *                   avail < ~0.1% max          max = avail + used
773          *            1025 * avail < avail + used       used = blocks - free
774          *            1024 * avail < used
775          *            1024 * avail < blocks - free
776          *                   avail < ((blocks - free) >> 10)
777          *
778          * On very large disk, say 16TB 0.1% will be 16 GB. We don't want to
779          * lose that amount of space so in those cases we report no space left
780          * if their is less than 1 GB left.                             */
781         if (likely(msfs->os_type)) {
782                 used = min_t(__u64, (msfs->os_blocks - msfs->os_bfree) >> 10,
783                                     1 << 30);
784                 if ((msfs->os_ffree < 32) || (msfs->os_bavail < used)) {
785                         d->opd_pre_status = -ENOSPC;
786                         if (old != -ENOSPC)
787                                 CDEBUG(D_INFO, "%s: status: "LPU64" blocks, "
788                                        LPU64" free, "LPU64" used, "LPU64" "
789                                        "avail -> %d: rc = %d\n",
790                                        d->opd_obd->obd_name, msfs->os_blocks,
791                                        msfs->os_bfree, used, msfs->os_bavail,
792                                        d->opd_pre_status, rc);
793                         CDEBUG(D_INFO,
794                                "non-commited changes: %lu, in progress: %u\n",
795                                d->opd_syn_changes, d->opd_syn_rpc_in_progress);
796                 } else if (old == -ENOSPC) {
797                         d->opd_pre_status = 0;
798                         d->opd_pre_grow_slow = 0;
799                         d->opd_pre_grow_count = OST_MIN_PRECREATE;
800                         cfs_waitq_signal(&d->opd_pre_waitq);
801                         CDEBUG(D_INFO, "%s: no space: "LPU64" blocks, "LPU64
802                                " free, "LPU64" used, "LPU64" avail -> %d: "
803                                "rc = %d\n", d->opd_obd->obd_name,
804                                msfs->os_blocks, msfs->os_bfree, used,
805                                msfs->os_bavail, d->opd_pre_status, rc);
806                 }
807         }
808
809 out:
810         cfs_waitq_signal(&d->opd_pre_user_waitq);
811 }
812
813 static int osp_init_pre_fid(struct osp_device *osp)
814 {
815         struct lu_env           env;
816         struct osp_thread_info  *osi;
817         struct lu_client_seq    *cli_seq;
818         struct lu_fid           *last_fid;
819         int                     rc;
820         ENTRY;
821
822         /* Return if last_used fid has been initialized */
823         if (!fid_is_zero(&osp->opd_last_used_fid))
824                 RETURN(0);
825
826         rc = lu_env_init(&env, osp->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
827         if (rc) {
828                 CERROR("%s: init env error: rc = %d\n",
829                        osp->opd_obd->obd_name, rc);
830                 RETURN(rc);
831         }
832
833         osi = osp_env_info(&env);
834         last_fid = &osi->osi_fid;
835         fid_zero(last_fid);
836         /* For a freshed fs, it will allocate a new sequence first */
837         if (osp_is_fid_client(osp) && osp->opd_group != 0) {
838                 cli_seq = osp->opd_obd->u.cli.cl_seq;
839                 rc = seq_client_get_seq(&env, cli_seq, &last_fid->f_seq);
840                 if (rc != 0) {
841                         CERROR("%s: alloc fid error: rc = %d\n",
842                                osp->opd_obd->obd_name, rc);
843                         GOTO(out, rc);
844                 }
845         } else {
846                 last_fid->f_seq = fid_idif_seq(0, osp->opd_index);
847         }
848         last_fid->f_oid = 1;
849         last_fid->f_ver = 0;
850
851         spin_lock(&osp->opd_pre_lock);
852         osp->opd_last_used_fid = *last_fid;
853         osp->opd_pre_used_fid = *last_fid;
854         osp->opd_pre_last_created_fid = *last_fid;
855         spin_unlock(&osp->opd_pre_lock);
856         rc = osp_write_last_oid_seq_files(&env, osp, last_fid, 1);
857         if (rc != 0) {
858                 CERROR("%s: write fid error: rc = %d\n",
859                        osp->opd_obd->obd_name, rc);
860                 GOTO(out, rc);
861         }
862 out:
863         lu_env_fini(&env);
864         RETURN(rc);
865 }
866
867 static int osp_precreate_thread(void *_arg)
868 {
869         struct osp_device       *d = _arg;
870         struct ptlrpc_thread    *thread = &d->opd_pre_thread;
871         struct l_wait_info       lwi = { 0 };
872         struct lu_env            env;
873         int                      rc;
874
875         ENTRY;
876
877         rc = lu_env_init(&env, d->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
878         if (rc) {
879                 CERROR("%s: init env error: rc = %d\n", d->opd_obd->obd_name,
880                        rc);
881                 RETURN(rc);
882         }
883
884         spin_lock(&d->opd_pre_lock);
885         thread->t_flags = SVC_RUNNING;
886         spin_unlock(&d->opd_pre_lock);
887         cfs_waitq_signal(&thread->t_ctl_waitq);
888
889         while (osp_precreate_running(d)) {
890                 /*
891                  * need to be connected to OST
892                  */
893                 while (osp_precreate_running(d)) {
894                         l_wait_event(d->opd_pre_waitq,
895                                      !osp_precreate_running(d) ||
896                                      d->opd_new_connection,
897                                      &lwi);
898
899                         if (!d->opd_new_connection)
900                                 continue;
901
902                         d->opd_new_connection = 0;
903                         d->opd_got_disconnected = 0;
904                         break;
905                 }
906
907                 if (!osp_precreate_running(d))
908                         break;
909
910                 LASSERT(d->opd_obd->u.cli.cl_seq != NULL);
911                 if (d->opd_obd->u.cli.cl_seq->lcs_exp == NULL) {
912                         /* Get new sequence for client first */
913                         LASSERT(d->opd_exp != NULL);
914                         d->opd_obd->u.cli.cl_seq->lcs_exp =
915                         class_export_get(d->opd_exp);
916                         rc = osp_init_pre_fid(d);
917                         if (rc != 0) {
918                                 class_export_put(d->opd_exp);
919                                 d->opd_obd->u.cli.cl_seq->lcs_exp = NULL;
920                                 CERROR("%s: init pre fid error: rc = %d\n",
921                                        d->opd_obd->obd_name, rc);
922                                 continue;
923                         }
924                 }
925
926                 osp_statfs_update(d);
927
928                 /*
929                  * Clean up orphans or recreate missing objects.
930                  */
931                 rc = osp_precreate_cleanup_orphans(&env, d);
932                 if (rc != 0)
933                         continue;
934                 /*
935                  * connected, can handle precreates now
936                  */
937                 while (osp_precreate_running(d)) {
938                         l_wait_event(d->opd_pre_waitq,
939                                      !osp_precreate_running(d) ||
940                                      osp_precreate_near_empty(&env, d) ||
941                                      osp_statfs_need_update(d) ||
942                                      d->opd_got_disconnected, &lwi);
943
944                         if (!osp_precreate_running(d))
945                                 break;
946
947                         /* something happened to the connection
948                          * have to start from the beginning */
949                         if (d->opd_got_disconnected)
950                                 break;
951
952                         if (osp_statfs_need_update(d))
953                                 osp_statfs_update(d);
954
955                         /* To avoid handling different seq in precreate/orphan
956                          * cleanup, it will hold precreate until current seq is
957                          * used up. */
958                         if (unlikely(osp_precreate_end_seq(&env, d) &&
959                             !osp_create_end_seq(&env, d)))
960                                 continue;
961
962                         if (unlikely(osp_precreate_end_seq(&env, d) &&
963                                      osp_create_end_seq(&env, d))) {
964                                 LCONSOLE_INFO("%s:"LPX64" is used up."
965                                               " Update to new seq\n",
966                                               d->opd_obd->obd_name,
967                                          fid_seq(&d->opd_pre_last_created_fid));
968                                 rc = osp_precreate_rollover_new_seq(&env, d);
969                                 if (rc)
970                                         continue;
971                         }
972
973                         if (osp_precreate_near_empty(&env, d)) {
974                                 rc = osp_precreate_send(&env, d);
975                                 /* osp_precreate_send() sets opd_pre_status
976                                  * in case of error, that prevent the using of
977                                  * failed device. */
978                                 if (rc < 0 && rc != -ENOSPC &&
979                                     rc != -ETIMEDOUT && rc != -ENOTCONN)
980                                         CERROR("%s: cannot precreate objects:"
981                                                " rc = %d\n",
982                                                d->opd_obd->obd_name, rc);
983                         }
984                 }
985         }
986
987         thread->t_flags = SVC_STOPPED;
988         lu_env_fini(&env);
989         cfs_waitq_signal(&thread->t_ctl_waitq);
990
991         RETURN(0);
992 }
993
994 static int osp_precreate_ready_condition(const struct lu_env *env,
995                                          struct osp_device *d)
996 {
997         if (d->opd_pre_recovering)
998                 return 0;
999
1000         /* ready if got enough precreated objects */
1001         /* we need to wait for others (opd_pre_reserved) and our object (+1) */
1002         if (d->opd_pre_reserved + 1 < osp_objs_precreated(env, d))
1003                 return 1;
1004
1005         /* ready if OST reported no space and no destroys in progress */
1006         if (d->opd_syn_changes + d->opd_syn_rpc_in_progress == 0 &&
1007             d->opd_pre_status == -ENOSPC)
1008                 return 1;
1009
1010         /* Bail out I/O fails to OST */
1011         if (d->opd_pre_status == -EIO)
1012                 return 1;
1013
1014         return 0;
1015 }
1016
1017 static int osp_precreate_timeout_condition(void *data)
1018 {
1019         struct osp_device *d = data;
1020
1021         LCONSOLE_WARN("%s: slow creates, last="DFID", next="DFID", "
1022                       "reserved="LPU64", syn_changes=%lu, "
1023                       "syn_rpc_in_progress=%d, status=%d\n",
1024                       d->opd_obd->obd_name, PFID(&d->opd_pre_last_created_fid),
1025                       PFID(&d->opd_pre_used_fid), d->opd_pre_reserved,
1026                       d->opd_syn_changes, d->opd_syn_rpc_in_progress,
1027                       d->opd_pre_status);
1028
1029         return 1;
1030 }
1031
1032 /*
1033  * called to reserve object in the pool
1034  * return codes:
1035  *  ENOSPC - no space on corresponded OST
1036  *  EAGAIN - precreation is in progress, try later
1037  *  EIO    - no access to OST
1038  */
1039 int osp_precreate_reserve(const struct lu_env *env, struct osp_device *d)
1040 {
1041         struct l_wait_info       lwi;
1042         cfs_time_t               expire = cfs_time_shift(obd_timeout);
1043         int                      precreated, rc;
1044
1045         ENTRY;
1046
1047         LASSERTF(osp_objs_precreated(env, d) >= 0, "Last created FID "DFID
1048                  "Next FID "DFID"\n", PFID(&d->opd_pre_last_created_fid),
1049                  PFID(&d->opd_pre_used_fid));
1050
1051         /*
1052          * wait till:
1053          *  - preallocation is done
1054          *  - no free space expected soon
1055          *  - can't connect to OST for too long (obd_timeout)
1056          *  - OST can allocate fid sequence.
1057          */
1058         while ((rc = d->opd_pre_status) == 0 || rc == -ENOSPC ||
1059                 rc == -ENODEV || rc == -EAGAIN) {
1060
1061                 /*
1062                  * increase number of precreations
1063                  */
1064                 precreated = osp_objs_precreated(env, d);
1065                 if (d->opd_pre_grow_count < d->opd_pre_max_grow_count &&
1066                     d->opd_pre_grow_slow == 0 &&
1067                     precreated <= (d->opd_pre_grow_count / 4 + 1)) {
1068                         spin_lock(&d->opd_pre_lock);
1069                         d->opd_pre_grow_slow = 1;
1070                         d->opd_pre_grow_count *= 2;
1071                         spin_unlock(&d->opd_pre_lock);
1072                 }
1073
1074                 spin_lock(&d->opd_pre_lock);
1075                 precreated = osp_objs_precreated(env, d);
1076                 if (precreated > d->opd_pre_reserved &&
1077                     !d->opd_pre_recovering) {
1078                         d->opd_pre_reserved++;
1079                         spin_unlock(&d->opd_pre_lock);
1080                         rc = 0;
1081
1082                         /* XXX: don't wake up if precreation is in progress */
1083                         if (osp_precreate_near_empty_nolock(env, d) &&
1084                            !osp_precreate_end_seq_nolock(env, d))
1085                                 cfs_waitq_signal(&d->opd_pre_waitq);
1086
1087                         break;
1088                 }
1089                 spin_unlock(&d->opd_pre_lock);
1090
1091                 /*
1092                  * all precreated objects have been used and no-space
1093                  * status leave us no chance to succeed very soon
1094                  * but if there is destroy in progress, then we should
1095                  * wait till that is done - some space might be released
1096                  */
1097                 if (unlikely(rc == -ENOSPC)) {
1098                         if (d->opd_syn_changes) {
1099                                 /* force local commit to release space */
1100                                 dt_commit_async(env, d->opd_storage);
1101                         }
1102                         if (d->opd_syn_rpc_in_progress) {
1103                                 /* just wait till destroys are done */
1104                                 /* see l_wait_even() few lines below */
1105                         }
1106                         if (d->opd_syn_changes +
1107                             d->opd_syn_rpc_in_progress == 0) {
1108                                 /* no hope for free space */
1109                                 break;
1110                         }
1111                 }
1112
1113                 /* XXX: don't wake up if precreation is in progress */
1114                 cfs_waitq_signal(&d->opd_pre_waitq);
1115
1116                 lwi = LWI_TIMEOUT(expire - cfs_time_current(),
1117                                 osp_precreate_timeout_condition, d);
1118                 if (cfs_time_aftereq(cfs_time_current(), expire)) {
1119                         rc = -ETIMEDOUT;
1120                         break;
1121                 }
1122
1123                 l_wait_event(d->opd_pre_user_waitq,
1124                              osp_precreate_ready_condition(env, d), &lwi);
1125         }
1126
1127         RETURN(rc);
1128 }
1129
1130 /*
1131  * this function relies on reservation made before
1132  */
1133 int osp_precreate_get_fid(const struct lu_env *env, struct osp_device *d,
1134                           struct lu_fid *fid)
1135 {
1136         /* grab next id from the pool */
1137         spin_lock(&d->opd_pre_lock);
1138
1139         LASSERTF(lu_fid_diff(&d->opd_pre_used_fid,
1140                              &d->opd_pre_last_created_fid) < 0,
1141                  "next fid "DFID" last created fid "DFID"\n",
1142                  PFID(&d->opd_pre_used_fid),
1143                  PFID(&d->opd_pre_last_created_fid));
1144
1145         d->opd_pre_used_fid.f_oid++;
1146         memcpy(fid, &d->opd_pre_used_fid, sizeof(*fid));
1147         d->opd_pre_reserved--;
1148         /*
1149          * last_used_id must be changed along with getting new id otherwise
1150          * we might miscalculate gap causing object loss or leak
1151          */
1152         osp_update_last_fid(d, fid);
1153         spin_unlock(&d->opd_pre_lock);
1154
1155         /*
1156          * probably main thread suspended orphan cleanup till
1157          * all reservations are released, see comment in
1158          * osp_precreate_thread() just before orphan cleanup
1159          */
1160         if (unlikely(d->opd_pre_reserved == 0 && d->opd_pre_status))
1161                 cfs_waitq_signal(&d->opd_pre_waitq);
1162
1163         return 0;
1164 }
1165
1166 /*
1167  *
1168  */
1169 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt,
1170                         __u64 size)
1171 {
1172         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
1173         struct ptlrpc_request   *req = NULL;
1174         struct obd_import       *imp;
1175         struct ost_body         *body;
1176         struct obdo             *oa = NULL;
1177         int                      rc;
1178
1179         ENTRY;
1180
1181         imp = d->opd_obd->u.cli.cl_import;
1182         LASSERT(imp);
1183
1184         req = ptlrpc_request_alloc(imp, &RQF_OST_PUNCH);
1185         if (req == NULL)
1186                 RETURN(-ENOMEM);
1187
1188         /* XXX: capa support? */
1189         /* osc_set_capa_size(req, &RMF_CAPA1, capa); */
1190         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_PUNCH);
1191         if (rc) {
1192                 ptlrpc_request_free(req);
1193                 RETURN(rc);
1194         }
1195
1196         /*
1197          * XXX: decide how do we do here with resend
1198          * if we don't resend, then client may see wrong file size
1199          * if we do resend, then MDS thread can get stuck for quite long
1200          */
1201         req->rq_no_resend = req->rq_no_delay = 1;
1202
1203         req->rq_request_portal = OST_IO_PORTAL; /* bug 7198 */
1204         ptlrpc_at_set_req_timeout(req);
1205
1206         OBD_ALLOC_PTR(oa);
1207         if (oa == NULL)
1208                 GOTO(out, rc = -ENOMEM);
1209
1210         rc = fid_to_ostid(lu_object_fid(&dt->do_lu), &oa->o_oi);
1211         LASSERT(rc == 0);
1212         oa->o_size = size;
1213         oa->o_blocks = OBD_OBJECT_EOF;
1214         oa->o_valid = OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
1215                       OBD_MD_FLID | OBD_MD_FLGROUP;
1216
1217         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
1218         LASSERT(body);
1219         lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
1220
1221         /* XXX: capa support? */
1222         /* osc_pack_capa(req, body, capa); */
1223
1224         ptlrpc_request_set_replen(req);
1225
1226         rc = ptlrpc_queue_wait(req);
1227         if (rc)
1228                 CERROR("can't punch object: %d\n", rc);
1229 out:
1230         ptlrpc_req_finished(req);
1231         if (oa)
1232                 OBD_FREE_PTR(oa);
1233         RETURN(rc);
1234 }
1235
1236 int osp_init_precreate(struct osp_device *d)
1237 {
1238         struct l_wait_info       lwi = { 0 };
1239         cfs_task_t              *task;
1240
1241         ENTRY;
1242
1243         /* initially precreation isn't ready */
1244         d->opd_pre_status = -EAGAIN;
1245         fid_zero(&d->opd_pre_used_fid);
1246         d->opd_pre_used_fid.f_oid = 1;
1247         fid_zero(&d->opd_pre_last_created_fid);
1248         d->opd_pre_last_created_fid.f_oid = 1;
1249         d->opd_pre_reserved = 0;
1250         d->opd_got_disconnected = 1;
1251         d->opd_pre_grow_slow = 0;
1252         d->opd_pre_grow_count = OST_MIN_PRECREATE;
1253         d->opd_pre_min_grow_count = OST_MIN_PRECREATE;
1254         d->opd_pre_max_grow_count = OST_MAX_PRECREATE;
1255
1256         spin_lock_init(&d->opd_pre_lock);
1257         cfs_waitq_init(&d->opd_pre_waitq);
1258         cfs_waitq_init(&d->opd_pre_user_waitq);
1259         cfs_waitq_init(&d->opd_pre_thread.t_ctl_waitq);
1260
1261         /*
1262          * Initialize statfs-related things
1263          */
1264         d->opd_statfs_maxage = 5; /* default update interval */
1265         d->opd_statfs_fresh_till = cfs_time_shift(-1000);
1266         CDEBUG(D_OTHER, "current %llu, fresh till %llu\n",
1267                (unsigned long long)cfs_time_current(),
1268                (unsigned long long)d->opd_statfs_fresh_till);
1269         cfs_timer_init(&d->opd_statfs_timer, osp_statfs_timer_cb, d);
1270
1271         /*
1272          * start thread handling precreation and statfs updates
1273          */
1274         task = kthread_run(osp_precreate_thread, d,
1275                                "osp-pre-%u", d->opd_index);
1276         if (IS_ERR(task)) {
1277                 CERROR("can't start precreate thread %ld\n", PTR_ERR(task));
1278                 RETURN(PTR_ERR(task));
1279         }
1280
1281         l_wait_event(d->opd_pre_thread.t_ctl_waitq,
1282                      osp_precreate_running(d) || osp_precreate_stopped(d),
1283                      &lwi);
1284
1285         RETURN(0);
1286 }
1287
1288 void osp_precreate_fini(struct osp_device *d)
1289 {
1290         struct ptlrpc_thread *thread = &d->opd_pre_thread;
1291
1292         ENTRY;
1293
1294         cfs_timer_disarm(&d->opd_statfs_timer);
1295
1296         thread->t_flags = SVC_STOPPING;
1297         cfs_waitq_signal(&d->opd_pre_waitq);
1298
1299         cfs_wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_STOPPED);
1300
1301         EXIT;
1302 }
1303