Whamcloud - gitweb
LU-16322: build: Add client build support for openEuler
[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         del_timer(&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                 del_timer(&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  * Check given sequence is empty
374  *
375  * Returns a binary result whether the given sequence has some IDs left
376  * or not. Find the details in osp_fid_end_seq(). This is a lock protected
377  * version of that function.
378  *
379  * \param[in] env       LU environment provided by the caller
380  * \param[in] osp       OSP device
381  *
382  * \retval              0 - current sequence has no IDs, 1 - otherwise
383  */
384 static inline int osp_create_end_seq(const struct lu_env *env,
385                                      struct osp_device *osp)
386 {
387         struct lu_fid *fid = &osp->opd_pre_used_fid;
388         int rc;
389
390         spin_lock(&osp->opd_pre_lock);
391         rc = osp_fid_end_seq(env, fid);
392         spin_unlock(&osp->opd_pre_lock);
393         return rc;
394 }
395
396 /**
397  * Write FID into into last_oid/last_seq file
398  *
399  * The function stores the sequence and the in-sequence id into two dedicated
400  * files. The sync argument can be used to request synchronous commit, so the
401  * function won't return until the updates are committed.
402  *
403  * \param[in] env       LU environment provided by the caller
404  * \param[in] osp       OSP device
405  * \param[in] fid       fid where sequence/id is taken
406  * \param[in] sync      update mode: 0 - asynchronously, 1 - synchronously
407  *
408  * \retval 0            on success
409  * \retval negative     negated errno on error
410  **/
411 int osp_write_last_oid_seq_files(struct lu_env *env, struct osp_device *osp,
412                                  struct lu_fid *fid, int sync)
413 {
414         struct osp_thread_info  *oti = osp_env_info(env);
415         struct lu_buf      *lb_oid = &oti->osi_lb;
416         struct lu_buf      *lb_oseq = &oti->osi_lb2;
417         loff_t             oid_off;
418         u64                oid;
419         loff_t             oseq_off;
420         struct thandle    *th;
421         int                   rc;
422         ENTRY;
423
424         if (osp->opd_storage->dd_rdonly)
425                 RETURN(0);
426
427         /* Note: through f_oid is only 32 bits, it will also write 64 bits
428          * for oid to keep compatibility with the previous version. */
429         oid = fid->f_oid;
430         osp_objid_buf_prep(lb_oid, &oid_off,
431                            &oid, osp->opd_index);
432
433         osp_objseq_buf_prep(lb_oseq, &oseq_off,
434                             &fid->f_seq, osp->opd_index);
435
436         th = dt_trans_create(env, osp->opd_storage);
437         if (IS_ERR(th))
438                 RETURN(PTR_ERR(th));
439
440         th->th_sync |= sync;
441         rc = dt_declare_record_write(env, osp->opd_last_used_oid_file,
442                                      lb_oid, oid_off, th);
443         if (rc != 0)
444                 GOTO(out, rc);
445
446         rc = dt_declare_record_write(env, osp->opd_last_used_seq_file,
447                                      lb_oseq, oseq_off, th);
448         if (rc != 0)
449                 GOTO(out, rc);
450
451         rc = dt_trans_start_local(env, osp->opd_storage, th);
452         if (rc != 0)
453                 GOTO(out, rc);
454
455         rc = dt_record_write(env, osp->opd_last_used_oid_file, lb_oid,
456                              &oid_off, th);
457         if (rc != 0) {
458                 CERROR("%s: can not write to last seq file: rc = %d\n",
459                         osp->opd_obd->obd_name, rc);
460                 GOTO(out, rc);
461         }
462         rc = dt_record_write(env, osp->opd_last_used_seq_file, lb_oseq,
463                              &oseq_off, th);
464         if (rc) {
465                 CERROR("%s: can not write to last seq file: rc = %d\n",
466                         osp->opd_obd->obd_name, rc);
467                 GOTO(out, rc);
468         }
469 out:
470         dt_trans_stop(env, osp->opd_storage, th);
471         RETURN(rc);
472 }
473
474 /**
475  * Switch to another sequence
476  *
477  * When a current sequence has no available IDs left, OSP has to switch to
478  * another new sequence. OSP requests it using the regular FLDB protocol
479  * and stores synchronously before that is used in precreated. This is needed
480  * to basically have the sequences referenced (not orphaned), otherwise it's
481  * possible that OST has some objects precreated and the clients have data
482  * written to it, but after MDT failover nobody refers those objects and OSP
483  * has no idea that the sequence need cleanup to be done.
484  * While this is very expensive operation, it's supposed to happen very very
485  * infrequently because sequence has 2^32 or 2^48 objects (depending on type)
486  *
487  * \param[in] env       LU environment provided by the caller
488  * \param[in] osp       OSP device
489  *
490  * \retval 0            on success
491  * \retval negative     negated errno on error
492  */
493 static int osp_precreate_rollover_new_seq(struct lu_env *env,
494                                           struct osp_device *osp)
495 {
496         struct lu_fid   *fid = &osp_env_info(env)->osi_fid;
497         struct lu_fid   *last_fid = &osp->opd_last_used_fid;
498         int             rc;
499         ENTRY;
500
501         rc = seq_client_get_seq(env, osp->opd_obd->u.cli.cl_seq, &fid->f_seq);
502         if (rc != 0) {
503                 CERROR("%s: alloc fid error: rc = %d\n",
504                        osp->opd_obd->obd_name, rc);
505                 RETURN(rc);
506         }
507
508         fid->f_oid = 1;
509         fid->f_ver = 0;
510         LASSERTF(fid_seq(fid) != fid_seq(last_fid),
511                  "fid "DFID", last_fid "DFID"\n", PFID(fid),
512                  PFID(last_fid));
513
514         rc = osp_write_last_oid_seq_files(env, osp, fid, 1);
515         if (rc != 0) {
516                 CERROR("%s: Can not update oid/seq file: rc = %d\n",
517                        osp->opd_obd->obd_name, rc);
518                 RETURN(rc);
519         }
520
521         LCONSOLE_INFO("%s: update sequence from %#llx to %#llx\n",
522                       osp->opd_obd->obd_name, fid_seq(last_fid),
523                       fid_seq(fid));
524         /* Update last_xxx to the new seq */
525         spin_lock(&osp->opd_pre_lock);
526         osp->opd_last_used_fid = *fid;
527         osp_fid_to_obdid(fid, &osp->opd_last_id);
528         osp->opd_gap_start_fid = *fid;
529         osp->opd_pre_used_fid = *fid;
530         osp->opd_pre_last_created_fid = *fid;
531         spin_unlock(&osp->opd_pre_lock);
532
533         RETURN(rc);
534 }
535
536 /**
537  * Find IDs available in current sequence
538  *
539  * The function calculates the highest possible ID and the number of IDs
540  * available in the current sequence OSP is using. The number is limited
541  * artifically by the caller (grow param) and the number of IDs available
542  * in the sequence by nature. The function doesn't require an external
543  * locking.
544  *
545  * \param[in] env       LU environment provided by the caller
546  * \param[in] osp       OSP device
547  * \param[in] fid       FID the caller wants to start with
548  * \param[in] grow      how many the caller wants
549  * \param[out] fid      the highest calculated FID
550  * \param[out] grow     the number of available IDs calculated
551  *
552  * \retval              0 on success, 1 - the sequence is empty
553  */
554 static int osp_precreate_fids(const struct lu_env *env, struct osp_device *osp,
555                               struct lu_fid *fid, int *grow)
556 {
557         struct osp_thread_info  *osi = osp_env_info(env);
558         __u64                   end;
559         int                     i = 0;
560
561         if (fid_is_idif(fid)) {
562                 struct lu_fid   *last_fid;
563                 struct ost_id   *oi = &osi->osi_oi;
564                 int rc;
565
566                 spin_lock(&osp->opd_pre_lock);
567                 last_fid = &osp->opd_pre_last_created_fid;
568                 fid_to_ostid(last_fid, oi);
569                 end = min(ostid_id(oi) + *grow, IDIF_MAX_OID);
570                 *grow = end - ostid_id(oi);
571                 rc = ostid_set_id(oi, ostid_id(oi) + *grow);
572                 spin_unlock(&osp->opd_pre_lock);
573
574                 if (*grow == 0 || rc)
575                         return 1;
576
577                 ostid_to_fid(fid, oi, osp->opd_index);
578                 return 0;
579         }
580
581         spin_lock(&osp->opd_pre_lock);
582         *fid = osp->opd_pre_last_created_fid;
583         end = fid->f_oid;
584         end = min((end + *grow), (__u64)LUSTRE_DATA_SEQ_MAX_WIDTH);
585         *grow = end - fid->f_oid;
586         fid->f_oid += end - fid->f_oid;
587         spin_unlock(&osp->opd_pre_lock);
588
589         CDEBUG(D_INFO, "Expect %d, actual %d ["DFID" -- "DFID"]\n",
590                *grow, i, PFID(fid), PFID(&osp->opd_pre_last_created_fid));
591
592         return *grow > 0 ? 0 : 1;
593 }
594
595 /**
596  * Prepare and send precreate RPC
597  *
598  * The function finds how many objects should be precreated.  Then allocates,
599  * prepares and schedules precreate RPC synchronously. Upon reply the function
600  * wakes up the threads waiting for the new objects on this target. If the
601  * target wasn't able to create all the objects requested, then the next
602  * precreate will be asking for fewer objects (i.e. slow precreate down).
603  *
604  * \param[in] env       LU environment provided by the caller
605  * \param[in] d         OSP device
606  *
607  * \retval 0            on success
608  * \retval negative     negated errno on error
609  **/
610 static int osp_precreate_send(const struct lu_env *env, struct osp_device *d)
611 {
612         struct osp_thread_info  *oti = osp_env_info(env);
613         struct ptlrpc_request   *req;
614         struct obd_import       *imp;
615         struct ost_body         *body;
616         int                      rc, grow, diff;
617         struct lu_fid           *fid = &oti->osi_fid;
618         ENTRY;
619
620         /* don't precreate new objects till OST healthy and has free space */
621         if (unlikely(d->opd_pre_status)) {
622                 CDEBUG(D_INFO, "%s: don't send new precreate: rc = %d\n",
623                        d->opd_obd->obd_name, d->opd_pre_status);
624                 RETURN(0);
625         }
626
627         /*
628          * if not connection/initialization is compeleted, ignore
629          */
630         imp = d->opd_obd->u.cli.cl_import;
631         LASSERT(imp);
632
633         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
634         if (req == NULL)
635                 RETURN(-ENOMEM);
636         req->rq_request_portal = OST_CREATE_PORTAL;
637
638         /* Delorphan happens only with a first MDT-OST connect. resend/replay
639          * handles objects creation on reconnects, no need to do delorhpan
640          * in this case.
641          */
642
643         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
644         if (rc) {
645                 ptlrpc_request_free(req);
646                 RETURN(rc);
647         }
648
649         spin_lock(&d->opd_pre_lock);
650         if (d->opd_force_creation)
651                 d->opd_pre_create_count = OST_MIN_PRECREATE;
652         else if (d->opd_pre_create_count > d->opd_pre_max_create_count / 2)
653                 d->opd_pre_create_count = d->opd_pre_max_create_count / 2;
654         grow = d->opd_pre_create_count;
655         spin_unlock(&d->opd_pre_lock);
656
657         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
658         LASSERT(body);
659
660         *fid = d->opd_pre_last_created_fid;
661         rc = osp_precreate_fids(env, d, fid, &grow);
662         if (rc == 1)
663                 /* Current seq has been used up*/
664                 GOTO(out_req, rc = -ENOSPC);
665
666         if (!osp_is_fid_client(d)) {
667                 /* Non-FID client will always send seq 0 because of
668                  * compatiblity */
669                 LASSERTF(fid_is_idif(fid), "Invalid fid "DFID"\n", PFID(fid));
670                 fid->f_seq = 0;
671         }
672
673         fid_to_ostid(fid, &body->oa.o_oi);
674         body->oa.o_valid = OBD_MD_FLGROUP;
675
676         ptlrpc_request_set_replen(req);
677
678         if (OBD_FAIL_CHECK(OBD_FAIL_OSP_FAKE_PRECREATE))
679                 GOTO(ready, rc = 0);
680
681         rc = ptlrpc_queue_wait(req);
682         if (rc) {
683                 CERROR("%s: can't precreate: rc = %d\n", d->opd_obd->obd_name,
684                        rc);
685                 if (req->rq_net_err)
686                         /* have osp_precreate_reserve() to wait for repeat */
687                         rc = -ENOTCONN;
688                 GOTO(out_req, rc);
689         }
690
691         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
692         if (body == NULL)
693                 GOTO(out_req, rc = -EPROTO);
694
695         ostid_to_fid(fid, &body->oa.o_oi, d->opd_index);
696
697 ready:
698         if (osp_fid_diff(fid, &d->opd_pre_used_fid) <= 0) {
699                 CERROR("%s: precreate fid "DFID" <= local used fid "DFID
700                        ": rc = %d\n", d->opd_obd->obd_name,
701                        PFID(fid), PFID(&d->opd_pre_used_fid), -ESTALE);
702                 GOTO(out_req, rc = -ESTALE);
703         }
704
705         diff = osp_fid_diff(fid, &d->opd_pre_last_created_fid);
706
707         spin_lock(&d->opd_pre_lock);
708         if (diff < grow) {
709                 /* the OST has not managed to create all the
710                  * objects we asked for */
711                 d->opd_pre_create_count = max(diff, OST_MIN_PRECREATE);
712                 d->opd_pre_create_slow = 1;
713         } else {
714                 /* the OST is able to keep up with the work,
715                  * we could consider increasing create_count
716                  * next time if needed */
717                 d->opd_pre_create_slow = 0;
718         }
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         /* pause to let osp_precreate_reserve to go first */
735         CFS_FAIL_TIMEOUT(OBD_FAIL_OSP_PRECREATE_PAUSE, 2);
736
737         ptlrpc_req_finished(req);
738         RETURN(rc);
739 }
740
741 /**
742  * Get last precreated object from target (OST)
743  *
744  * Sends synchronous RPC to the target (OST) to learn the last precreated
745  * object. This later is used to remove all unused objects (cleanup orphan
746  * procedure). Also, the next object after one we got will be used as a
747  * starting point for the new precreates.
748  *
749  * \param[in] env       LU environment provided by the caller
750  * \param[in] d         OSP device
751  * \param[in] update    update or not update last used fid
752  *
753  * \retval 0            on success
754  * \retval negative     negated errno on error
755  **/
756 static int osp_get_lastfid_from_ost(const struct lu_env *env,
757                                     struct osp_device *d, bool update)
758 {
759         struct ptlrpc_request   *req = NULL;
760         struct obd_import       *imp;
761         struct lu_fid           *last_fid;
762         char                    *tmp;
763         int                     rc;
764         ENTRY;
765
766         imp = d->opd_obd->u.cli.cl_import;
767         LASSERT(imp);
768
769         req = ptlrpc_request_alloc(imp, &RQF_OST_GET_INFO_LAST_FID);
770         if (req == NULL)
771                 RETURN(-ENOMEM);
772
773         req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_KEY, RCL_CLIENT,
774                              sizeof(KEY_LAST_FID));
775
776         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_GET_INFO);
777         if (rc) {
778                 ptlrpc_request_free(req);
779                 RETURN(rc);
780         }
781
782         tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_KEY);
783         memcpy(tmp, KEY_LAST_FID, sizeof(KEY_LAST_FID));
784
785         req->rq_no_delay = req->rq_no_resend = 1;
786         last_fid = req_capsule_client_get(&req->rq_pill, &RMF_FID);
787         fid_cpu_to_le(last_fid, &d->opd_last_used_fid);
788
789         ptlrpc_request_set_replen(req);
790
791         rc = ptlrpc_queue_wait(req);
792         if (rc) {
793                 /* -EFAULT means reading LAST_FID failed (see ofd_get_info_hld),
794                  * let sysadm sort this * out.
795                  */
796                 if (rc == -EFAULT)
797                         ptlrpc_set_import_active(imp, 0);
798                 GOTO(out, rc);
799         }
800
801         last_fid = req_capsule_server_get(&req->rq_pill, &RMF_FID);
802         if (last_fid == NULL) {
803                 CERROR("%s: Got last_fid failed.\n", d->opd_obd->obd_name);
804                 GOTO(out, rc = -EPROTO);
805         }
806
807         if (!fid_is_sane(last_fid)) {
808                 CERROR("%s: Got insane last_fid "DFID"\n",
809                        d->opd_obd->obd_name, PFID(last_fid));
810                 GOTO(out, rc = -EPROTO);
811         }
812
813         /* Only update the last used fid, if the OST has objects for
814          * this sequence, i.e. fid_oid > 0 */
815         if (fid_oid(last_fid) > 0 && update)
816                 d->opd_last_used_fid = *last_fid;
817
818         if (fid_seq(last_fid) == fid_seq(&d->opd_last_used_fid)) {
819                 if (fid_oid(last_fid) == 0 ||
820                     (fid_seq_is_norm(fid_seq(last_fid)) &&
821                      fid_oid(last_fid) == LUSTRE_FID_INIT_OID)) {
822                         /* reformatted OST, it requires creation request
823                          * to recreate objects
824                          */
825                         spin_lock(&d->opd_pre_lock);
826                         d->opd_force_creation = true;
827                         spin_unlock(&d->opd_pre_lock);
828                 }
829         }
830         CDEBUG(D_HA, "%s: Got last_fid "DFID"\n", d->opd_obd->obd_name,
831                PFID(last_fid));
832
833 out:
834         ptlrpc_req_finished(req);
835         RETURN(rc);
836 }
837
838 /**
839  * Cleanup orphans on OST
840  *
841  * This function is called in a contex of a dedicated thread handling
842  * all the precreation suff. The function waits till local recovery
843  * is complete, then identify all the unreferenced objects (orphans)
844  * using the highest ID referenced by a local and the highest object
845  * precreated by the target. The found range is a subject to removal
846  * using specially flagged RPC. During this process OSP is marked
847  * unavailable for new objects.
848  *
849  * \param[in] env       LU environment provided by the caller
850  * \param[in] d         OSP device
851  *
852  * \retval 0            on success
853  * \retval negative     negated errno on error
854  */
855 static int osp_precreate_cleanup_orphans(struct lu_env *env,
856                                          struct osp_device *d)
857 {
858         struct osp_thread_info  *osi = osp_env_info(env);
859         struct lu_fid           *last_fid = &osi->osi_fid;
860         struct ptlrpc_request   *req = NULL;
861         struct obd_import       *imp;
862         struct ost_body         *body;
863         int                      update_status = 0;
864         int                      rc;
865         int                      diff;
866
867         ENTRY;
868
869         /*
870          * Do cleanup orphans only with a first connection, after that
871          * all precreate requests uses resend/replay flags to support OST
872          * failover/reconnect.
873          */
874         if (d->opd_cleanup_orphans_done) {
875                 rc = osp_get_lastfid_from_ost(env, d, false);
876                 RETURN(0);
877         }
878         /*
879          * wait for local recovery to finish, so we can cleanup orphans
880          * orphans are all objects since "last used" (assigned), but
881          * there might be objects reserved and in some cases they won't
882          * be used. we can't cleanup them till we're sure they won't be
883          * used. also can't we allow new reservations because they may
884          * end up getting orphans being cleaned up below. so we block
885          * new reservations and wait till all reserved objects either
886          * user or released.
887          */
888         spin_lock(&d->opd_pre_lock);
889         d->opd_pre_recovering = 1;
890         spin_unlock(&d->opd_pre_lock);
891         /*
892          * The locking above makes sure the opd_pre_reserved check below will
893          * catch all osp_precreate_reserve() calls who find
894          * "!opd_pre_recovering".
895          */
896         wait_event_idle(d->opd_pre_waitq,
897                         (!d->opd_pre_reserved && d->opd_recovery_completed) ||
898                         !d->opd_pre_task || d->opd_got_disconnected);
899         if (!d->opd_pre_task || d->opd_got_disconnected)
900                 GOTO(out, rc = -EAGAIN);
901
902         CDEBUG(D_HA, "%s: going to cleanup orphans since "DFID"\n",
903                d->opd_obd->obd_name, PFID(&d->opd_last_used_fid));
904
905         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_DELAY_DELORPHAN, cfs_fail_val);
906
907         *last_fid = d->opd_last_used_fid;
908         /* The OSP should already get the valid seq now */
909         LASSERT(!fid_is_zero(last_fid));
910         if (fid_oid(&d->opd_last_used_fid) < 2 ||
911             OBD_FAIL_CHECK(OBD_FAIL_OSP_GET_LAST_FID)) {
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         LASSERT(fid_oid(&d->opd_pre_last_created_fid) <=
975                 LUSTRE_DATA_SEQ_MAX_WIDTH);
976         d->opd_pre_used_fid = d->opd_pre_last_created_fid;
977         d->opd_pre_create_slow = 0;
978         spin_unlock(&d->opd_pre_lock);
979
980         CDEBUG(D_HA, "%s: Got last_id "DFID" from OST, last_created "DFID
981                "last_used is "DFID"\n", d->opd_obd->obd_name, PFID(last_fid),
982                PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_last_used_fid));
983 out:
984         if (req)
985                 ptlrpc_req_finished(req);
986
987
988         /*
989          * If rc is zero, the pre-creation window should have been emptied.
990          * Since waking up the herd would be useless without pre-created
991          * objects, we defer the signal to osp_precreate_send() in that case.
992          */
993         if (rc != 0) {
994                 if (update_status) {
995                         CERROR("%s: cannot cleanup orphans: rc = %d\n",
996                                d->opd_obd->obd_name, rc);
997                         /* we can't proceed from here, OST seem to
998                          * be in a bad shape, better to wait for
999                          * a new instance of the server and repeat
1000                          * from the beginning. notify possible waiters
1001                          * this OSP isn't quite functional yet */
1002                         osp_pre_update_status(d, rc);
1003                 } else {
1004                         wake_up_all(&d->opd_pre_user_waitq);
1005                 }
1006         } else {
1007                 spin_lock(&d->opd_pre_lock);
1008                 d->opd_pre_recovering = 0;
1009                 spin_unlock(&d->opd_pre_lock);
1010                 d->opd_cleanup_orphans_done = true;
1011         }
1012
1013         RETURN(rc);
1014 }
1015
1016 /**
1017  * Update precreate status using statfs data
1018  *
1019  * The function decides whether this OSP should be used for new objects.
1020  * IOW, whether this OST is used up or has some free space. Cached statfs
1021  * data is used to make this decision. If the latest result of statfs
1022  * request (rc argument) is not success, then just mark OSP unavailable
1023  * right away.
1024  *
1025  * The new statfs data is passed in \a msfs and needs to be stored into
1026  * opd_statfs, but only after the various flags in os_state are set, so
1027  * that the new statfs data is not visible without appropriate flags set.
1028  * As such, there is no need to clear the flags here, since this is called
1029  * with new statfs data, and they should not be cleared if sent from OST.
1030  *
1031  * Add a bit of hysteresis so this flag isn't continually flapping, and
1032  * ensure that new files don't get extremely fragmented due to only a
1033  * small amount of available space in the filesystem.  We want to set
1034  * the ENOSPC/ENOINO flags unconditionally when there is less than the
1035  * reserved size free, and still copy them from the old state when there
1036  * is less than 2*reserved size free space or inodes.
1037  *
1038  * \param[in] d         OSP device
1039  * \param[in] msfs      statfs data
1040  */
1041 static void osp_pre_update_msfs(struct osp_device *d, struct obd_statfs *msfs)
1042 {
1043         u32 old_state = d->opd_statfs.os_state;
1044         u64 available_mb;
1045
1046         /* statfs structure not initialized yet */
1047         if (unlikely(!msfs->os_type))
1048                 return;
1049
1050         /* if the low and high watermarks have not been initialized yet */
1051         if (unlikely(d->opd_reserved_mb_high == 0 &&
1052                      d->opd_reserved_mb_low == 0)) {
1053                 /* Use ~0.1% by default to disable object allocation,
1054                  * and ~0.2% to enable, size in MB, set both watermark
1055                  */
1056                 spin_lock(&d->opd_pre_lock);
1057                 if (d->opd_reserved_mb_high == 0 &&
1058                     d->opd_reserved_mb_low == 0) {
1059                         d->opd_reserved_mb_low = ((msfs->os_bsize >> 10) *
1060                                                   msfs->os_blocks) >> 20;
1061                         if (d->opd_reserved_mb_low < 1)
1062                                 d->opd_reserved_mb_low = 1;
1063                         d->opd_reserved_mb_high =
1064                                 (d->opd_reserved_mb_low << 1) + 1;
1065                 }
1066                 spin_unlock(&d->opd_pre_lock);
1067         }
1068
1069         if (unlikely(d->opd_reserved_ino_high == 0 &&
1070                      d->opd_reserved_ino_low == 0)) {
1071                 /* Use ~0.0001% by default to disallow distributed transactions,
1072                  * and ~0.0002% to allow, set both watermark
1073                  */
1074                 spin_lock(&d->opd_pre_lock);
1075                 if (d->opd_reserved_ino_high == 0 &&
1076                     d->opd_reserved_ino_low == 0) {
1077                         d->opd_reserved_ino_low = msfs->os_ffree >> 20;
1078                         if (d->opd_reserved_ino_low < 32)
1079                                 d->opd_reserved_ino_low = 32;
1080                         d->opd_reserved_ino_high =
1081                                 (d->opd_reserved_ino_low << 1) + 1;
1082                 }
1083                 spin_unlock(&d->opd_pre_lock);
1084         }
1085
1086         available_mb = (msfs->os_bavail * (msfs->os_bsize >> 10)) >> 10;
1087         if (msfs->os_ffree < d->opd_reserved_ino_low)
1088                 msfs->os_state |= OS_STATFS_ENOINO;
1089         else if (msfs->os_ffree <= d->opd_reserved_ino_high)
1090                 msfs->os_state |= old_state & OS_STATFS_ENOINO;
1091         /* else don't clear flags in new msfs->os_state sent from OST */
1092
1093         if (available_mb < d->opd_reserved_mb_low)
1094                 msfs->os_state |= OS_STATFS_ENOSPC;
1095         else if (available_mb <= d->opd_reserved_mb_high)
1096                 msfs->os_state |= old_state & OS_STATFS_ENOSPC;
1097         /* else don't clear flags in new msfs->os_state sent from OST */
1098
1099         CDEBUG(D_INFO,
1100                "%s: blocks=%llu free=%llu avail=%llu avail_mb=%llu hwm_mb=%u files=%llu ffree=%llu state=%x: rc = %d\n",
1101                d->opd_obd->obd_name, msfs->os_blocks, msfs->os_bfree,
1102                msfs->os_bavail, available_mb, d->opd_reserved_mb_high,
1103                msfs->os_files, msfs->os_ffree, msfs->os_state,
1104                d->opd_pre ? d->opd_pre_status : 0);
1105
1106         if (!d->opd_pre)
1107                 goto update;
1108
1109         if (msfs->os_state & (OS_STATFS_ENOINO | OS_STATFS_ENOSPC)) {
1110                 d->opd_pre_status = -ENOSPC;
1111                 if (!(old_state & (OS_STATFS_ENOINO | OS_STATFS_ENOSPC)))
1112                         CDEBUG(D_INFO, "%s: full: state=%x: rc = %x\n",
1113                                d->opd_obd->obd_name, msfs->os_state,
1114                                d->opd_pre_status);
1115                 CDEBUG(D_INFO, "uncommitted changes=%u in_progress=%u\n",
1116                        atomic_read(&d->opd_sync_changes),
1117                        atomic_read(&d->opd_sync_rpcs_in_progress));
1118         } else if (old_state & (OS_STATFS_ENOINO | OS_STATFS_ENOSPC)) {
1119                 d->opd_pre_status = 0;
1120                 spin_lock(&d->opd_pre_lock);
1121                 d->opd_pre_create_slow = 0;
1122                 d->opd_pre_create_count = OST_MIN_PRECREATE;
1123                 spin_unlock(&d->opd_pre_lock);
1124                 wake_up(&d->opd_pre_waitq);
1125
1126                 CDEBUG(D_INFO,
1127                        "%s: available: state=%x: rc = %d\n",
1128                        d->opd_obd->obd_name, msfs->os_state,
1129                        d->opd_pre_status);
1130         } else {
1131                 /* we only get here if rc == 0 in the caller */
1132                 d->opd_pre_status = 0;
1133         }
1134
1135         /* Object precreation skipped on OST if manually disabled */
1136         if (d->opd_pre_max_create_count == 0)
1137                 msfs->os_state |= OS_STATFS_NOPRECREATE;
1138         /* else don't clear flags in new msfs->os_state sent from OST */
1139
1140 update:
1141         /* copy only new statfs state to make it visible to MDS threads */
1142         if (&d->opd_statfs != msfs)
1143                 d->opd_statfs = *msfs;
1144 }
1145
1146 /**
1147  * Initialize FID for precreation
1148  *
1149  * For a just created new target, a new sequence should be taken.
1150  * The function checks there is no IDIF in use (if the target was
1151  * added with the older version of Lustre), then requests a new
1152  * sequence from FLDB using the regular protocol. Then this new
1153  * sequence is stored on a persisten storage synchronously to prevent
1154  * possible object leakage (for the detail see the description for
1155  * osp_precreate_rollover_new_seq()).
1156  *
1157  * \param[in] osp       OSP device
1158  *
1159  * \retval 0            on success
1160  * \retval negative     negated errno on error
1161  */
1162 int osp_init_pre_fid(struct lu_env *env, struct osp_device *osp)
1163 {
1164         struct osp_thread_info  *osi;
1165         struct lu_client_seq    *cli_seq;
1166         struct lu_fid           *last_fid;
1167         int                     rc;
1168         ENTRY;
1169
1170         LASSERT(osp->opd_pre != NULL);
1171
1172         /* Let's check if the current last_seq/fid is valid,
1173          * otherwise request new sequence from the controller */
1174         if (osp_is_fid_client(osp) && osp->opd_group != 0) {
1175                 /* Non-MDT0 can only use normal sequence for
1176                  * OST objects */
1177                 if (fid_is_norm(&osp->opd_last_used_fid))
1178                         RETURN(0);
1179         } else {
1180                 /* Initially MDT0 will start with IDIF, after
1181                  * that it will request new sequence from the
1182                  * controller */
1183                 if (fid_is_idif(&osp->opd_last_used_fid) ||
1184                     fid_is_norm(&osp->opd_last_used_fid))
1185                         RETURN(0);
1186         }
1187
1188         if (!fid_is_zero(&osp->opd_last_used_fid))
1189                 CWARN("%s: invalid last used fid "DFID
1190                       ", try to get new sequence.\n",
1191                       osp->opd_obd->obd_name,
1192                       PFID(&osp->opd_last_used_fid));
1193
1194         osi = osp_env_info(env);
1195         last_fid = &osi->osi_fid;
1196         fid_zero(last_fid);
1197         /* For a freshed fs, it will allocate a new sequence first */
1198         if (osp_is_fid_client(osp) && osp->opd_group != 0) {
1199                 cli_seq = osp->opd_obd->u.cli.cl_seq;
1200                 rc = seq_client_get_seq(env, cli_seq, &last_fid->f_seq);
1201                 if (rc != 0) {
1202                         CERROR("%s: alloc fid error: rc = %d\n",
1203                                osp->opd_obd->obd_name, rc);
1204                         GOTO(out, rc);
1205                 }
1206         } else {
1207                 last_fid->f_seq = fid_idif_seq(0, osp->opd_index);
1208         }
1209         last_fid->f_oid = 1;
1210         last_fid->f_ver = 0;
1211
1212         spin_lock(&osp->opd_pre_lock);
1213         osp->opd_last_used_fid = *last_fid;
1214         osp->opd_pre_used_fid = *last_fid;
1215         osp->opd_pre_last_created_fid = *last_fid;
1216         spin_unlock(&osp->opd_pre_lock);
1217         rc = osp_write_last_oid_seq_files(env, osp, last_fid, 1);
1218         if (rc != 0) {
1219                 CERROR("%s: write fid error: rc = %d\n",
1220                        osp->opd_obd->obd_name, rc);
1221                 GOTO(out, rc);
1222         }
1223 out:
1224         RETURN(rc);
1225 }
1226
1227 struct opt_args {
1228         struct osp_device       *opta_dev;
1229         struct lu_env           opta_env;
1230         struct completion       *opta_started;
1231 };
1232 /**
1233  * The core of precreate functionality
1234  *
1235  * The function implements the main precreation loop. Basically it
1236  * involves connecting to the target, precerate FID initialization,
1237  * identifying and removing orphans, then serving precreation. As
1238  * part of the latter, the thread is responsible for statfs data
1239  * updates. The precreation is mostly driven by another threads
1240  * asking for new OST objects - those askers wake the thread when
1241  * the number of precreated objects reach low watermark.
1242  * After a disconnect, the sequence above repeats. This is keep going
1243  * until the thread is requested to stop.
1244  *
1245  * \param[in] _arg      private data the thread (OSP device to handle)
1246  *
1247  * \retval 0            on success
1248  * \retval negative     negated errno on error
1249  */
1250 static int osp_precreate_thread(void *_args)
1251 {
1252         struct opt_args         *args = _args;
1253         struct osp_device       *d = args->opta_dev;
1254         struct lu_env           *env = &args->opta_env;
1255         int                      rc;
1256
1257         ENTRY;
1258
1259         complete(args->opta_started);
1260
1261         /* wait for connection from the layers above */
1262         wait_event_idle(d->opd_pre_waitq,
1263                         kthread_should_stop() ||
1264                         d->opd_obd->u.cli.cl_seq->lcs_exp != NULL);
1265
1266         while (!kthread_should_stop()) {
1267                 /*
1268                  * need to be connected to OST
1269                  */
1270                 while (!kthread_should_stop()) {
1271                         if ((d->opd_pre == NULL || d->opd_pre_recovering) &&
1272                             d->opd_imp_connected &&
1273                             !d->opd_got_disconnected)
1274                                 break;
1275                         wait_event_idle(d->opd_pre_waitq,
1276                                         kthread_should_stop() ||
1277                                         d->opd_new_connection);
1278
1279                         if (!d->opd_new_connection)
1280                                 continue;
1281
1282                         OBD_FAIL_TIMEOUT(OBD_FAIL_OSP_CON_EVENT_DELAY,
1283                                          cfs_fail_val);
1284                         d->opd_new_connection = 0;
1285                         d->opd_got_disconnected = 0;
1286                         break;
1287                 }
1288
1289                 if (kthread_should_stop())
1290                         break;
1291
1292                 if (d->opd_pre) {
1293                         LASSERT(d->opd_obd->u.cli.cl_seq != NULL);
1294                         LASSERT(d->opd_obd->u.cli.cl_seq->lcs_exp != NULL);
1295
1296                         /* Init fid for osp_precreate if necessary */
1297                         rc = osp_init_pre_fid(env, d);
1298                         if (rc != 0) {
1299                                 class_export_put(d->opd_exp);
1300                                 d->opd_obd->u.cli.cl_seq->lcs_exp = NULL;
1301                                 CERROR("%s: init pre fid error: rc = %d\n",
1302                                                 d->opd_obd->obd_name, rc);
1303                                 continue;
1304                         }
1305                 }
1306
1307                 if (osp_statfs_update(env, d)) {
1308                         if (wait_event_idle_timeout(d->opd_pre_waitq,
1309                                                     kthread_should_stop(),
1310                                                     cfs_time_seconds(5)) == 0)
1311                                 l_wait_event_abortable(
1312                                         d->opd_pre_waitq,
1313                                         kthread_should_stop());
1314                         continue;
1315                 }
1316
1317                 if (d->opd_pre) {
1318                         /*
1319                          * Clean up orphans or recreate missing objects.
1320                          */
1321                         rc = osp_precreate_cleanup_orphans(env, d);
1322                         if (rc != 0) {
1323                                 schedule_timeout_interruptible(cfs_time_seconds(1));
1324                                 continue;
1325                         }
1326                 }
1327
1328                 /*
1329                  * connected, can handle precreates now
1330                  */
1331                 while (!kthread_should_stop()) {
1332                         wait_event_idle(d->opd_pre_waitq,
1333                                         kthread_should_stop() ||
1334                                         osp_precreate_near_empty(env, d) ||
1335                                         osp_statfs_need_update(d) ||
1336                                         d->opd_got_disconnected);
1337
1338                         if (kthread_should_stop())
1339                                 break;
1340
1341                         /* something happened to the connection
1342                          * have to start from the beginning */
1343                         if (d->opd_got_disconnected)
1344                                 break;
1345
1346                         if (osp_statfs_need_update(d))
1347                                 if (osp_statfs_update(env, d))
1348                                         break;
1349
1350                         if (d->opd_pre == NULL)
1351                                 continue;
1352
1353                         if (OBD_FAIL_CHECK(OBD_FAIL_OSP_GET_LAST_FID)) {
1354                                 d->opd_pre_recovering = 1;
1355                                 break;
1356                         }
1357
1358                         /* To avoid handling different seq in precreate/orphan
1359                          * cleanup, it will hold precreate until current seq is
1360                          * used up. */
1361                         if (unlikely(osp_precreate_end_seq(env, d) &&
1362                             !osp_create_end_seq(env, d)))
1363                                 continue;
1364
1365                         if (unlikely(osp_precreate_end_seq(env, d) &&
1366                                      osp_create_end_seq(env, d))) {
1367                                 LCONSOLE_INFO("%s:%#llx is used up."
1368                                               " Update to new seq\n",
1369                                               d->opd_obd->obd_name,
1370                                          fid_seq(&d->opd_pre_last_created_fid));
1371                                 rc = osp_precreate_rollover_new_seq(env, d);
1372                                 if (rc)
1373                                         continue;
1374                         }
1375
1376                         if (osp_precreate_near_empty(env, d)) {
1377                                 rc = osp_precreate_send(env, d);
1378                                 /* osp_precreate_send() sets opd_pre_status
1379                                  * in case of error, that prevent the using of
1380                                  * failed device. */
1381                                 if (rc < 0 && rc != -ENOSPC &&
1382                                     rc != -ETIMEDOUT && rc != -ENOTCONN)
1383                                         CERROR("%s: cannot precreate objects:"
1384                                                " rc = %d\n",
1385                                                d->opd_obd->obd_name, rc);
1386                         }
1387                 }
1388         }
1389
1390         lu_env_fini(env);
1391         OBD_FREE_PTR(args);
1392
1393         RETURN(0);
1394 }
1395
1396 /**
1397  * Check when to stop to wait for precreate objects.
1398  *
1399  * The caller wanting a new OST object can't wait undefinitely. The
1400  * function checks for few conditions including available new OST
1401  * objects, disconnected OST, lack of space with no pending destroys,
1402  * etc. IOW, it checks whether the current OSP state is good to keep
1403  * waiting or it's better to give up.
1404  *
1405  * \param[in] env       LU environment provided by the caller
1406  * \param[in] d         OSP device
1407  *
1408  * \retval              0 - keep waiting, 1 - no luck
1409  */
1410 static int osp_precreate_ready_condition(const struct lu_env *env,
1411                                          struct osp_device *d)
1412 {
1413         /* Bail out I/O fails to OST */
1414         if (d->opd_pre_status != 0 &&
1415             d->opd_pre_status != -EAGAIN &&
1416             d->opd_pre_status != -ENODEV &&
1417             d->opd_pre_status != -ENOTCONN &&
1418             d->opd_pre_status != -ENOSPC) {
1419                 /* DEBUG LU-3230 */
1420                 if (d->opd_pre_status != -EIO)
1421                         CERROR("%s: precreate failed opd_pre_status %d\n",
1422                                d->opd_obd->obd_name, d->opd_pre_status);
1423                 return 1;
1424         }
1425
1426         if (d->opd_pre_recovering || d->opd_force_creation)
1427                 return 0;
1428
1429         /* ready if got enough precreated objects */
1430         /* we need to wait for others (opd_pre_reserved) and our object (+1) */
1431         if (d->opd_pre_reserved + 1 < osp_objs_precreated(env, d))
1432                 return 1;
1433
1434         /* ready if OST reported no space and no destroys in progress */
1435         if (atomic_read(&d->opd_sync_changes) +
1436             atomic_read(&d->opd_sync_rpcs_in_progress) == 0 &&
1437             d->opd_pre_status == -ENOSPC)
1438                 return 1;
1439
1440         return 0;
1441 }
1442
1443 /**
1444  * Reserve object in precreate pool
1445  *
1446  * When the caller wants to create a new object on this target (target
1447  * represented by the given OSP), it should declare this intention using
1448  * a regular ->dt_declare_create() OSD API method. Then OSP will be trying
1449  * to reserve an object in the existing precreated pool or wait up to
1450  * obd_timeout for the available object to appear in the pool (a dedicated
1451  * thread will be doing real precreation in background). The object can be
1452  * consumed later with osp_precreate_get_fid() or be released with call to
1453  * lu_object_put(). Notice the function doesn't reserve a specific ID, just
1454  * some ID. The actual ID assignment happen in osp_precreate_get_fid().
1455  * If the space on the target is short and there is a pending object destroy,
1456  * then the function forces local commit to speedup space release (see
1457  * osp_sync.c for the details).
1458  *
1459  * \param[in] env       LU environment provided by the caller
1460  * \param[in] d         OSP device
1461  *
1462  * \retval              0 on success
1463  * \retval              -ENOSPC when no space on OST
1464  * \retval              -EAGAIN try later, slow precreation in progress
1465  * \retval              -EIO when no access to OST
1466  */
1467 int osp_precreate_reserve(const struct lu_env *env, struct osp_device *d,
1468                           bool can_block)
1469 {
1470         time64_t expire = ktime_get_seconds() + obd_timeout;
1471         int precreated, rc, synced = 0;
1472
1473         ENTRY;
1474
1475         LASSERTF(osp_objs_precreated(env, d) >= 0, "Last created FID "DFID
1476                  "Next FID "DFID"\n", PFID(&d->opd_pre_last_created_fid),
1477                  PFID(&d->opd_pre_used_fid));
1478
1479         /* opd_pre_max_create_count 0 to not use specified OST. */
1480         if (d->opd_pre_max_create_count == 0)
1481                 RETURN(-ENOBUFS);
1482
1483         /*
1484          * wait till:
1485          *  - preallocation is done
1486          *  - no free space expected soon
1487          *  - can't connect to OST for too long (obd_timeout)
1488          *  - OST can allocate fid sequence.
1489          */
1490         while ((rc = d->opd_pre_status) == 0 || rc == -ENOSPC ||
1491                 rc == -ENODEV || rc == -EAGAIN || rc == -ENOTCONN) {
1492
1493                 /*
1494                  * increase number of precreations
1495                  */
1496                 precreated = osp_objs_precreated(env, d);
1497                 if (d->opd_pre_create_count < d->opd_pre_max_create_count &&
1498                     d->opd_pre_create_slow == 0 &&
1499                     precreated <= (d->opd_pre_create_count / 4 + 1)) {
1500                         spin_lock(&d->opd_pre_lock);
1501                         d->opd_pre_create_slow = 1;
1502                         d->opd_pre_create_count *= 2;
1503                         spin_unlock(&d->opd_pre_lock);
1504                 }
1505
1506                 spin_lock(&d->opd_pre_lock);
1507                 precreated = osp_objs_precreated(env, d);
1508                 if (precreated > d->opd_pre_reserved &&
1509                     !d->opd_pre_recovering &&
1510                     !d->opd_force_creation) {
1511                         d->opd_pre_reserved++;
1512                         spin_unlock(&d->opd_pre_lock);
1513                         rc = 0;
1514
1515                         /* XXX: don't wake up if precreation is in progress */
1516                         if (osp_precreate_near_empty_nolock(env, d) &&
1517                            !osp_precreate_end_seq_nolock(env, d))
1518                                 wake_up(&d->opd_pre_waitq);
1519
1520                         break;
1521                 }
1522                 spin_unlock(&d->opd_pre_lock);
1523
1524                 /*
1525                  * all precreated objects have been used and no-space
1526                  * status leave us no chance to succeed very soon
1527                  * but if there is destroy in progress, then we should
1528                  * wait till that is done - some space might be released
1529                  */
1530                 if (unlikely(rc == -ENOSPC)) {
1531                         if (atomic_read(&d->opd_sync_changes) && synced == 0) {
1532                                 /* force local commit to release space */
1533                                 dt_commit_async(env, d->opd_storage);
1534                                 osp_sync_check_for_work(d);
1535                                 synced = 1;
1536                         }
1537                         if (atomic_read(&d->opd_sync_rpcs_in_progress)) {
1538                                 /* just wait till destroys are done
1539                                  * see wait_event_idle_timeout() below
1540                                  */
1541                         }
1542                         if (atomic_read(&d->opd_sync_changes) +
1543                             atomic_read(&d->opd_sync_rpcs_in_progress) == 0) {
1544                                 /* no hope for free space */
1545                                 break;
1546                         }
1547                 }
1548
1549                 /* XXX: don't wake up if precreation is in progress */
1550                 wake_up(&d->opd_pre_waitq);
1551
1552                 if (ktime_get_seconds() >= expire) {
1553                         rc = -ETIMEDOUT;
1554                         break;
1555                 }
1556
1557                 if (!can_block) {
1558                         LASSERT(d->opd_pre);
1559                         rc = -ENOBUFS;
1560                         break;
1561                 }
1562
1563                 CDEBUG(D_INFO, "%s: Sleeping on objects\n",
1564                        d->opd_obd->obd_name);
1565                 if (wait_event_idle_timeout(
1566                             d->opd_pre_user_waitq,
1567                             osp_precreate_ready_condition(env, d),
1568                             cfs_time_seconds(obd_timeout)) == 0) {
1569                         CDEBUG(D_HA,
1570                                "%s: slow creates, last="DFID", next="DFID", "
1571                                "reserved=%llu, sync_changes=%u, "
1572                                "sync_rpcs_in_progress=%d, status=%d\n",
1573                                d->opd_obd->obd_name,
1574                                PFID(&d->opd_pre_last_created_fid),
1575                                PFID(&d->opd_pre_used_fid), d->opd_pre_reserved,
1576                                atomic_read(&d->opd_sync_changes),
1577                                atomic_read(&d->opd_sync_rpcs_in_progress),
1578                                d->opd_pre_status);
1579                 } else {
1580                         CDEBUG(D_INFO, "%s: Waked up, status=%d\n",
1581                                d->opd_obd->obd_name, d->opd_pre_status);
1582                 }
1583         }
1584
1585         RETURN(rc);
1586 }
1587
1588 /**
1589  * Get a FID from precreation pool
1590  *
1591  * The function is a companion for osp_precreate_reserve() - it assigns
1592  * a specific FID from the precreate. The function should be called only
1593  * if the call to osp_precreate_reserve() was successful. The function
1594  * updates a local storage to remember the highest object ID referenced
1595  * by the node in the given sequence.
1596  *
1597  * A very importan details: this is supposed to be called once the
1598  * transaction is started, so on-disk update will be atomic with the
1599  * data (like LOVEA) refering this object. Then the object won't be leaked:
1600  * either it's referenced by the committed transaction or it's a subject
1601  * to the orphan cleanup procedure.
1602  *
1603  * \param[in] env       LU environment provided by the caller
1604  * \param[in] d         OSP device
1605  * \param[out] fid      generated FID
1606  *
1607  * \retval 0            on success
1608  * \retval negative     negated errno on error
1609  */
1610 int osp_precreate_get_fid(const struct lu_env *env, struct osp_device *d,
1611                           struct lu_fid *fid)
1612 {
1613         struct lu_fid *pre_used_fid = &d->opd_pre_used_fid;
1614         /* grab next id from the pool */
1615         spin_lock(&d->opd_pre_lock);
1616
1617         LASSERTF(osp_fid_diff(&d->opd_pre_used_fid,
1618                              &d->opd_pre_last_created_fid) < 0,
1619                  "next fid "DFID" last created fid "DFID"\n",
1620                  PFID(&d->opd_pre_used_fid),
1621                  PFID(&d->opd_pre_last_created_fid));
1622
1623         /*
1624          * When sequence is used up, new one should be allocated in
1625          * osp_precreate_rollover_new_seq. So ASSERT here to avoid
1626          * objid overflow.
1627          */
1628         LASSERTF(osp_fid_end_seq(env, pre_used_fid) == 0,
1629                  "next fid "DFID" last created fid "DFID"\n",
1630                  PFID(&d->opd_pre_used_fid),
1631                  PFID(&d->opd_pre_last_created_fid));
1632         /* Non IDIF fids shoulnd't get here with oid == 0xFFFFFFFF. */
1633         if (fid_is_idif(pre_used_fid) &&
1634             unlikely(fid_oid(pre_used_fid) == LUSTRE_DATA_SEQ_MAX_WIDTH))
1635                 pre_used_fid->f_seq++;
1636
1637         d->opd_pre_used_fid.f_oid++;
1638         memcpy(fid, &d->opd_pre_used_fid, sizeof(*fid));
1639         d->opd_pre_reserved--;
1640         /*
1641          * last_used_id must be changed along with getting new id otherwise
1642          * we might miscalculate gap causing object loss or leak
1643          */
1644         osp_update_last_fid(d, fid);
1645         spin_unlock(&d->opd_pre_lock);
1646
1647         /*
1648          * probably main thread suspended orphan cleanup till
1649          * all reservations are released, see comment in
1650          * osp_precreate_thread() just before orphan cleanup
1651          */
1652         if (unlikely(d->opd_pre_reserved == 0 &&
1653                      (d->opd_pre_recovering || d->opd_pre_status)))
1654                 wake_up(&d->opd_pre_waitq);
1655
1656         return 0;
1657 }
1658
1659 /*
1660  * Set size regular attribute on an object
1661  *
1662  * When a striping is created late, it's possible that size is already
1663  * initialized on the file. Then the new striping should inherit size
1664  * from the file. The function sets size on the object using the regular
1665  * protocol (OST_PUNCH).
1666  * XXX: should be re-implemented using OUT ?
1667  *
1668  * \param[in] env       LU environment provided by the caller
1669  * \param[in] dt        object
1670  * \param[in] size      size to set.
1671  *
1672  * \retval 0            on success
1673  * \retval negative     negated errno on error
1674  */
1675 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt,
1676                         __u64 size)
1677 {
1678         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
1679         struct ptlrpc_request   *req = NULL;
1680         struct obd_import       *imp;
1681         struct ost_body         *body;
1682         struct obdo             *oa = NULL;
1683         int                      rc;
1684
1685         ENTRY;
1686
1687         imp = d->opd_obd->u.cli.cl_import;
1688         LASSERT(imp);
1689
1690         req = ptlrpc_request_alloc(imp, &RQF_OST_PUNCH);
1691         if (req == NULL)
1692                 RETURN(-ENOMEM);
1693
1694         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_PUNCH);
1695         if (rc) {
1696                 ptlrpc_request_free(req);
1697                 RETURN(rc);
1698         }
1699
1700         /*
1701          * XXX: decide how do we do here with resend
1702          * if we don't resend, then client may see wrong file size
1703          * if we do resend, then MDS thread can get stuck for quite long
1704          * and if we don't resend, then client will also get -EAGAIN !!
1705          * (see LU-7975 and sanity/test_27F use cases)
1706          * but let's decide not to resend/delay this truncate request to OST
1707          * and allow Client to decide to resend, in a less agressive way from
1708          * after_reply(), by returning -EINPROGRESS instead of
1709          * -EAGAIN/-EAGAIN upon return from ptlrpc_queue_wait() at the
1710          * end of this routine
1711          */
1712         req->rq_no_resend = req->rq_no_delay = 1;
1713
1714         req->rq_request_portal = OST_IO_PORTAL; /* bug 7198 */
1715         ptlrpc_at_set_req_timeout(req);
1716
1717         OBD_ALLOC_PTR(oa);
1718         if (oa == NULL)
1719                 GOTO(out, rc = -ENOMEM);
1720
1721         rc = fid_to_ostid(lu_object_fid(&dt->do_lu), &oa->o_oi);
1722         LASSERT(rc == 0);
1723         oa->o_size = size;
1724         oa->o_blocks = OBD_OBJECT_EOF;
1725         oa->o_valid = OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
1726                       OBD_MD_FLID | OBD_MD_FLGROUP;
1727
1728         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
1729         LASSERT(body);
1730         lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
1731
1732         /* XXX: capa support? */
1733         /* osc_pack_capa(req, body, capa); */
1734
1735         ptlrpc_request_set_replen(req);
1736
1737         rc = ptlrpc_queue_wait(req);
1738         if (rc) {
1739                 /* -EAGAIN/-EWOULDBLOCK means OST is unreachable at the moment
1740                  * since we have decided not to resend/delay, but this could
1741                  * lead to wrong size to be seen at Client side and even process
1742                  * trying to open to exit/fail if not itself handling -EAGAIN.
1743                  * So it should be better to return -EINPROGRESS instead and
1744                  * leave the decision to resend at Client side in after_reply()
1745                  */
1746                 if (rc == -EAGAIN) {
1747                         rc = -EINPROGRESS;
1748                         CDEBUG(D_HA, "returning -EINPROGRESS instead of "
1749                                "-EWOULDBLOCK/-EAGAIN to allow Client to "
1750                                "resend\n");
1751                 } else {
1752                         CERROR("can't punch object: %d\n", rc);
1753                 }
1754         }
1755 out:
1756         ptlrpc_req_finished(req);
1757         if (oa)
1758                 OBD_FREE_PTR(oa);
1759         RETURN(rc);
1760 }
1761
1762 /**
1763  * Initialize precreation functionality of OSP
1764  *
1765  * Prepares all the internal structures and starts the precreate thread
1766  *
1767  * \param[in] d         OSP device
1768  *
1769  * \retval 0            on success
1770  * \retval negative     negated errno on error
1771  */
1772 int osp_init_precreate(struct osp_device *d)
1773 {
1774         ENTRY;
1775
1776         OBD_ALLOC_PTR(d->opd_pre);
1777         if (d->opd_pre == NULL)
1778                 RETURN(-ENOMEM);
1779
1780         /* initially precreation isn't ready */
1781         init_waitqueue_head(&d->opd_pre_user_waitq);
1782         d->opd_pre_status = -EAGAIN;
1783         fid_zero(&d->opd_pre_used_fid);
1784         d->opd_pre_used_fid.f_oid = 1;
1785         fid_zero(&d->opd_pre_last_created_fid);
1786         d->opd_pre_last_created_fid.f_oid = 1;
1787         d->opd_last_id = 0;
1788         d->opd_pre_reserved = 0;
1789         d->opd_got_disconnected = 1;
1790         d->opd_pre_create_slow = 0;
1791         d->opd_pre_create_count = OST_MIN_PRECREATE;
1792         d->opd_pre_min_create_count = OST_MIN_PRECREATE;
1793         d->opd_pre_max_create_count = OST_MAX_PRECREATE;
1794         d->opd_reserved_mb_high = 0;
1795         d->opd_reserved_mb_low = 0;
1796         d->opd_cleanup_orphans_done = false;
1797         d->opd_force_creation = false;
1798
1799         RETURN(0);
1800 }
1801
1802 /**
1803  * Finish precreate functionality of OSP
1804  *
1805  *
1806  * Asks all the activity (the thread, update timer) to stop, then
1807  * wait till that is done.
1808  *
1809  * \param[in] d         OSP device
1810  */
1811 void osp_precreate_fini(struct osp_device *d)
1812 {
1813         ENTRY;
1814
1815         if (d->opd_pre == NULL)
1816                 RETURN_EXIT;
1817
1818         OBD_FREE_PTR(d->opd_pre);
1819         d->opd_pre = NULL;
1820
1821         EXIT;
1822 }
1823
1824 int osp_init_statfs(struct osp_device *d)
1825 {
1826         struct task_struct      *task;
1827         struct opt_args         *args;
1828         DECLARE_COMPLETION_ONSTACK(started);
1829         int                     rc;
1830
1831         ENTRY;
1832
1833         spin_lock_init(&d->opd_pre_lock);
1834         init_waitqueue_head(&d->opd_pre_waitq);
1835
1836         /*
1837          * Initialize statfs-related things
1838          */
1839         d->opd_statfs_maxage = 5; /* defaultupdate interval */
1840         d->opd_statfs_fresh_till = ktime_sub_ns(ktime_get(),
1841                                                 1000 * NSEC_PER_SEC);
1842         CDEBUG(D_OTHER, "current %lldns, fresh till %lldns\n",
1843                ktime_get_ns(),
1844                ktime_to_ns(d->opd_statfs_fresh_till));
1845         cfs_timer_setup(&d->opd_statfs_timer, osp_statfs_timer_cb,
1846                         (unsigned long)d, 0);
1847
1848         if (d->opd_storage->dd_rdonly)
1849                 RETURN(0);
1850
1851         OBD_ALLOC_PTR(args);
1852         if (!args)
1853                 RETURN(0);
1854         args->opta_dev = d;
1855         args->opta_started = &started;
1856         rc = lu_env_init(&args->opta_env,
1857                          d->opd_dt_dev.dd_lu_dev.ld_type->ldt_ctx_tags);
1858         if (rc) {
1859                 CERROR("%s: init env error: rc = %d\n", d->opd_obd->obd_name,
1860                        rc);
1861                 OBD_FREE_PTR(args);
1862                 RETURN(0);
1863         }
1864
1865         /*
1866          * start thread handling precreation and statfs updates
1867          */
1868         task = kthread_create(osp_precreate_thread, args,
1869                               "osp-pre-%u-%u", d->opd_index, d->opd_group);
1870         if (IS_ERR(task)) {
1871                 CERROR("can't start precreate thread %ld\n", PTR_ERR(task));
1872                 lu_env_fini(&args->opta_env);
1873                 OBD_FREE_PTR(args);
1874                 RETURN(PTR_ERR(task));
1875         }
1876         d->opd_pre_task = task;
1877         wake_up_process(task);
1878         wait_for_completion(&started);
1879
1880         RETURN(0);
1881 }
1882
1883 void osp_statfs_fini(struct osp_device *d)
1884 {
1885         struct task_struct *task = d->opd_pre_task;
1886         ENTRY;
1887
1888         del_timer(&d->opd_statfs_timer);
1889
1890         d->opd_pre_task = NULL;
1891         if (task)
1892                 kthread_stop(task);
1893
1894         EXIT;
1895 }