Whamcloud - gitweb
44129f00c63ca06884c2b0434788fe45822722f9
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/osp/osp_precreate.c
32  *
33  * Lustre OST Proxy Device
34  *
35  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
36  * Author: Mikhail Pershin <mike.pershin@intel.com>
37  * Author: Di Wang <di.wang@intel.com>
38  */
39
40 #define DEBUG_SUBSYSTEM S_MDS
41
42 #include <linux/kthread.h>
43
44 #include <lustre_obdo.h>
45
46 #include "osp_internal.h"
47
48 /*
49  * there are two specific states to take care about:
50  *
51  * = import is disconnected =
52  *
53  * = import is inactive =
54  *   in this case osp_declare_create() returns an error
55  *
56  */
57
58 /**
59  * Check whether statfs data is expired
60  *
61  * OSP device caches statfs data for the target, the function checks
62  * whether the data is expired or not.
63  *
64  * \param[in] d         OSP device
65  *
66  * \retval              0 - not expired, 1 - expired
67  */
68 static inline int osp_statfs_need_update(struct osp_device *d)
69 {
70         return !ktime_before(ktime_get(), d->opd_statfs_fresh_till);
71 }
72
73 /*
74  * OSP tries to maintain pool of available objects so that calls to create
75  * objects don't block most of time
76  *
77  * each time OSP gets connected to OST, we should start from precreation cleanup
78  */
79 static void osp_statfs_timer_cb(cfs_timer_cb_arg_t data)
80 {
81         struct osp_device *d = cfs_from_timer(d, data, opd_statfs_timer);
82
83         LASSERT(d);
84         /* invalidate statfs data so osp_precreate_thread() can refresh */
85         d->opd_statfs_fresh_till = ktime_sub_ns(ktime_get(), NSEC_PER_SEC);
86         if (d->opd_pre_task)
87                 wake_up(&d->opd_pre_waitq);
88 }
89
90 static void osp_pre_update_msfs(struct osp_device *d, struct obd_statfs *msfs);
91
92 /*
93  * The function updates current precreation status if broken, and
94  * updates that cached statfs state if functional, then wakes up waiters.
95  * We don't clear opd_pre_status directly here, but rather leave this
96  * to osp_pre_update_msfs() to do if everything is OK so that we don't
97  * have a race to clear opd_pre_status and then set it to -ENOSPC again.
98  *
99  * \param[in] d         OSP device
100  * \param[in] msfs      statfs data
101  * \param[in] rc        new precreate status for device \a d
102  */
103 static void osp_pre_update_status_msfs(struct osp_device *d,
104                                        struct obd_statfs *msfs, int rc)
105 {
106         CDEBUG(D_INFO, "%s: Updating status = %d\n", d->opd_obd->obd_name, rc);
107         if (rc)
108                 d->opd_pre_status = rc;
109         else
110                 osp_pre_update_msfs(d, msfs);
111
112         wake_up_all(&d->opd_pre_user_waitq);
113 }
114
115 /* Pass in the old statfs data in case the limits have changed */
116 void osp_pre_update_status(struct osp_device *d, int rc)
117 {
118         osp_pre_update_status_msfs(d, &d->opd_statfs, rc);
119 }
120
121
122 /**
123  * RPC interpret callback for OST_STATFS RPC
124  *
125  * An interpretation callback called by ptlrpc for OST_STATFS RPC when it is
126  * replied by the target. It's used to maintain statfs cache for the target.
127  * The function fills data from the reply if successful and schedules another
128  * update.
129  *
130  * \param[in] env       LU environment provided by the caller
131  * \param[in] req       RPC replied
132  * \param[in] aa        callback data
133  * \param[in] rc        RPC result
134  *
135  * \retval 0            on success
136  * \retval negative     negated errno on error
137  */
138 static int osp_statfs_interpret(const struct lu_env *env,
139                                 struct ptlrpc_request *req, void *args, int rc)
140 {
141         union ptlrpc_async_args *aa = args;
142         struct obd_import *imp = req->rq_import;
143         struct obd_statfs *msfs;
144         struct obd_statfs *sfs;
145         struct osp_device *d;
146         u64 maxage_ns;
147
148         ENTRY;
149
150         aa = ptlrpc_req_async_args(aa, req);
151         d = aa->pointer_arg[0];
152         LASSERT(d);
153
154         if (rc != 0)
155                 GOTO(out, rc);
156
157         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
158         if (msfs == NULL)
159                 GOTO(out, rc = -EPROTO);
160
161         if (d->opd_pre)
162                 osp_pre_update_status_msfs(d, msfs, 0);
163         else
164                 osp_pre_update_msfs(d, msfs);
165
166         /* schedule next update */
167         maxage_ns = d->opd_statfs_maxage * NSEC_PER_SEC;
168         d->opd_statfs_fresh_till = ktime_add_ns(ktime_get(), maxage_ns);
169         mod_timer(&d->opd_statfs_timer,
170                   jiffies + cfs_time_seconds(d->opd_statfs_maxage));
171         d->opd_statfs_update_in_progress = 0;
172
173         sfs = &d->opd_statfs;
174         CDEBUG(D_CACHE,
175                "%s (%p): %llu blocks, %llu free, %llu avail, %u bsize, %u reserved mb low, %u reserved mb high, %u reserved ino low, %u reserved ino high, %llu files, %llu free files %#x\n",
176                d->opd_obd->obd_name, d, sfs->os_blocks, sfs->os_bfree,
177                sfs->os_bavail, sfs->os_bsize, d->opd_reserved_mb_low,
178                d->opd_reserved_mb_high, d->opd_reserved_ino_low,
179                d->opd_reserved_ino_high, sfs->os_files, sfs->os_ffree,
180                sfs->os_state);
181
182         RETURN(0);
183 out:
184         /* couldn't update statfs, try again with a small delay */
185         d->opd_statfs_fresh_till = ktime_add_ns(ktime_get(), 10 * NSEC_PER_SEC);
186         d->opd_statfs_update_in_progress = 0;
187         if (d->opd_pre && d->opd_pre_task)
188                 wake_up(&d->opd_pre_waitq);
189
190         if (req->rq_import_generation == imp->imp_generation)
191                 CDEBUG(D_CACHE, "%s: couldn't update statfs: rc = %d\n",
192                        d->opd_obd->obd_name, rc);
193         RETURN(rc);
194 }
195
196 /**
197  * Send OST_STATFS RPC
198  *
199  * Sends OST_STATFS RPC to refresh cached statfs data for the target.
200  * Also disables scheduled updates as times OSP may need to refresh
201  * statfs data before expiration. The function doesn't block, instead
202  * an interpretation callback osp_statfs_interpret() is used.
203  *
204  * \param[in] d         OSP device
205  */
206 static int osp_statfs_update(const struct lu_env *env, struct osp_device *d)
207 {
208         u64 expire = obd_timeout * 1000 * NSEC_PER_SEC;
209         struct ptlrpc_request   *req;
210         struct obd_import       *imp;
211         union ptlrpc_async_args *aa;
212         int rc;
213
214         ENTRY;
215
216         CDEBUG(D_CACHE, "going to update statfs\n");
217
218         imp = d->opd_obd->u.cli.cl_import;
219         LASSERT(imp);
220
221         req = ptlrpc_request_alloc(imp,
222                            d->opd_pre ? &RQF_OST_STATFS : &RQF_MDS_STATFS);
223         if (req == NULL)
224                 RETURN(-ENOMEM);
225
226         rc = ptlrpc_request_pack(req,
227                          d->opd_pre ? LUSTRE_OST_VERSION : LUSTRE_MDS_VERSION,
228                          d->opd_pre ? OST_STATFS : MDS_STATFS);
229         if (rc) {
230                 ptlrpc_request_free(req);
231                 RETURN(rc);
232         }
233         ptlrpc_request_set_replen(req);
234         if (d->opd_pre)
235                 req->rq_request_portal = OST_CREATE_PORTAL;
236         ptlrpc_at_set_req_timeout(req);
237
238         req->rq_interpret_reply = osp_statfs_interpret;
239         aa = ptlrpc_req_async_args(aa, req);
240         aa->pointer_arg[0] = d;
241
242         /*
243          * no updates till reply
244          */
245         timer_delete(&d->opd_statfs_timer);
246         d->opd_statfs_fresh_till = ktime_add_ns(ktime_get(), expire);
247         d->opd_statfs_update_in_progress = 1;
248
249         ptlrpcd_add_req(req);
250
251         /* we still want to sync changes if no new changes are coming */
252         if (ktime_before(ktime_get(), d->opd_sync_next_commit_cb))
253                 GOTO(out, rc);
254
255         if (atomic_read(&d->opd_sync_changes)) {
256                 struct thandle *th;
257
258                 th = dt_trans_create(env, d->opd_storage);
259                 if (IS_ERR(th)) {
260                         CERROR("%s: can't sync\n", d->opd_obd->obd_name);
261                         GOTO(out, rc);
262                 }
263                 rc = dt_trans_start_local(env, d->opd_storage, th);
264                 if (rc == 0) {
265                         CDEBUG(D_OTHER, "%s: sync forced, %d changes\n",
266                                d->opd_obd->obd_name,
267                                atomic_read(&d->opd_sync_changes));
268                         osp_sync_add_commit_cb_1s(env, d, th);
269                 }
270                 dt_trans_stop(env, d->opd_storage, th);
271         }
272
273 out:
274         RETURN(0);
275 }
276
277 /**
278  * Schedule an immediate update for statfs data
279  *
280  * If cached statfs data claim no free space, but OSP has got a request to
281  * destroy an object (so release some space probably), then we may need to
282  * refresh cached statfs data sooner than planned. The function checks there
283  * is no statfs update going and schedules immediate update if so.
284  * XXX: there might be a case where removed object(s) do not add free space (empty
285  * object). If the number of such deletions is high, then we can start to update
286  * statfs too often causing a RPC storm. some throttling is needed...
287  *
288  * \param[in] d         OSP device where statfs data needs to be refreshed
289  */
290 void osp_statfs_need_now(struct osp_device *d)
291 {
292         if (!d->opd_statfs_update_in_progress) {
293                 /*
294                  * if current status is -ENOSPC (lack of free space on OST)
295                  * then we should poll OST immediately once object destroy
296                  * is replied
297                  */
298                 d->opd_statfs_fresh_till = ktime_sub_ns(ktime_get(), NSEC_PER_SEC);
299                 timer_delete(&d->opd_statfs_timer);
300                 wake_up(&d->opd_pre_waitq);
301         }
302 }
303
304 /**
305  * Return number of precreated objects
306  *
307  * A simple helper to calculate the number of precreated objects on the device.
308  *
309  * \param[in] env       LU environment provided by the caller
310  * \param[in] osp       OSP device
311  *
312  * \retval              the number of the precreated objects
313  */
314 static inline int osp_objs_precreated(const struct lu_env *env,
315                                       struct osp_device *osp)
316 {
317         return osp_fid_diff(&osp->opd_pre_last_created_fid,
318                             &osp->opd_pre_used_fid);
319 }
320
321 /**
322  * Check pool of precreated objects is nearly empty
323  *
324  * We should not wait till the pool of the precreated objects is exhausted,
325  * because then there will be a long period of OSP being unavailable for the
326  * new creations due to lenghty precreate RPC. Instead we ask for another
327  * precreation ahead and hopefully have it ready before the current pool is
328  * empty. Notice this function relies on an external locking.
329  *
330  * \param[in] env       LU environment provided by the caller
331  * \param[in] d         OSP device
332  *
333  * \retval              0 - current pool is good enough, 1 - time to precreate
334  */
335 static inline int osp_precreate_near_empty_nolock(const struct lu_env *env,
336                                                   struct osp_device *d)
337 {
338         int window = osp_objs_precreated(env, d);
339
340         /* don't consider new precreation till OST is healty and
341          * has free space */
342         return ((window - d->opd_pre_reserved < d->opd_pre_create_count / 2 ||
343                  d->opd_force_creation) && (d->opd_pre_status == 0));
344 }
345
346 /**
347  * Check pool of precreated objects
348  *
349  * This is protected version of osp_precreate_near_empty_nolock(), check that
350  * for the details.
351  *
352  * \param[in] env       LU environment provided by the caller
353  * \param[in] d         OSP device
354  *
355  * \retval              0 - current pool is good enough, 1 - time to precreate
356  */
357 static inline int osp_precreate_near_empty(const struct lu_env *env,
358                                            struct osp_device *d)
359 {
360         int rc;
361
362         if (d->opd_pre == NULL)
363                 return 0;
364
365         /* XXX: do we really need locking here? */
366         spin_lock(&d->opd_pre_lock);
367         rc = osp_precreate_near_empty_nolock(env, d);
368         spin_unlock(&d->opd_pre_lock);
369         return rc;
370 }
371
372 /**
373  * Write FID into into last_oid/last_seq file
374  *
375  * The function stores the sequence and the in-sequence id into two dedicated
376  * files. The sync argument can be used to request synchronous commit, so the
377  * function won't return until the updates are committed.
378  *
379  * \param[in] env       LU environment provided by the caller
380  * \param[in] osp       OSP device
381  * \param[in] fid       fid where sequence/id is taken
382  * \param[in] sync      update mode: 0 - asynchronously, 1 - synchronously
383  *
384  * \retval 0            on success
385  * \retval negative     negated errno on error
386  **/
387 int osp_write_last_oid_seq_files(struct lu_env *env, struct osp_device *osp,
388                                  struct lu_fid *fid, int sync)
389 {
390         struct osp_thread_info  *oti = osp_env_info(env);
391         struct lu_buf      *lb_oid = &oti->osi_lb;
392         struct lu_buf      *lb_oseq = &oti->osi_lb2;
393         loff_t             oid_off;
394         u64                oid;
395         loff_t             oseq_off;
396         struct thandle    *th;
397         int                   rc;
398         ENTRY;
399
400         if (osp->opd_storage->dd_rdonly)
401                 RETURN(0);
402
403         /* Note: through f_oid is only 32 bits, it will also write 64 bits
404          * for oid to keep compatibility with the previous version. */
405         oid = fid->f_oid;
406         osp_objid_buf_prep(lb_oid, &oid_off,
407                            &oid, osp->opd_index);
408
409         osp_objseq_buf_prep(lb_oseq, &oseq_off,
410                             &fid->f_seq, osp->opd_index);
411
412         th = dt_trans_create(env, osp->opd_storage);
413         if (IS_ERR(th))
414                 RETURN(PTR_ERR(th));
415
416         th->th_sync |= sync;
417         rc = dt_declare_record_write(env, osp->opd_last_used_oid_file,
418                                      lb_oid, oid_off, th);
419         if (rc != 0)
420                 GOTO(out, rc);
421
422         rc = dt_declare_record_write(env, osp->opd_last_used_seq_file,
423                                      lb_oseq, oseq_off, th);
424         if (rc != 0)
425                 GOTO(out, rc);
426
427         rc = dt_trans_start_local(env, osp->opd_storage, th);
428         if (rc != 0)
429                 GOTO(out, rc);
430
431         rc = dt_record_write(env, osp->opd_last_used_oid_file, lb_oid,
432                              &oid_off, th);
433         if (rc != 0) {
434                 CERROR("%s: can not write to last seq file: rc = %d\n",
435                         osp->opd_obd->obd_name, rc);
436                 GOTO(out, rc);
437         }
438         rc = dt_record_write(env, osp->opd_last_used_seq_file, lb_oseq,
439                              &oseq_off, th);
440         if (rc) {
441                 CERROR("%s: can not write to last seq file: rc = %d\n",
442                         osp->opd_obd->obd_name, rc);
443                 GOTO(out, rc);
444         }
445 out:
446         dt_trans_stop(env, osp->opd_storage, th);
447         RETURN(rc);
448 }
449
450 static void osp_update_fldb_cache(const struct lu_env *env,
451                                   struct osp_device *osp,
452                                   struct lu_fid *fid)
453 {
454         struct lu_seq_range range = { 0 };
455         struct lu_server_fld *server_fld;
456         struct lu_site *site;
457
458         site = osp->opd_storage->dd_lu_dev.ld_site;
459         server_fld = lu_site2seq(site)->ss_server_fld;
460         if (!server_fld)
461                 return;
462
463         fld_range_set_type(&range, LU_SEQ_RANGE_ANY);
464         fld_server_lookup(env, server_fld, fid_seq(fid), &range);
465 }
466
467 /**
468  * Switch to another sequence
469  *
470  * When a current sequence has no available IDs left, OSP has to switch to
471  * another new sequence. OSP requests it using the regular FLDB protocol
472  * and stores synchronously before that is used in precreate. This is needed
473  * to basically have the sequences referenced (not orphaned), otherwise it's
474  * possible that OST has some objects precreated and the clients have data
475  * written to it, but after MDT failover nobody refers those objects and OSP
476  * has no idea that the sequence need cleanup to be done.
477  * While this is very expensive operation, it's supposed to happen infrequently
478  * because sequence has LUSTRE_DATA_SEQ_MAX_WIDTH=32M objects by default.
479  *
480  * \param[in] env       LU environment provided by the caller
481  * \param[in] osp       OSP device
482  *
483  * \retval 0            on success
484  * \retval negative     negated errno on error
485  */
486 static int osp_precreate_rollover_new_seq(struct lu_env *env,
487                                           struct osp_device *osp)
488 {
489         struct lu_fid   *fid = &osp_env_info(env)->osi_fid;
490         struct lu_fid   *last_fid = &osp->opd_last_used_fid;
491         int             rc;
492         ENTRY;
493
494         rc = seq_client_get_seq(env, osp->opd_obd->u.cli.cl_seq, &fid->f_seq);
495         if (rc != 0) {
496                 CERROR("%s: alloc fid error: rc = %d\n",
497                        osp->opd_obd->obd_name, rc);
498                 RETURN(rc);
499         }
500
501         fid->f_oid = 1;
502         fid->f_ver = 0;
503         LASSERTF(fid_seq(fid) != fid_seq(last_fid),
504                  "fid "DFID", last_fid "DFID"\n", PFID(fid),
505                  PFID(last_fid));
506
507         rc = osp_write_last_oid_seq_files(env, osp, fid, 1);
508         if (rc != 0) {
509                 CERROR("%s: Can not update oid/seq file: rc = %d\n",
510                        osp->opd_obd->obd_name, rc);
511                 RETURN(rc);
512         }
513
514         LCONSOLE(D_INFO, "%s: update sequence from %#llx to %#llx\n",
515                  osp->opd_obd->obd_name, fid_seq(last_fid),
516                  fid_seq(fid));
517         /* Update last_xxx to the new seq */
518         spin_lock(&osp->opd_pre_lock);
519         osp->opd_last_used_fid = *fid;
520         osp_fid_to_obdid(fid, &osp->opd_last_id);
521         osp->opd_gap_start_fid = *fid;
522         osp->opd_pre_used_fid = *fid;
523         osp->opd_pre_last_created_fid = *fid;
524         spin_unlock(&osp->opd_pre_lock);
525
526         if (!rc)
527                 osp_update_fldb_cache(env, osp, fid);
528
529         RETURN(rc);
530 }
531
532 /**
533  * Find IDs available in current sequence
534  *
535  * The function calculates the highest possible ID and the number of IDs
536  * available in the current sequence OSP is using. The number is limited
537  * artifically by the caller (grow param) and the number of IDs available
538  * in the sequence by nature. The function doesn't require an external
539  * locking.
540  *
541  * \param[in] env       LU environment provided by the caller
542  * \param[in] osp       OSP device
543  * \param[in] fid       FID the caller wants to start with
544  * \param[in] grow      how many the caller wants
545  * \param[out] fid      the highest calculated FID
546  * \param[out] grow     the number of available IDs calculated
547  *
548  * \retval              0 on success, 1 - the sequence is empty
549  */
550 static int osp_precreate_fids(const struct lu_env *env, struct osp_device *osp,
551                               struct lu_fid *fid, int *grow)
552 {
553         struct osp_thread_info *osi = osp_env_info(env);
554         __u64 seq_width = osp->opd_pre_seq_width;
555         __u64 end;
556         int i = 0;
557
558         if (fid_is_idif(fid)) {
559                 struct lu_fid   *last_fid;
560                 struct ost_id   *oi = &osi->osi_oi;
561                 int rc;
562
563                 spin_lock(&osp->opd_pre_lock);
564                 last_fid = &osp->opd_pre_last_created_fid;
565                 fid_to_ostid(last_fid, oi);
566                 end = min(ostid_id(oi) + *grow, min(IDIF_MAX_OID, seq_width));
567                 *grow = end - ostid_id(oi);
568                 rc = ostid_set_id(oi, ostid_id(oi) + *grow);
569                 spin_unlock(&osp->opd_pre_lock);
570
571                 if (*grow == 0 || rc)
572                         return 1;
573
574                 ostid_to_fid(fid, oi, osp->opd_index);
575                 return 0;
576         }
577
578         spin_lock(&osp->opd_pre_lock);
579         *fid = osp->opd_pre_last_created_fid;
580         end = fid->f_oid;
581         end = min((end + *grow), min(OBIF_MAX_OID, seq_width));
582         *grow = end - fid->f_oid;
583         fid->f_oid += end - fid->f_oid;
584         spin_unlock(&osp->opd_pre_lock);
585
586         CDEBUG(D_INFO, "Expect %d, actual %d ["DFID" -- "DFID"]\n",
587                *grow, i, PFID(fid), PFID(&osp->opd_pre_last_created_fid));
588
589         return *grow > 0 ? 0 : 1;
590 }
591
592 /**
593  * Prepare and send precreate RPC
594  *
595  * The function finds how many objects should be precreated.  Then allocates,
596  * prepares and schedules precreate RPC synchronously. Upon reply the function
597  * wakes up the threads waiting for the new objects on this target. If the
598  * target wasn't able to create all the objects requested, then the next
599  * precreate will be asking for fewer objects (i.e. slow precreate down).
600  *
601  * \param[in] env       LU environment provided by the caller
602  * \param[in] d         OSP device
603  *
604  * \retval 0            on success
605  * \retval negative     negated errno on error
606  **/
607 static int osp_precreate_send(const struct lu_env *env, struct osp_device *d)
608 {
609         struct osp_thread_info  *oti = osp_env_info(env);
610         struct ptlrpc_request   *req;
611         struct obd_import       *imp;
612         struct ost_body         *body;
613         int                      rc, grow, diff;
614         struct lu_fid           *fid = &oti->osi_fid;
615         ENTRY;
616
617         /* don't precreate new objects till OST healthy and has free space */
618         if (unlikely(d->opd_pre_status)) {
619                 CDEBUG(D_INFO, "%s: don't send new precreate: rc = %d\n",
620                        d->opd_obd->obd_name, d->opd_pre_status);
621                 RETURN(0);
622         }
623
624         /*
625          * if not connection/initialization is compeleted, ignore
626          */
627         imp = d->opd_obd->u.cli.cl_import;
628         LASSERT(imp);
629
630         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
631         if (req == NULL)
632                 RETURN(-ENOMEM);
633         req->rq_request_portal = OST_CREATE_PORTAL;
634
635         /* Delorphan happens only with a first MDT-OST connect. resend/replay
636          * handles objects creation on reconnects, no need to do delorhpan
637          * in this case.
638          */
639
640         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
641         if (rc) {
642                 ptlrpc_request_free(req);
643                 RETURN(rc);
644         }
645
646         spin_lock(&d->opd_pre_lock);
647         if (d->opd_force_creation)
648                 d->opd_pre_create_count = OST_MIN_PRECREATE;
649         else if (d->opd_pre_create_count > d->opd_pre_max_create_count / 2)
650                 d->opd_pre_create_count = d->opd_pre_max_create_count / 2;
651         grow = d->opd_pre_create_count;
652         spin_unlock(&d->opd_pre_lock);
653
654         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
655         LASSERT(body);
656
657         *fid = d->opd_pre_last_created_fid;
658         rc = osp_precreate_fids(env, d, fid, &grow);
659         if (rc == 1)
660                 /* Current seq has been used up*/
661                 GOTO(out_req, rc = -ENOSPC);
662
663         if (!osp_is_fid_client(d)) {
664                 /* Non-FID client will always send seq 0 because of
665                  * compatiblity */
666                 LASSERTF(fid_is_idif(fid), "Invalid fid "DFID"\n", PFID(fid));
667                 fid->f_seq = 0;
668         }
669
670         fid_to_ostid(fid, &body->oa.o_oi);
671         body->oa.o_valid = OBD_MD_FLGROUP;
672
673         ptlrpc_request_set_replen(req);
674
675         if (OBD_FAIL_CHECK(OBD_FAIL_OSP_FAKE_PRECREATE))
676                 GOTO(ready, rc = 0);
677
678         rc = ptlrpc_queue_wait(req);
679         if (rc) {
680                 CERROR("%s: can't precreate: rc = %d\n", d->opd_obd->obd_name,
681                        rc);
682                 if (req->rq_net_err)
683                         /* have osp_precreate_reserve() to wait for repeat */
684                         rc = -ENOTCONN;
685                 GOTO(out_req, rc);
686         }
687
688         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
689         if (body == NULL)
690                 GOTO(out_req, rc = -EPROTO);
691
692         ostid_to_fid(fid, &body->oa.o_oi, d->opd_index);
693
694 ready:
695         if (osp_fid_diff(fid, &d->opd_pre_used_fid) <= 0) {
696                 CERROR("%s: precreate fid "DFID" <= local used fid "DFID
697                        ": rc = %d\n", d->opd_obd->obd_name,
698                        PFID(fid), PFID(&d->opd_pre_used_fid), -ESTALE);
699                 GOTO(out_req, rc = -ESTALE);
700         }
701
702         diff = osp_fid_diff(fid, &d->opd_pre_last_created_fid);
703
704         spin_lock(&d->opd_pre_lock);
705         if (diff < grow) {
706                 /* the OST has not managed to create all the
707                  * objects we asked for */
708                 d->opd_pre_create_count = max(diff, OST_MIN_PRECREATE);
709                 d->opd_pre_create_slow = 1;
710         } else {
711                 /* the OST is able to keep up with the work,
712                  * we could consider increasing create_count
713                  * next time if needed */
714                 d->opd_pre_create_slow = 0;
715         }
716
717         if ((body->oa.o_valid & OBD_MD_FLSIZE) && body->oa.o_size)
718                 d->opd_pre_seq_width = body->oa.o_size;
719
720         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
721         fid_to_ostid(fid, &body->oa.o_oi);
722
723         d->opd_pre_last_created_fid = *fid;
724         d->opd_force_creation = false;
725         spin_unlock(&d->opd_pre_lock);
726
727         CDEBUG(D_HA, "%s: current precreated pool: "DFID"-"DFID"\n",
728                d->opd_obd->obd_name, PFID(&d->opd_pre_used_fid),
729                PFID(&d->opd_pre_last_created_fid));
730 out_req:
731         /* now we can wakeup all users awaiting for objects */
732         osp_pre_update_status(d, rc);
733
734         ptlrpc_req_finished(req);
735
736         if (!rc)
737                 osp_update_fldb_cache(env, d, fid);
738
739         RETURN(rc);
740 }
741
742 /**
743  * Get last precreated object from target (OST)
744  *
745  * Sends synchronous RPC to the target (OST) to learn the last precreated
746  * object. This later is used to remove all unused objects (cleanup orphan
747  * procedure). Also, the next object after one we got will be used as a
748  * starting point for the new precreates.
749  *
750  * \param[in] env       LU environment provided by the caller
751  * \param[in] d         OSP device
752  * \param[in] update    update or not update last used fid
753  *
754  * \retval 0            on success
755  * \retval negative     negated errno on error
756  **/
757 static int osp_get_lastfid_from_ost(const struct lu_env *env,
758                                     struct osp_device *d, bool update)
759 {
760         struct ptlrpc_request   *req = NULL;
761         struct obd_import       *imp;
762         struct lu_fid           *last_fid;
763         char                    *tmp;
764         int                     rc;
765         ENTRY;
766
767         imp = d->opd_obd->u.cli.cl_import;
768         LASSERT(imp);
769
770         req = ptlrpc_request_alloc(imp, &RQF_OST_GET_INFO_LAST_FID);
771         if (req == NULL)
772                 RETURN(-ENOMEM);
773
774         req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_KEY, RCL_CLIENT,
775                              sizeof(KEY_LAST_FID));
776
777         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_GET_INFO);
778         if (rc) {
779                 ptlrpc_request_free(req);
780                 RETURN(rc);
781         }
782
783         tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_KEY);
784         memcpy(tmp, KEY_LAST_FID, sizeof(KEY_LAST_FID));
785
786         req->rq_no_delay = req->rq_no_resend = 1;
787         last_fid = req_capsule_client_get(&req->rq_pill, &RMF_FID);
788         fid_cpu_to_le(last_fid, &d->opd_last_used_fid);
789
790         ptlrpc_request_set_replen(req);
791
792         rc = ptlrpc_queue_wait(req);
793         if (rc) {
794                 /* -EFAULT means reading LAST_FID failed (see ofd_get_info_hld),
795                  * let sysadm sort this * out.
796                  */
797                 if (rc == -EFAULT)
798                         ptlrpc_set_import_active(imp, 0);
799                 GOTO(out, rc);
800         }
801
802         last_fid = req_capsule_server_get(&req->rq_pill, &RMF_FID);
803         if (last_fid == NULL) {
804                 CERROR("%s: Got last_fid failed.\n", d->opd_obd->obd_name);
805                 GOTO(out, rc = -EPROTO);
806         }
807
808         if (!fid_is_sane(last_fid)) {
809                 CERROR("%s: Got insane last_fid "DFID"\n",
810                        d->opd_obd->obd_name, PFID(last_fid));
811                 GOTO(out, rc = -EPROTO);
812         }
813
814         /* Only update the last used fid, if the OST has objects for
815          * this sequence, i.e. fid_oid > 0 */
816         if (fid_oid(last_fid) > 0 && update)
817                 d->opd_last_used_fid = *last_fid;
818
819         if (fid_seq(last_fid) == fid_seq(&d->opd_last_used_fid)) {
820                 if (fid_oid(last_fid) == 0 ||
821                     (fid_seq_is_norm(fid_seq(last_fid)) &&
822                      fid_oid(last_fid) == LUSTRE_FID_INIT_OID)) {
823                         /* reformatted OST, it requires creation request
824                          * to recreate objects
825                          */
826                         spin_lock(&d->opd_pre_lock);
827                         d->opd_force_creation = true;
828                         spin_unlock(&d->opd_pre_lock);
829                 }
830         }
831         CDEBUG(D_HA, "%s: Got last_fid "DFID"\n", d->opd_obd->obd_name,
832                PFID(last_fid));
833
834 out:
835         ptlrpc_req_finished(req);
836         RETURN(rc);
837 }
838
839 /**
840  * Cleanup orphans on OST
841  *
842  * This function is called in a contex of a dedicated thread handling
843  * all the precreation suff. The function waits till local recovery
844  * is complete, then identify all the unreferenced objects (orphans)
845  * using the highest ID referenced by a local and the highest object
846  * precreated by the target. The found range is a subject to removal
847  * using specially flagged RPC. During this process OSP is marked
848  * unavailable for new objects.
849  *
850  * \param[in] env       LU environment provided by the caller
851  * \param[in] d         OSP device
852  *
853  * \retval 0            on success
854  * \retval negative     negated errno on error
855  */
856 static int osp_precreate_cleanup_orphans(struct lu_env *env,
857                                          struct osp_device *d)
858 {
859         struct osp_thread_info  *osi = osp_env_info(env);
860         struct lu_fid           *last_fid = &osi->osi_fid;
861         struct ptlrpc_request   *req = NULL;
862         struct obd_import       *imp;
863         struct ost_body         *body;
864         int                      update_status = 0;
865         int                      rc;
866         int                      diff;
867
868         ENTRY;
869
870         /*
871          * Do cleanup orphans only with a first connection, after that
872          * all precreate requests uses resend/replay flags to support OST
873          * failover/reconnect.
874          */
875         if (d->opd_cleanup_orphans_done) {
876                 rc = osp_get_lastfid_from_ost(env, d, false);
877                 RETURN(0);
878         }
879         /*
880          * wait for local recovery to finish, so we can cleanup orphans
881          * orphans are all objects since "last used" (assigned), but
882          * there might be objects reserved and in some cases they won't
883          * be used. we can't cleanup them till we're sure they won't be
884          * used. also can't we allow new reservations because they may
885          * end up getting orphans being cleaned up below. so we block
886          * new reservations and wait till all reserved objects either
887          * user or released.
888          */
889         spin_lock(&d->opd_pre_lock);
890         d->opd_pre_recovering = 1;
891         spin_unlock(&d->opd_pre_lock);
892         /*
893          * The locking above makes sure the opd_pre_reserved check below will
894          * catch all osp_precreate_reserve() calls who find
895          * "!opd_pre_recovering".
896          */
897         wait_event_idle(d->opd_pre_waitq,
898                         (!d->opd_pre_reserved && d->opd_recovery_completed) ||
899                         !d->opd_pre_task || d->opd_got_disconnected);
900         if (!d->opd_pre_task || d->opd_got_disconnected)
901                 GOTO(out, rc = -EAGAIN);
902
903         CDEBUG(D_HA, "%s: going to cleanup orphans since "DFID"\n",
904                d->opd_obd->obd_name, PFID(&d->opd_last_used_fid));
905
906         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_DELAY_DELORPHAN, cfs_fail_val);
907
908         *last_fid = d->opd_last_used_fid;
909         /* The OSP should already get the valid seq now */
910         LASSERT(!fid_is_zero(last_fid));
911         if (fid_oid(&d->opd_last_used_fid) < 2) {
912                 /* lastfid looks strange... ask OST */
913                 rc = osp_get_lastfid_from_ost(env, d, true);
914                 if (rc)
915                         GOTO(out, rc);
916         }
917
918         imp = d->opd_obd->u.cli.cl_import;
919         LASSERT(imp);
920
921         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
922         if (req == NULL)
923                 GOTO(out, rc = -ENOMEM);
924
925         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
926         if (rc) {
927                 ptlrpc_request_free(req);
928                 req = NULL;
929                 GOTO(out, rc);
930         }
931
932         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
933         if (body == NULL)
934                 GOTO(out, rc = -EPROTO);
935
936         body->oa.o_flags = OBD_FL_DELORPHAN;
937         body->oa.o_valid = OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
938
939         fid_to_ostid(&d->opd_last_used_fid, &body->oa.o_oi);
940
941         ptlrpc_request_set_replen(req);
942
943         /* Don't resend the delorphan req */
944         req->rq_no_resend = req->rq_no_delay = 1;
945
946         rc = ptlrpc_queue_wait(req);
947         if (rc) {
948                 update_status = 1;
949                 GOTO(out, rc);
950         }
951
952         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
953         if (body == NULL)
954                 GOTO(out, rc = -EPROTO);
955
956         /*
957          * OST provides us with id new pool starts from in body->oa.o_id
958          */
959         ostid_to_fid(last_fid, &body->oa.o_oi, d->opd_index);
960
961         spin_lock(&d->opd_pre_lock);
962         diff = osp_fid_diff(&d->opd_last_used_fid, last_fid);
963         if (diff > 0) {
964                 d->opd_pre_create_count = OST_MIN_PRECREATE + diff;
965                 d->opd_pre_last_created_fid = d->opd_last_used_fid;
966         } else {
967                 d->opd_pre_create_count = OST_MIN_PRECREATE;
968                 d->opd_pre_last_created_fid = *last_fid;
969         }
970         /*
971          * This empties the pre-creation pool and effectively blocks any new
972          * reservations.
973          */
974         LASSERTF(fid_oid(&d->opd_pre_last_created_fid) <= IDIF_MAX_OID,
975                  "%s: last_created_fid "DFID" > %llu\n",
976                  d->opd_obd->obd_name, PFID(&d->opd_pre_last_created_fid),
977                  IDIF_MAX_OID);
978         d->opd_pre_used_fid = d->opd_pre_last_created_fid;
979         d->opd_pre_create_slow = 0;
980         if ((body->oa.o_valid & OBD_MD_FLSIZE) && body->oa.o_size)
981                 d->opd_pre_seq_width = body->oa.o_size;
982         spin_unlock(&d->opd_pre_lock);
983
984         CDEBUG(D_HA, "%s: Got last_id "DFID" from OST, last_created "DFID
985                "last_used is "DFID"\n", d->opd_obd->obd_name, PFID(last_fid),
986                PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_last_used_fid));
987 out:
988         if (req)
989                 ptlrpc_req_finished(req);
990
991
992         /*
993          * If rc is zero, the pre-creation window should have been emptied.
994          * Since waking up the herd would be useless without pre-created
995          * objects, we defer the signal to osp_precreate_send() in that case.
996          */
997         if (rc != 0) {
998                 if (update_status) {
999                         CERROR("%s: cannot cleanup orphans: rc = %d\n",
1000                                d->opd_obd->obd_name, rc);
1001                         /* we can't proceed from here, OST seem to
1002                          * be in a bad shape, better to wait for
1003                          * a new instance of the server and repeat
1004                          * from the beginning. notify possible waiters
1005                          * this OSP isn't quite functional yet */
1006                         osp_pre_update_status(d, rc);
1007                 } else {
1008                         wake_up_all(&d->opd_pre_user_waitq);
1009                 }
1010         } else {
1011                 spin_lock(&d->opd_pre_lock);
1012                 d->opd_pre_recovering = 0;
1013                 spin_unlock(&d->opd_pre_lock);
1014                 d->opd_cleanup_orphans_done = true;
1015         }
1016
1017         RETURN(rc);
1018 }
1019
1020 /**
1021  * Update precreate status using statfs data
1022  *
1023  * The function decides whether this OSP should be used for new objects.
1024  * IOW, whether this OST is used up or has some free space. Cached statfs
1025  * data is used to make this decision. If the latest result of statfs
1026  * request (rc argument) is not success, then just mark OSP unavailable
1027  * right away.
1028  *
1029  * The new statfs data is passed in \a msfs and needs to be stored into
1030  * opd_statfs, but only after the various flags in os_state are set, so
1031  * that the new statfs data is not visible without appropriate flags set.
1032  * As such, there is no need to clear the flags here, since this is called
1033  * with new statfs data, and they should not be cleared if sent from OST.
1034  *
1035  * Add a bit of hysteresis so this flag isn't continually flapping, and
1036  * ensure that new files don't get extremely fragmented due to only a
1037  * small amount of available space in the filesystem.  We want to set
1038  * the ENOSPC/ENOINO flags unconditionally when there is less than the
1039  * reserved size free, and still copy them from the old state when there
1040  * is less than 2*reserved size free space or inodes.
1041  *
1042  * \param[in] d         OSP device
1043  * \param[in] msfs      statfs data
1044  */
1045 static void osp_pre_update_msfs(struct osp_device *d, struct obd_statfs *msfs)
1046 {
1047         u32 old_state = d->opd_statfs.os_state;
1048         u64 available_mb;
1049
1050         /* statfs structure not initialized yet */
1051         if (unlikely(!msfs->os_type))
1052                 return;
1053
1054         /* if the low and high watermarks have not been initialized yet */
1055         if (unlikely(d->opd_reserved_mb_high == 0 &&
1056                      d->opd_reserved_mb_low == 0)) {
1057                 /* Use ~0.1% by default to disable object allocation,
1058                  * and ~0.2% to enable, size in MB, set both watermark
1059                  */
1060                 spin_lock(&d->opd_pre_lock);
1061                 if (d->opd_reserved_mb_high == 0 &&
1062                     d->opd_reserved_mb_low == 0) {
1063                         d->opd_reserved_mb_low = ((msfs->os_bsize >> 10) *
1064                                                   msfs->os_blocks) >> 20;
1065                         if (d->opd_reserved_mb_low < 1)
1066                                 d->opd_reserved_mb_low = 1;
1067                         d->opd_reserved_mb_high =
1068                                 (d->opd_reserved_mb_low << 1) + 1;
1069                 }
1070                 spin_unlock(&d->opd_pre_lock);
1071         }
1072
1073         if (unlikely(d->opd_reserved_ino_high == 0 &&
1074                      d->opd_reserved_ino_low == 0)) {
1075                 /* Use ~0.0001% by default to disallow distributed transactions,
1076                  * and ~0.0002% to allow, set both watermark
1077                  */
1078                 spin_lock(&d->opd_pre_lock);
1079                 if (d->opd_reserved_ino_high == 0 &&
1080                     d->opd_reserved_ino_low == 0) {
1081                         d->opd_reserved_ino_low = msfs->os_ffree >> 20;
1082                         if (d->opd_reserved_ino_low < 32)
1083                                 d->opd_reserved_ino_low = 32;
1084                         d->opd_reserved_ino_high =
1085                                 (d->opd_reserved_ino_low << 1) + 1;
1086                 }
1087                 spin_unlock(&d->opd_pre_lock);
1088         }
1089
1090         available_mb = (msfs->os_bavail * (msfs->os_bsize >> 10)) >> 10;
1091         if (msfs->os_ffree < d->opd_reserved_ino_low)
1092                 msfs->os_state |= OS_STATFS_ENOINO;
1093         else if (msfs->os_ffree <= d->opd_reserved_ino_high)
1094                 msfs->os_state |= old_state & OS_STATFS_ENOINO;
1095         /* else don't clear flags in new msfs->os_state sent from OST */
1096
1097         if (available_mb < d->opd_reserved_mb_low)
1098                 msfs->os_state |= OS_STATFS_ENOSPC;
1099         else if (available_mb <= d->opd_reserved_mb_high)
1100                 msfs->os_state |= old_state & OS_STATFS_ENOSPC;
1101         /* else don't clear flags in new msfs->os_state sent from OST */
1102
1103         CDEBUG(D_INFO,
1104                "%s: blocks=%llu free=%llu avail=%llu avail_mb=%llu hwm_mb=%u files=%llu ffree=%llu state=%x: rc = %d\n",
1105                d->opd_obd->obd_name, msfs->os_blocks, msfs->os_bfree,
1106                msfs->os_bavail, available_mb, d->opd_reserved_mb_high,
1107                msfs->os_files, msfs->os_ffree, msfs->os_state,
1108                d->opd_pre ? d->opd_pre_status : 0);
1109
1110         if (!d->opd_pre)
1111                 goto update;
1112
1113         if (msfs->os_state & (OS_STATFS_ENOINO | OS_STATFS_ENOSPC)) {
1114                 d->opd_pre_status = -ENOSPC;
1115                 if (!(old_state & (OS_STATFS_ENOINO | OS_STATFS_ENOSPC)))
1116                         CDEBUG(D_INFO, "%s: full: state=%x: rc = %x\n",
1117                                d->opd_obd->obd_name, msfs->os_state,
1118                                d->opd_pre_status);
1119                 CDEBUG(D_INFO, "uncommitted changes=%u in_progress=%u\n",
1120                        atomic_read(&d->opd_sync_changes),
1121                        atomic_read(&d->opd_sync_rpcs_in_progress));
1122         } else if (old_state & (OS_STATFS_ENOINO | OS_STATFS_ENOSPC)) {
1123                 d->opd_pre_status = 0;
1124                 spin_lock(&d->opd_pre_lock);
1125                 d->opd_pre_create_slow = 0;
1126                 d->opd_pre_create_count = OST_MIN_PRECREATE;
1127                 spin_unlock(&d->opd_pre_lock);
1128                 wake_up(&d->opd_pre_waitq);
1129
1130                 CDEBUG(D_INFO,
1131                        "%s: available: state=%x: rc = %d\n",
1132                        d->opd_obd->obd_name, msfs->os_state,
1133                        d->opd_pre_status);
1134         } else {
1135                 /* we only get here if rc == 0 in the caller */
1136                 d->opd_pre_status = 0;
1137         }
1138
1139         /* Object precreation skipped on OST if manually disabled */
1140         if (d->opd_pre_max_create_count == 0)
1141                 msfs->os_state |= OS_STATFS_NOPRECREATE;
1142         /* else don't clear flags in new msfs->os_state sent from OST */
1143
1144 update:
1145         /* copy only new statfs state to make it visible to MDS threads */
1146         if (&d->opd_statfs != msfs)
1147                 d->opd_statfs = *msfs;
1148 }
1149
1150 /**
1151  * Initialize FID for precreation
1152  *
1153  * For a just created new target, a new sequence should be taken.
1154  * The function checks there is no IDIF in use (if the target was
1155  * added with the older version of Lustre), then requests a new
1156  * sequence from FLDB using the regular protocol. Then this new
1157  * sequence is stored on a persisten storage synchronously to prevent
1158  * possible object leakage (for the detail see the description for
1159  * osp_precreate_rollover_new_seq()).
1160  *
1161  * \param[in] osp       OSP device
1162  *
1163  * \retval 0            on success
1164  * \retval negative     negated errno on error
1165  */
1166 int osp_init_pre_fid(struct lu_env *env, struct osp_device *osp)
1167 {
1168         struct osp_thread_info  *osi;
1169         struct lu_client_seq    *cli_seq;
1170         struct lu_fid           *last_fid;
1171         int                     rc;
1172         ENTRY;
1173
1174         LASSERT(osp->opd_pre != NULL);
1175
1176         /* Let's check if the current last_seq/fid is valid,
1177          * otherwise request new sequence from the controller */
1178         if (osp_is_fid_client(osp) && osp->opd_group != 0) {
1179                 /* Non-MDT0 can only use normal sequence for
1180                  * OST objects */
1181                 if (fid_is_norm(&osp->opd_last_used_fid))
1182                         RETURN(0);
1183         } else {
1184                 /* Initially MDT0 will start with IDIF, after
1185                  * that it will request new sequence from the
1186                  * controller */
1187                 if (fid_is_idif(&osp->opd_last_used_fid) ||
1188                     fid_is_norm(&osp->opd_last_used_fid))
1189                         RETURN(0);
1190         }
1191
1192         if (!fid_is_zero(&osp->opd_last_used_fid))
1193                 CWARN("%s: invalid last used fid "DFID
1194                       ", try to get new sequence.\n",
1195                       osp->opd_obd->obd_name,
1196                       PFID(&osp->opd_last_used_fid));
1197
1198         osi = osp_env_info(env);
1199         last_fid = &osi->osi_fid;
1200         fid_zero(last_fid);
1201         /* For a freshed fs, it will allocate a new sequence first */
1202         if (osp_is_fid_client(osp) && osp->opd_group != 0) {
1203                 cli_seq = osp->opd_obd->u.cli.cl_seq;
1204                 rc = seq_client_get_seq(env, cli_seq, &last_fid->f_seq);
1205                 if (rc != 0) {
1206                         CERROR("%s: alloc fid error: rc = %d\n",
1207                                osp->opd_obd->obd_name, rc);
1208                         GOTO(out, rc);
1209                 }
1210         } else {
1211                 last_fid->f_seq = fid_idif_seq(0, osp->opd_index);
1212         }
1213         last_fid->f_oid = 1;
1214         last_fid->f_ver = 0;
1215
1216         spin_lock(&osp->opd_pre_lock);
1217         osp->opd_last_used_fid = *last_fid;
1218         osp->opd_pre_used_fid = *last_fid;
1219         osp->opd_pre_last_created_fid = *last_fid;
1220         spin_unlock(&osp->opd_pre_lock);
1221         rc = osp_write_last_oid_seq_files(env, osp, last_fid, 1);
1222         if (rc != 0) {
1223                 CERROR("%s: write fid error: rc = %d\n",
1224                        osp->opd_obd->obd_name, rc);
1225                 GOTO(out, rc);
1226         }
1227 out:
1228         RETURN(rc);
1229 }
1230
1231 struct opt_args {
1232         struct osp_device       *opta_dev;
1233         struct lu_env           opta_env;
1234         struct completion       *opta_started;
1235 };
1236 /**
1237  * The core of precreate functionality
1238  *
1239  * The function implements the main precreation loop. Basically it
1240  * involves connecting to the target, precerate FID initialization,
1241  * identifying and removing orphans, then serving precreation. As
1242  * part of the latter, the thread is responsible for statfs data
1243  * updates. The precreation is mostly driven by another threads
1244  * asking for new OST objects - those askers wake the thread when
1245  * the number of precreated objects reach low watermark.
1246  * After a disconnect, the sequence above repeats. This is keep going
1247  * until the thread is requested to stop.
1248  *
1249  * \param[in] _arg      private data the thread (OSP device to handle)
1250  *
1251  * \retval 0            on success
1252  * \retval negative     negated errno on error
1253  */
1254 static int osp_precreate_thread(void *_args)
1255 {
1256         struct opt_args         *args = _args;
1257         struct osp_device       *d = args->opta_dev;
1258         struct lu_env           *env = &args->opta_env;
1259         int                      rc;
1260
1261         ENTRY;
1262
1263         complete(args->opta_started);
1264
1265         /* wait for connection from the layers above */
1266         wait_event_idle(d->opd_pre_waitq,
1267                         kthread_should_stop() ||
1268                         d->opd_obd->u.cli.cl_seq->lcs_exp != NULL);
1269
1270         while (!kthread_should_stop()) {
1271                 /*
1272                  * need to be connected to OST
1273                  */
1274                 while (!kthread_should_stop()) {
1275                         if ((d->opd_pre == NULL || d->opd_pre_recovering) &&
1276                             d->opd_imp_connected &&
1277                             !d->opd_got_disconnected)
1278                                 break;
1279                         wait_event_idle(d->opd_pre_waitq,
1280                                         kthread_should_stop() ||
1281                                         d->opd_new_connection);
1282
1283                         if (!d->opd_new_connection)
1284                                 continue;
1285
1286                         OBD_FAIL_TIMEOUT(OBD_FAIL_OSP_CON_EVENT_DELAY,
1287                                          cfs_fail_val);
1288                         d->opd_new_connection = 0;
1289                         d->opd_got_disconnected = 0;
1290                         break;
1291                 }
1292
1293                 if (kthread_should_stop())
1294                         break;
1295
1296                 if (d->opd_pre) {
1297                         LASSERT(d->opd_obd->u.cli.cl_seq != NULL);
1298                         LASSERT(d->opd_obd->u.cli.cl_seq->lcs_exp != NULL);
1299
1300                         /* Init fid for osp_precreate if necessary */
1301                         rc = osp_init_pre_fid(env, d);
1302                         if (rc != 0) {
1303                                 class_export_put(d->opd_exp);
1304                                 d->opd_obd->u.cli.cl_seq->lcs_exp = NULL;
1305                                 CERROR("%s: init pre fid error: rc = %d\n",
1306                                                 d->opd_obd->obd_name, rc);
1307                                 continue;
1308                         }
1309                 }
1310
1311                 if (osp_statfs_update(env, d)) {
1312                         if (wait_event_idle_timeout(d->opd_pre_waitq,
1313                                                     kthread_should_stop(),
1314                                                     cfs_time_seconds(5)) == 0)
1315                                 l_wait_event_abortable(
1316                                         d->opd_pre_waitq,
1317                                         kthread_should_stop());
1318                         continue;
1319                 }
1320
1321                 if (d->opd_pre) {
1322                         /*
1323                          * Clean up orphans or recreate missing objects.
1324                          */
1325                         rc = osp_precreate_cleanup_orphans(env, d);
1326                         if (rc != 0) {
1327                                 schedule_timeout_interruptible(cfs_time_seconds(1));
1328                                 continue;
1329                         }
1330                 }
1331
1332                 /*
1333                  * connected, can handle precreates now
1334                  */
1335                 while (!kthread_should_stop()) {
1336                         wait_event_idle(d->opd_pre_waitq,
1337                                         kthread_should_stop() ||
1338                                         (osp_precreate_near_empty(env, d) &&
1339                                          !(osp_precreate_end_seq(env, d) &&
1340                                            osp_objs_precreated(env, d) != 0)) ||
1341                                         osp_statfs_need_update(d) ||
1342                                         d->opd_got_disconnected);
1343
1344                         if (kthread_should_stop())
1345                                 break;
1346
1347                         /* something happened to the connection
1348                          * have to start from the beginning */
1349                         if (d->opd_got_disconnected)
1350                                 break;
1351
1352                         if (osp_statfs_need_update(d))
1353                                 if (osp_statfs_update(env, d))
1354                                         break;
1355
1356                         if (d->opd_pre == NULL)
1357                                 continue;
1358
1359                         /* To avoid handling different seq in precreate/orphan
1360                          * cleanup, it will hold precreate until current seq is
1361                          * used up. */
1362                         if (unlikely(osp_precreate_end_seq(env, d))) {
1363                                 if (osp_objs_precreated(env, d) == 0) {
1364                                         rc = osp_precreate_rollover_new_seq(env, d);
1365                                         if (rc)
1366                                                 continue;
1367                                 } else {
1368                                         continue;
1369                                 }
1370                         }
1371
1372                         if (osp_precreate_near_empty(env, d)) {
1373                                 rc = osp_precreate_send(env, d);
1374                                 /* osp_precreate_send() sets opd_pre_status
1375                                  * in case of error, that prevent the using of
1376                                  * failed device. */
1377                                 if (rc < 0 && rc != -ENOSPC &&
1378                                     rc != -ETIMEDOUT && rc != -ENOTCONN)
1379                                         CERROR("%s: cannot precreate objects:"
1380                                                " rc = %d\n",
1381                                                d->opd_obd->obd_name, rc);
1382                         }
1383                 }
1384         }
1385
1386         lu_env_fini(env);
1387         OBD_FREE_PTR(args);
1388
1389         RETURN(0);
1390 }
1391
1392 /**
1393  * Check when to stop to wait for precreate objects.
1394  *
1395  * The caller wanting a new OST object can't wait undefinitely. The
1396  * function checks for few conditions including available new OST
1397  * objects, disconnected OST, lack of space with no pending destroys,
1398  * etc. IOW, it checks whether the current OSP state is good to keep
1399  * waiting or it's better to give up.
1400  *
1401  * \param[in] env       LU environment provided by the caller
1402  * \param[in] d         OSP device
1403  *
1404  * \retval              0 - keep waiting, 1 - no luck
1405  */
1406 static int osp_precreate_ready_condition(const struct lu_env *env,
1407                                          struct osp_device *d)
1408 {
1409         /* Bail out I/O fails to OST */
1410         if (d->opd_pre_status != 0 &&
1411             d->opd_pre_status != -EAGAIN &&
1412             d->opd_pre_status != -ENODEV &&
1413             d->opd_pre_status != -ENOTCONN &&
1414             d->opd_pre_status != -ENOSPC) {
1415                 /* DEBUG LU-3230 */
1416                 if (d->opd_pre_status != -EIO)
1417                         CERROR("%s: precreate failed opd_pre_status %d\n",
1418                                d->opd_obd->obd_name, d->opd_pre_status);
1419                 return 1;
1420         }
1421
1422         if (d->opd_pre_recovering || d->opd_force_creation)
1423                 return 0;
1424
1425         /* ready if got enough precreated objects */
1426         /* we need to wait for others (opd_pre_reserved) and our object (+1) */
1427         if (d->opd_pre_reserved + 1 < osp_objs_precreated(env, d))
1428                 return 1;
1429
1430         /* ready if OST reported no space and no destroys in progress */
1431         if (atomic_read(&d->opd_sync_changes) +
1432             atomic_read(&d->opd_sync_rpcs_in_progress) == 0 &&
1433             d->opd_pre_status == -ENOSPC)
1434                 return 1;
1435
1436         return 0;
1437 }
1438
1439 /**
1440  * Reserve object in precreate pool
1441  *
1442  * When the caller wants to create a new object on this target (target
1443  * represented by the given OSP), it should declare this intention using
1444  * a regular ->dt_declare_create() OSD API method. Then OSP will be trying
1445  * to reserve an object in the existing precreated pool or wait up to
1446  * obd_timeout for the available object to appear in the pool (a dedicated
1447  * thread will be doing real precreation in background). The object can be
1448  * consumed later with osp_precreate_get_fid() or be released with call to
1449  * lu_object_put(). Notice the function doesn't reserve a specific ID, just
1450  * some ID. The actual ID assignment happen in osp_precreate_get_fid().
1451  * If the space on the target is short and there is a pending object destroy,
1452  * then the function forces local commit to speedup space release (see
1453  * osp_sync.c for the details).
1454  *
1455  * \param[in] env       LU environment provided by the caller
1456  * \param[in] d         OSP device
1457  *
1458  * \retval              0 on success
1459  * \retval              -ENOSPC when no space on OST
1460  * \retval              -EAGAIN try later, slow precreation in progress
1461  * \retval              -EIO when no access to OST
1462  */
1463 int osp_precreate_reserve(const struct lu_env *env, struct osp_device *d,
1464                           bool can_block)
1465 {
1466         time64_t expire = ktime_get_seconds() + obd_timeout;
1467         int precreated, rc, synced = 0;
1468
1469         ENTRY;
1470
1471         LASSERTF(osp_objs_precreated(env, d) >= 0, "Last created FID "DFID
1472                  "Next FID "DFID"\n", PFID(&d->opd_pre_last_created_fid),
1473                  PFID(&d->opd_pre_used_fid));
1474
1475         /* opd_pre_max_create_count 0 to not use specified OST. */
1476         if (d->opd_pre_max_create_count == 0)
1477                 RETURN(-ENOBUFS);
1478
1479         /*
1480          * wait till:
1481          *  - preallocation is done
1482          *  - no free space expected soon
1483          *  - can't connect to OST for too long (obd_timeout)
1484          *  - OST can allocate fid sequence.
1485          */
1486         while ((rc = d->opd_pre_status) == 0 || rc == -ENOSPC ||
1487                 rc == -ENODEV || rc == -EAGAIN || rc == -ENOTCONN) {
1488
1489                 /*
1490                  * increase number of precreations
1491                  */
1492                 precreated = osp_objs_precreated(env, d);
1493                 if (d->opd_pre_create_count < d->opd_pre_max_create_count &&
1494                     d->opd_pre_create_slow == 0 &&
1495                     precreated <= (d->opd_pre_create_count / 4 + 1)) {
1496                         spin_lock(&d->opd_pre_lock);
1497                         d->opd_pre_create_slow = 1;
1498                         d->opd_pre_create_count *= 2;
1499                         spin_unlock(&d->opd_pre_lock);
1500                 }
1501
1502                 spin_lock(&d->opd_pre_lock);
1503                 precreated = osp_objs_precreated(env, d);
1504                 if (!d->opd_pre_recovering && !d->opd_force_creation) {
1505                         if (precreated > d->opd_pre_reserved) {
1506                                 d->opd_pre_reserved++;
1507                                 spin_unlock(&d->opd_pre_lock);
1508                                 rc = 0;
1509
1510                                 /*
1511                                  * XXX: don't wake up if precreation
1512                                  * is in progress
1513                                  */
1514                                 if (osp_precreate_near_empty_nolock(env, d) &&
1515                                    !osp_precreate_end_seq_nolock(env, d))
1516                                         wake_up(&d->opd_pre_waitq);
1517
1518                                 break;
1519                         } else if (unlikely(precreated &&
1520                                    osp_precreate_end_seq_nolock(env, d))) {
1521                                 /*
1522                                  * precreate pool is reaching the end of the
1523                                  * current seq, and doesn't have enough objects
1524                                  */
1525                                 rc = -ENOSPC;
1526                                 spin_unlock(&d->opd_pre_lock);
1527                                 break;
1528                         }
1529                 }
1530                 spin_unlock(&d->opd_pre_lock);
1531
1532                 /*
1533                  * all precreated objects have been used and no-space
1534                  * status leave us no chance to succeed very soon
1535                  * but if there is destroy in progress, then we should
1536                  * wait till that is done - some space might be released
1537                  */
1538                 if (unlikely(rc == -ENOSPC)) {
1539                         if (atomic_read(&d->opd_sync_changes) && synced == 0) {
1540                                 /* force local commit to release space */
1541                                 dt_commit_async(env, d->opd_storage);
1542                                 osp_sync_check_for_work(d);
1543                                 synced = 1;
1544                         }
1545                         if (atomic_read(&d->opd_sync_rpcs_in_progress)) {
1546                                 /* just wait till destroys are done
1547                                  * see wait_event_idle_timeout() below
1548                                  */
1549                         }
1550                         if (atomic_read(&d->opd_sync_changes) +
1551                             atomic_read(&d->opd_sync_rpcs_in_progress) == 0) {
1552                                 /* no hope for free space */
1553                                 break;
1554                         }
1555                 }
1556
1557                 /* XXX: don't wake up if precreation is in progress */
1558                 wake_up(&d->opd_pre_waitq);
1559
1560                 if (ktime_get_seconds() >= expire) {
1561                         rc = -ETIMEDOUT;
1562                         break;
1563                 }
1564
1565                 if (!can_block) {
1566                         LASSERT(d->opd_pre);
1567                         rc = -ENOBUFS;
1568                         break;
1569                 }
1570
1571                 CDEBUG(D_INFO, "%s: Sleeping on objects\n",
1572                        d->opd_obd->obd_name);
1573                 if (wait_event_idle_timeout(
1574                             d->opd_pre_user_waitq,
1575                             osp_precreate_ready_condition(env, d),
1576                             cfs_time_seconds(obd_timeout)) == 0) {
1577                         CDEBUG(D_HA,
1578                                "%s: slow creates, last="DFID", next="DFID", "
1579                                "reserved=%llu, sync_changes=%u, "
1580                                "sync_rpcs_in_progress=%d, status=%d\n",
1581                                d->opd_obd->obd_name,
1582                                PFID(&d->opd_pre_last_created_fid),
1583                                PFID(&d->opd_pre_used_fid), d->opd_pre_reserved,
1584                                atomic_read(&d->opd_sync_changes),
1585                                atomic_read(&d->opd_sync_rpcs_in_progress),
1586                                d->opd_pre_status);
1587                 } else {
1588                         CDEBUG(D_INFO, "%s: Waked up, status=%d\n",
1589                                d->opd_obd->obd_name, d->opd_pre_status);
1590                 }
1591         }
1592
1593         RETURN(rc);
1594 }
1595
1596 /**
1597  * Get a FID from precreation pool
1598  *
1599  * The function is a companion for osp_precreate_reserve() - it assigns
1600  * a specific FID from the precreate. The function should be called only
1601  * if the call to osp_precreate_reserve() was successful. The function
1602  * updates a local storage to remember the highest object ID referenced
1603  * by the node in the given sequence.
1604  *
1605  * A very importan details: this is supposed to be called once the
1606  * transaction is started, so on-disk update will be atomic with the
1607  * data (like LOVEA) refering this object. Then the object won't be leaked:
1608  * either it's referenced by the committed transaction or it's a subject
1609  * to the orphan cleanup procedure.
1610  *
1611  * \param[in] env       LU environment provided by the caller
1612  * \param[in] d         OSP device
1613  * \param[out] fid      generated FID
1614  *
1615  * \retval 0            on success
1616  * \retval negative     negated errno on error
1617  */
1618 int osp_precreate_get_fid(const struct lu_env *env, struct osp_device *d,
1619                           struct lu_fid *fid)
1620 {
1621         struct lu_fid *pre_used_fid = &d->opd_pre_used_fid;
1622
1623         /* grab next id from the pool */
1624         spin_lock(&d->opd_pre_lock);
1625
1626         LASSERTF(osp_fid_diff(&d->opd_pre_used_fid,
1627                              &d->opd_pre_last_created_fid) < 0,
1628                  "next fid "DFID" > last created fid "DFID"\n",
1629                  PFID(&d->opd_pre_used_fid),
1630                  PFID(&d->opd_pre_last_created_fid));
1631
1632         /* Non-IDIF FIDs shouldn't get here with OID == OBIF_MAX_OID. For IDIF,
1633          * f_oid wraps and "f_seq" (holding high 16 bits of ID) needs increment
1634          */
1635         if (fid_is_idif(pre_used_fid) &&
1636             unlikely(fid_oid(pre_used_fid) == OBIF_MAX_OID)) {
1637                 struct ost_id oi;
1638                 __u32 idx = fid_idif_ost_idx(pre_used_fid);
1639
1640                 fid_to_ostid(pre_used_fid, &oi);
1641                 oi.oi.oi_id++;
1642                 ostid_to_fid(pre_used_fid, &oi, idx);
1643         } else {
1644                 pre_used_fid->f_oid++;
1645         }
1646
1647         memcpy(fid, pre_used_fid, sizeof(*fid));
1648         d->opd_pre_reserved--;
1649         /*
1650          * last_used_id must be changed along with getting new id otherwise
1651          * we might miscalculate gap causing object loss or leak
1652          */
1653         osp_update_last_fid(d, fid);
1654         spin_unlock(&d->opd_pre_lock);
1655
1656         /*
1657          * probably main thread suspended orphan cleanup till
1658          * all reservations are released, see comment in
1659          * osp_precreate_thread() just before orphan cleanup
1660          */
1661         if (unlikely(d->opd_pre_reserved == 0 &&
1662                      (d->opd_pre_recovering || d->opd_pre_status)))
1663                 wake_up(&d->opd_pre_waitq);
1664
1665         return 0;
1666 }
1667
1668 /*
1669  * Set size regular attribute on an object
1670  *
1671  * When a striping is created late, it's possible that size is already
1672  * initialized on the file. Then the new striping should inherit size
1673  * from the file. The function sets size on the object using the regular
1674  * protocol (OST_PUNCH).
1675  * XXX: should be re-implemented using OUT ?
1676  *
1677  * \param[in] env       LU environment provided by the caller
1678  * \param[in] dt        object
1679  * \param[in] size      size to set.
1680  *
1681  * \retval 0            on success
1682  * \retval negative     negated errno on error
1683  */
1684 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt,
1685                         __u64 size)
1686 {
1687         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
1688         struct ptlrpc_request   *req = NULL;
1689         struct obd_import       *imp;
1690         struct ost_body         *body;
1691         struct obdo             *oa = NULL;
1692         int                      rc;
1693
1694         ENTRY;
1695
1696         imp = d->opd_obd->u.cli.cl_import;
1697         LASSERT(imp);
1698
1699         req = ptlrpc_request_alloc(imp, &RQF_OST_PUNCH);
1700         if (req == NULL)
1701                 RETURN(-ENOMEM);
1702
1703         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_PUNCH);
1704         if (rc) {
1705                 ptlrpc_request_free(req);
1706                 RETURN(rc);
1707         }
1708
1709         /*
1710          * XXX: decide how do we do here with resend
1711          * if we don't resend, then client may see wrong file size
1712          * if we do resend, then MDS thread can get stuck for quite long
1713          * and if we don't resend, then client will also get -EAGAIN !!
1714          * (see LU-7975 and sanity/test_27F use cases)
1715          * but let's decide not to resend/delay this truncate request to OST
1716          * and allow Client to decide to resend, in a less agressive way from
1717          * after_reply(), by returning -EINPROGRESS instead of
1718          * -EAGAIN/-EAGAIN upon return from ptlrpc_queue_wait() at the
1719          * end of this routine
1720          */
1721         req->rq_no_resend = req->rq_no_delay = 1;
1722
1723         req->rq_request_portal = OST_IO_PORTAL; /* bug 7198 */
1724         ptlrpc_at_set_req_timeout(req);
1725
1726         OBD_ALLOC_PTR(oa);
1727         if (oa == NULL)
1728                 GOTO(out, rc = -ENOMEM);
1729
1730         rc = fid_to_ostid(lu_object_fid(&dt->do_lu), &oa->o_oi);
1731         LASSERT(rc == 0);
1732         oa->o_size = size;
1733         oa->o_blocks = OBD_OBJECT_EOF;
1734         oa->o_valid = OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
1735                       OBD_MD_FLID | OBD_MD_FLGROUP;
1736
1737         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
1738         LASSERT(body);
1739         lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
1740
1741         /* XXX: capa support? */
1742         /* osc_pack_capa(req, body, capa); */
1743
1744         ptlrpc_request_set_replen(req);
1745
1746         rc = ptlrpc_queue_wait(req);
1747         if (rc) {
1748                 /* -EAGAIN/-EWOULDBLOCK means OST is unreachable at the moment
1749                  * since we have decided not to resend/delay, but this could
1750                  * lead to wrong size to be seen at Client side and even process
1751                  * trying to open to exit/fail if not itself handling -EAGAIN.
1752                  * So it should be better to return -EINPROGRESS instead and
1753                  * leave the decision to resend at Client side in after_reply()
1754                  */
1755                 if (rc == -EAGAIN) {
1756                         rc = -EINPROGRESS;
1757                         CDEBUG(D_HA, "returning -EINPROGRESS instead of "
1758                                "-EWOULDBLOCK/-EAGAIN to allow Client to "
1759                                "resend\n");
1760                 } else {
1761                         CERROR("can't punch object: %d\n", rc);
1762                 }
1763         }
1764 out:
1765         ptlrpc_req_finished(req);
1766         if (oa)
1767                 OBD_FREE_PTR(oa);
1768         RETURN(rc);
1769 }
1770
1771 /**
1772  * Initialize precreation functionality of OSP
1773  *
1774  * Prepares all the internal structures and starts the precreate thread
1775  *
1776  * \param[in] d         OSP device
1777  *
1778  * \retval 0            on success
1779  * \retval negative     negated errno on error
1780  */
1781 int osp_init_precreate(struct osp_device *d)
1782 {
1783         ENTRY;
1784
1785         OBD_ALLOC_PTR(d->opd_pre);
1786         if (d->opd_pre == NULL)
1787                 RETURN(-ENOMEM);
1788
1789         /* initially precreation isn't ready */
1790         init_waitqueue_head(&d->opd_pre_user_waitq);
1791         d->opd_pre_status = -EAGAIN;
1792         fid_zero(&d->opd_pre_used_fid);
1793         d->opd_pre_used_fid.f_oid = 1;
1794         fid_zero(&d->opd_pre_last_created_fid);
1795         d->opd_pre_last_created_fid.f_oid = 1;
1796         d->opd_last_id = 0;
1797         d->opd_pre_reserved = 0;
1798         d->opd_pre_seq_width = LUSTRE_DATA_SEQ_MAX_WIDTH;
1799         d->opd_got_disconnected = 1;
1800         d->opd_pre_create_slow = 0;
1801         d->opd_pre_create_count = OST_MIN_PRECREATE;
1802         d->opd_pre_min_create_count = OST_MIN_PRECREATE;
1803         d->opd_pre_max_create_count = OST_MAX_PRECREATE;
1804         d->opd_reserved_mb_high = 0;
1805         d->opd_reserved_mb_low = 0;
1806         d->opd_cleanup_orphans_done = false;
1807         d->opd_force_creation = false;
1808
1809         RETURN(0);
1810 }
1811
1812 /**
1813  * Finish precreate functionality of OSP
1814  *
1815  *
1816  * Asks all the activity (the thread, update timer) to stop, then
1817  * wait till that is done.
1818  *
1819  * \param[in] d         OSP device
1820  */
1821 void osp_precreate_fini(struct osp_device *d)
1822 {
1823         ENTRY;
1824
1825         if (d->opd_pre == NULL)
1826                 RETURN_EXIT;
1827
1828         OBD_FREE_PTR(d->opd_pre);
1829         d->opd_pre = NULL;
1830
1831         EXIT;
1832 }
1833
1834 int osp_init_statfs(struct osp_device *d)
1835 {
1836         struct task_struct      *task;
1837         struct opt_args         *args;
1838         DECLARE_COMPLETION_ONSTACK(started);
1839         int                     rc;
1840
1841         ENTRY;
1842
1843         spin_lock_init(&d->opd_pre_lock);
1844         init_waitqueue_head(&d->opd_pre_waitq);
1845
1846         /*
1847          * Initialize statfs-related things
1848          */
1849         d->opd_statfs_maxage = 5; /* defaultupdate interval */
1850         d->opd_statfs_fresh_till = ktime_sub_ns(ktime_get(),
1851                                                 1000 * NSEC_PER_SEC);
1852         CDEBUG(D_OTHER, "current %lldns, fresh till %lldns\n",
1853                ktime_get_ns(),
1854                ktime_to_ns(d->opd_statfs_fresh_till));
1855         cfs_timer_setup(&d->opd_statfs_timer, osp_statfs_timer_cb,
1856                         (unsigned long)d, 0);
1857
1858         if (d->opd_storage->dd_rdonly)
1859                 RETURN(0);
1860
1861         OBD_ALLOC_PTR(args);
1862         if (!args)
1863                 RETURN(0);
1864         args->opta_dev = d;
1865         args->opta_started = &started;
1866         rc = lu_env_init(&args->opta_env,
1867                          d->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
1868         if (rc) {
1869                 CERROR("%s: init env error: rc = %d\n", d->opd_obd->obd_name,
1870                        rc);
1871                 OBD_FREE_PTR(args);
1872                 RETURN(0);
1873         }
1874
1875         /*
1876          * start thread handling precreation and statfs updates
1877          */
1878         task = kthread_create(osp_precreate_thread, args,
1879                               "osp-pre-%u-%u", d->opd_index, d->opd_group);
1880         if (IS_ERR(task)) {
1881                 CERROR("can't start precreate thread %ld\n", PTR_ERR(task));
1882                 lu_env_fini(&args->opta_env);
1883                 OBD_FREE_PTR(args);
1884                 RETURN(PTR_ERR(task));
1885         }
1886         d->opd_pre_task = task;
1887         wake_up_process(task);
1888         wait_for_completion(&started);
1889
1890         RETURN(0);
1891 }
1892
1893 void osp_statfs_fini(struct osp_device *d)
1894 {
1895         struct task_struct *task = d->opd_pre_task;
1896         ENTRY;
1897
1898         timer_delete(&d->opd_statfs_timer);
1899
1900         d->opd_pre_task = NULL;
1901         if (task)
1902                 kthread_stop(task);
1903
1904         EXIT;
1905 }