Whamcloud - gitweb
4ee3ebdcf812985011c5ac606978f1d5327cbfaa
[fs/lustre-release.git] / lustre / osp / osp_precreate.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osp/osp_sync.c
37  *
38  * Lustre OST Proxy Device
39  *
40  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
41  * Author: Mikhail Pershin <mike.pershin@intel.com>
42  */
43
44 #ifndef EXPORT_SYMTAB
45 # define EXPORT_SYMTAB
46 #endif
47 #define DEBUG_SUBSYSTEM S_MDS
48
49 #include "osp_internal.h"
50
51 /*
52  * there are two specific states to take care about:
53  *
54  * = import is disconnected =
55  *
56  * = import is inactive =
57  *   in this case osp_declare_object_create() returns an error
58  *
59  */
60
61 /*
62  * statfs
63  */
64 static inline int osp_statfs_need_update(struct osp_device *d)
65 {
66         return !cfs_time_before(cfs_time_current(),
67                                 d->opd_statfs_fresh_till);
68 }
69
70 static void osp_statfs_timer_cb(unsigned long _d)
71 {
72         struct osp_device *d = (struct osp_device *) _d;
73
74         LASSERT(d);
75         cfs_waitq_signal(&d->opd_pre_waitq);
76 }
77
78 static int osp_statfs_interpret(const struct lu_env *env,
79                                 struct ptlrpc_request *req,
80                                 union ptlrpc_async_args *aa, int rc)
81 {
82         struct obd_import       *imp = req->rq_import;
83         struct obd_statfs       *msfs;
84         struct osp_device       *d;
85
86         ENTRY;
87
88         aa = ptlrpc_req_async_args(req);
89         d = aa->pointer_arg[0];
90         LASSERT(d);
91
92         if (rc != 0)
93                 GOTO(out, rc);
94
95         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
96         if (msfs == NULL)
97                 GOTO(out, rc = -EPROTO);
98
99         d->opd_statfs = *msfs;
100
101         osp_pre_update_status(d, rc);
102
103         /* schedule next update */
104         d->opd_statfs_fresh_till = cfs_time_shift(d->opd_statfs_maxage);
105         cfs_timer_arm(&d->opd_statfs_timer, d->opd_statfs_fresh_till);
106         d->opd_statfs_update_in_progress = 0;
107
108         CDEBUG(D_CACHE, "updated statfs %p\n", d);
109
110         RETURN(0);
111 out:
112         /* couldn't update statfs, try again as soon as possible */
113         cfs_waitq_signal(&d->opd_pre_waitq);
114         if (req->rq_import_generation == imp->imp_generation)
115                 CERROR("%s: couldn't update statfs: rc = %d\n",
116                        d->opd_obd->obd_name, rc);
117         RETURN(rc);
118 }
119
120 static int osp_statfs_update(struct osp_device *d)
121 {
122         struct ptlrpc_request   *req;
123         struct obd_import       *imp;
124         union ptlrpc_async_args *aa;
125         int                      rc;
126
127         ENTRY;
128
129         CDEBUG(D_CACHE, "going to update statfs\n");
130
131         imp = d->opd_obd->u.cli.cl_import;
132         LASSERT(imp);
133
134         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
135         if (req == NULL)
136                 RETURN(-ENOMEM);
137
138         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
139         if (rc) {
140                 ptlrpc_request_free(req);
141                 RETURN(rc);
142         }
143         ptlrpc_request_set_replen(req);
144         req->rq_request_portal = OST_CREATE_PORTAL;
145         ptlrpc_at_set_req_timeout(req);
146
147         req->rq_interpret_reply = (ptlrpc_interpterer_t)osp_statfs_interpret;
148         aa = ptlrpc_req_async_args(req);
149         aa->pointer_arg[0] = d;
150
151         /*
152          * no updates till reply
153          */
154         cfs_timer_disarm(&d->opd_statfs_timer);
155         d->opd_statfs_fresh_till = cfs_time_shift(obd_timeout * 1000);
156         d->opd_statfs_update_in_progress = 1;
157
158         ptlrpcd_add_req(req, PDL_POLICY_ROUND, -1);
159
160         RETURN(0);
161 }
162
163 /*
164  * XXX: there might be a case where removed object(s) do not add free
165  * space (empty object). if the number of such deletions is high, then
166  * we can start to update statfs too often - a rpc storm
167  * TODO: some throttling is needed
168  */
169 void osp_statfs_need_now(struct osp_device *d)
170 {
171         if (!d->opd_statfs_update_in_progress) {
172                 /*
173                  * if current status is -ENOSPC (lack of free space on OST)
174                  * then we should poll OST immediately once object destroy
175                  * is replied
176                  */
177                 d->opd_statfs_fresh_till = cfs_time_shift(-1);
178                 cfs_timer_disarm(&d->opd_statfs_timer);
179                 cfs_waitq_signal(&d->opd_pre_waitq);
180         }
181 }
182
183
184 /*
185  * OSP tries to maintain pool of available objects so that calls to create
186  * objects don't block most of time
187  *
188  * each time OSP gets connected to OST, we should start from precreation cleanup
189  */
190 static inline int osp_precreate_running(struct osp_device *d)
191 {
192         return !!(d->opd_pre_thread.t_flags & SVC_RUNNING);
193 }
194
195 static inline int osp_precreate_stopped(struct osp_device *d)
196 {
197         return !!(d->opd_pre_thread.t_flags & SVC_STOPPED);
198 }
199
200 static inline int osp_precreate_near_empty_nolock(struct osp_device *d)
201 {
202         int window = d->opd_pre_last_created - d->opd_pre_next;
203
204         /* don't consider new precreation till OST is healty and
205          * has free space */
206         return ((window - d->opd_pre_reserved < d->opd_pre_grow_count / 2) &&
207                 (d->opd_pre_status == 0));
208 }
209
210 static inline int osp_precreate_near_empty(struct osp_device *d)
211 {
212         int rc;
213
214         /* XXX: do we really need locking here? */
215         cfs_spin_lock(&d->opd_pre_lock);
216         rc = osp_precreate_near_empty_nolock(d);
217         cfs_spin_unlock(&d->opd_pre_lock);
218         return rc;
219 }
220
221 static int osp_precreate_send(struct osp_device *d)
222 {
223         struct ptlrpc_request   *req;
224         struct obd_import       *imp;
225         struct ost_body         *body;
226         int                      rc, grow, diff;
227
228         ENTRY;
229
230         /* don't precreate new objects till OST healthy and has free space */
231         if (unlikely(d->opd_pre_status)) {
232                 CDEBUG(D_INFO, "%s: don't send new precreate: rc = %d\n",
233                        d->opd_obd->obd_name, d->opd_pre_status);
234                 RETURN(0);
235         }
236
237         /*
238          * if not connection/initialization is compeleted, ignore
239          */
240         imp = d->opd_obd->u.cli.cl_import;
241         LASSERT(imp);
242
243         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
244         if (req == NULL)
245                 RETURN(-ENOMEM);
246         req->rq_request_portal = OST_CREATE_PORTAL;
247         /* we should not resend create request - anyway we will have delorphan
248          * and kill these objects */
249         req->rq_no_delay = req->rq_no_resend = 1;
250
251         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
252         if (rc) {
253                 ptlrpc_request_free(req);
254                 RETURN(rc);
255         }
256
257         cfs_spin_lock(&d->opd_pre_lock);
258         if (d->opd_pre_grow_count > d->opd_pre_max_grow_count / 2)
259                 d->opd_pre_grow_count = d->opd_pre_max_grow_count / 2;
260         grow = d->opd_pre_grow_count;
261         cfs_spin_unlock(&d->opd_pre_lock);
262
263         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
264         LASSERT(body);
265         body->oa.o_id = d->opd_pre_last_created + grow;
266         body->oa.o_seq = FID_SEQ_OST_MDT0; /* XXX: support for CMD? */
267         body->oa.o_valid = OBD_MD_FLGROUP;
268
269         ptlrpc_request_set_replen(req);
270
271         rc = ptlrpc_queue_wait(req);
272         if (rc) {
273                 CERROR("%s: can't precreate: rc = %d\n",
274                        d->opd_obd->obd_name, rc);
275                 GOTO(out_req, rc);
276         }
277         LASSERT(req->rq_transno == 0);
278
279         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
280         if (body == NULL)
281                 GOTO(out_req, rc = -EPROTO);
282
283         CDEBUG(D_HA, "new last_created %lu\n", (unsigned long) body->oa.o_id);
284         LASSERT(body->oa.o_id > d->opd_pre_next);
285
286         diff = body->oa.o_id - d->opd_pre_last_created;
287
288         cfs_spin_lock(&d->opd_pre_lock);
289         if (diff < grow) {
290                 /* the OST has not managed to create all the
291                  * objects we asked for */
292                 d->opd_pre_grow_count = max(diff, OST_MIN_PRECREATE);
293                 d->opd_pre_grow_slow = 1;
294         } else {
295                 /* the OST is able to keep up with the work,
296                  * we could consider increasing grow_count
297                  * next time if needed */
298                 d->opd_pre_grow_slow = 0;
299         }
300         d->opd_pre_last_created = body->oa.o_id;
301         cfs_spin_unlock(&d->opd_pre_lock);
302         CDEBUG(D_OTHER, "current precreated pool: %llu-%llu\n",
303                d->opd_pre_next, d->opd_pre_last_created);
304
305 out_req:
306         /* now we can wakeup all users awaiting for objects */
307         osp_pre_update_status(d, rc);
308         cfs_waitq_signal(&d->opd_pre_user_waitq);
309
310         ptlrpc_req_finished(req);
311         RETURN(rc);
312 }
313
314
315 static int osp_get_lastid_from_ost(struct osp_device *d)
316 {
317         struct ptlrpc_request   *req;
318         struct obd_import       *imp;
319         obd_id                  *reply;
320         char                    *tmp;
321         int                      rc;
322
323         imp = d->opd_obd->u.cli.cl_import;
324         LASSERT(imp);
325
326         req = ptlrpc_request_alloc(imp, &RQF_OST_GET_INFO_LAST_ID);
327         if (req == NULL)
328                 RETURN(-ENOMEM);
329
330         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
331                              RCL_CLIENT, sizeof(KEY_LAST_ID));
332         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_GET_INFO);
333         if (rc) {
334                 ptlrpc_request_free(req);
335                 RETURN(rc);
336         }
337
338         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
339         memcpy(tmp, KEY_LAST_ID, sizeof(KEY_LAST_ID));
340
341         req->rq_no_delay = req->rq_no_resend = 1;
342         ptlrpc_request_set_replen(req);
343         rc = ptlrpc_queue_wait(req);
344         if (rc) {
345                 /* bad-bad OST.. let sysadm sort this out */
346                 ptlrpc_set_import_active(imp, 0);
347                 GOTO(out, rc);
348         }
349
350         reply = req_capsule_server_get(&req->rq_pill, &RMF_OBD_ID);
351         if (reply == NULL)
352                 GOTO(out, rc = -EPROTO);
353
354         d->opd_last_used_id = *reply;
355         CDEBUG(D_HA, "%s: got last_id "LPU64" from OST\n",
356                d->opd_obd->obd_name, d->opd_last_used_id);
357
358 out:
359         ptlrpc_req_finished(req);
360         RETURN(rc);
361
362 }
363
364 /**
365  * asks OST to clean precreate orphans
366  * and gets next id for new objects
367  */
368 static int osp_precreate_cleanup_orphans(struct osp_device *d)
369 {
370         struct ptlrpc_request   *req = NULL;
371         struct obd_import       *imp;
372         struct ost_body         *body;
373         int                      rc;
374
375         ENTRY;
376
377         LASSERT(d->opd_recovery_completed);
378         LASSERT(d->opd_pre_reserved == 0);
379
380         CDEBUG(D_HA, "%s: going to cleanup orphans since "LPU64"\n",
381                 d->opd_obd->obd_name, d->opd_last_used_id);
382
383         if (d->opd_last_used_id < 2) {
384                 /* lastid looks strange... ask OST */
385                 rc = osp_get_lastid_from_ost(d);
386                 if (rc)
387                         GOTO(out, rc);
388         }
389
390         imp = d->opd_obd->u.cli.cl_import;
391         LASSERT(imp);
392
393         req = ptlrpc_request_alloc(imp, &RQF_OST_CREATE);
394         if (req == NULL)
395                 GOTO(out, rc = -ENOMEM);
396
397         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
398         if (rc) {
399                 ptlrpc_request_free(req);
400                 GOTO(out, rc);
401         }
402
403         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
404         if (body == NULL)
405                 GOTO(out, rc = -EPROTO);
406
407         body->oa.o_flags = OBD_FL_DELORPHAN;
408         body->oa.o_valid = OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
409         body->oa.o_seq = FID_SEQ_OST_MDT0;
410
411         /* remove from NEXT after used one */
412         body->oa.o_id = d->opd_last_used_id + 1;
413
414         ptlrpc_request_set_replen(req);
415
416         /* Don't resend the delorphan req */
417         req->rq_no_resend = req->rq_no_delay = 1;
418
419         rc = ptlrpc_queue_wait(req);
420         if (rc)
421                 GOTO(out, rc);
422
423         body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
424         if (body == NULL)
425                 GOTO(out, rc = -EPROTO);
426
427         /*
428          * OST provides us with id new pool starts from in body->oa.o_id
429          */
430         cfs_spin_lock(&d->opd_pre_lock);
431         if (le64_to_cpu(d->opd_last_used_id) > body->oa.o_id) {
432                 d->opd_pre_grow_count = OST_MIN_PRECREATE +
433                                         le64_to_cpu(d->opd_last_used_id) -
434                                         body->oa.o_id;
435                 d->opd_pre_last_created = le64_to_cpu(d->opd_last_used_id) + 1;
436         } else {
437                 d->opd_pre_grow_count = OST_MIN_PRECREATE;
438                 d->opd_pre_last_created = body->oa.o_id + 1;
439         }
440         d->opd_pre_next = d->opd_pre_last_created;
441         d->opd_pre_grow_slow = 0;
442         cfs_spin_unlock(&d->opd_pre_lock);
443
444         CDEBUG(D_HA, "Got last_id "LPU64" from OST, last_used is "LPU64
445                ", next "LPU64"\n", body->oa.o_id,
446                le64_to_cpu(d->opd_last_used_id), d->opd_pre_next);
447
448 out:
449         if (req)
450                 ptlrpc_req_finished(req);
451
452         RETURN(rc);
453 }
454
455 /*
456  * the function updates current precreation status used: functional or not
457  *
458  * rc is a last code from the transport, rc == 0 meaning transport works
459  * well and users of lod can use objects from this OSP
460  *
461  * the status depends on current usage of OST
462  */
463 void osp_pre_update_status(struct osp_device *d, int rc)
464 {
465         struct obd_statfs       *msfs = &d->opd_statfs;
466         int                      old = d->opd_pre_status;
467         __u64                    used;
468
469         d->opd_pre_status = rc;
470         if (rc)
471                 goto out;
472
473         if (likely(msfs->os_type)) {
474                 used = min_t(__u64, (msfs->os_blocks - msfs->os_bfree) >> 10,
475                                     1 << 30);
476                 if ((msfs->os_ffree < 32) || (msfs->os_bavail < used)) {
477                         d->opd_pre_status = -ENOSPC;
478                         if (old != -ENOSPC)
479                                 CDEBUG(D_INFO, "%s: status: "LPU64" blocks, "
480                                        LPU64" free, "LPU64" used, "LPU64" "
481                                        "avail -> %d: rc = %d\n",
482                                        d->opd_obd->obd_name, msfs->os_blocks,
483                                        msfs->os_bfree, used, msfs->os_bavail,
484                                        d->opd_pre_status, rc);
485                         CDEBUG(D_INFO,
486                                "non-commited changes: %lu, in progress: %u\n",
487                                d->opd_syn_changes, d->opd_syn_rpc_in_progress);
488                 } else if (old == -ENOSPC) {
489                         d->opd_pre_status = 0;
490                         d->opd_pre_grow_slow = 0;
491                         d->opd_pre_grow_count = OST_MIN_PRECREATE;
492                         cfs_waitq_signal(&d->opd_pre_waitq);
493                         CDEBUG(D_INFO, "%s: no space: "LPU64" blocks, "LPU64
494                                " free, "LPU64" used, "LPU64" avail -> %d: "
495                                "rc = %d\n", d->opd_obd->obd_name,
496                                msfs->os_blocks, msfs->os_bfree, used,
497                                msfs->os_bavail, d->opd_pre_status, rc);
498                 }
499         }
500
501 out:
502         cfs_waitq_signal(&d->opd_pre_user_waitq);
503 }
504
505 static int osp_precreate_thread(void *_arg)
506 {
507         struct osp_device       *d = _arg;
508         struct ptlrpc_thread    *thread = &d->opd_pre_thread;
509         struct l_wait_info       lwi = { 0 };
510         char                     pname[16];
511         int                      rc;
512
513         ENTRY;
514
515         sprintf(pname, "osp-pre-%u\n", d->opd_index);
516         cfs_daemonize(pname);
517
518         cfs_spin_lock(&d->opd_pre_lock);
519         thread->t_flags = SVC_RUNNING;
520         cfs_spin_unlock(&d->opd_pre_lock);
521         cfs_waitq_signal(&thread->t_ctl_waitq);
522
523         while (osp_precreate_running(d)) {
524                 /*
525                  * need to be connected to OST
526                  */
527                 while (osp_precreate_running(d)) {
528                         l_wait_event(d->opd_pre_waitq,
529                                      !osp_precreate_running(d) ||
530                                      d->opd_new_connection, &lwi);
531
532                         if (!osp_precreate_running(d))
533                                 break;
534
535                         if (!d->opd_new_connection)
536                                 continue;
537
538                         /* got connected */
539                         d->opd_new_connection = 0;
540                         d->opd_got_disconnected = 0;
541                         break;
542                 }
543
544                 osp_statfs_update(d);
545
546                 /*
547                  * wait for local recovery to finish, so we can cleanup orphans
548                  * orphans are all objects since "last used" (assigned), but
549                  * there might be objects reserved and in some cases they won't
550                  * be used. we can't cleanup them till we're sure they won't be
551                  * used. so we block new reservations and wait till all reserved
552                  * objects either user or released.
553                  */
554                 l_wait_event(d->opd_pre_waitq, (!d->opd_pre_reserved &&
555                                                 d->opd_recovery_completed) ||
556                              !osp_precreate_running(d) ||
557                              d->opd_got_disconnected, &lwi);
558
559                 if (osp_precreate_running(d) && !d->opd_got_disconnected) {
560                         rc = osp_precreate_cleanup_orphans(d);
561                         if (rc) {
562                                 CERROR("%s: cannot cleanup orphans: rc = %d\n",
563                                        d->opd_obd->obd_name,  rc);
564                                 /* we can't proceed from here, OST seem to
565                                  * be in a bad shape, better to wait for
566                                  * a new instance of the server and repeat
567                                  * from the beginning. notify possible waiters
568                                  * this OSP isn't quite functional yet */
569                                 osp_pre_update_status(d, rc);
570                                 cfs_waitq_signal(&d->opd_pre_user_waitq);
571                                 l_wait_event(d->opd_pre_waitq,
572                                              !osp_precreate_running(d) ||
573                                              d->opd_new_connection, &lwi);
574                                 continue;
575
576                         }
577                 }
578
579                 /*
580                  * connected, can handle precreates now
581                  */
582                 while (osp_precreate_running(d)) {
583                         l_wait_event(d->opd_pre_waitq,
584                                      !osp_precreate_running(d) ||
585                                      osp_precreate_near_empty(d) ||
586                                      osp_statfs_need_update(d) ||
587                                      d->opd_got_disconnected, &lwi);
588
589                         if (!osp_precreate_running(d))
590                                 break;
591
592                         /* something happened to the connection
593                          * have to start from the beginning */
594                         if (d->opd_got_disconnected)
595                                 break;
596
597                         if (osp_statfs_need_update(d))
598                                 osp_statfs_update(d);
599
600                         if (osp_precreate_near_empty(d)) {
601                                 rc = osp_precreate_send(d);
602                                 /* osp_precreate_send() sets opd_pre_status
603                                  * in case of error, that prevent the using of
604                                  * failed device. */
605                                 if (rc != 0 && rc != -ENOSPC &&
606                                     rc != -ETIMEDOUT && rc != -ENOTCONN)
607                                         CERROR("%s: cannot precreate objects:"
608                                                " rc = %d\n",
609                                                d->opd_obd->obd_name, rc);
610                         }
611                 }
612         }
613
614         thread->t_flags = SVC_STOPPED;
615         cfs_waitq_signal(&thread->t_ctl_waitq);
616
617         RETURN(0);
618 }
619
620 static int osp_precreate_ready_condition(struct osp_device *d)
621 {
622         /* ready if got enough precreated objects */
623         if (d->opd_pre_next + d->opd_pre_reserved < d->opd_pre_last_created)
624                 return 1;
625
626         /* ready if OST reported no space and no destoys in progress */
627         if (d->opd_syn_changes + d->opd_syn_rpc_in_progress == 0 &&
628             d->opd_pre_status != 0)
629                 return 1;
630
631         return 0;
632 }
633
634 static int osp_precreate_timeout_condition(void *data)
635 {
636         struct osp_device *d = data;
637
638         LCONSOLE_WARN("%s: slow creates, last="LPU64", next="LPU64", "
639                       "reserved="LPU64", syn_changes=%lu, "
640                       "syn_rpc_in_progress=%d, status=%d\n",
641                       d->opd_obd->obd_name, d->opd_pre_last_created,
642                       d->opd_pre_next, d->opd_pre_reserved,
643                       d->opd_syn_changes, d->opd_syn_rpc_in_progress,
644                       d->opd_pre_status);
645
646         return 0;
647 }
648
649 /*
650  * called to reserve object in the pool
651  * return codes:
652  *  ENOSPC - no space on corresponded OST
653  *  EAGAIN - precreation is in progress, try later
654  *  EIO    - no access to OST
655  */
656 int osp_precreate_reserve(const struct lu_env *env, struct osp_device *d)
657 {
658         struct l_wait_info       lwi;
659         cfs_time_t               expire = cfs_time_shift(obd_timeout);
660         int                      precreated, rc;
661         int                      count = 0;
662
663         ENTRY;
664
665         LASSERT(d->opd_pre_last_created >= d->opd_pre_next);
666
667         lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout),
668                           osp_precreate_timeout_condition, d);
669
670         /*
671          * wait till:
672          *  - preallocation is done
673          *  - no free space expected soon
674          *  - can't connect to OST for too long (obd_timeout)
675          */
676         while ((rc = d->opd_pre_status) == 0 || rc == -ENOSPC ||
677                 rc == -ENODEV) {
678                 if (unlikely(rc == -ENODEV)) {
679                         if (cfs_time_aftereq(cfs_time_current(), expire))
680                                 break;
681                 }
682
683 #if LUSTRE_VERSION_CODE >= OBD_OCD_VERSION(2, 3, 90, 0)
684 #error "remove this before the release"
685 #endif
686                 /*
687                  * to address Andreas's concern on possible busy-loop
688                  * between this thread and osp_precreate_send()
689                  */
690                 LASSERT(count++ < 1000);
691
692                 /*
693                  * increase number of precreations
694                  */
695                 if (d->opd_pre_grow_count < d->opd_pre_max_grow_count &&
696                     d->opd_pre_grow_slow == 0 &&
697                     (d->opd_pre_last_created - d->opd_pre_next <=
698                      d->opd_pre_grow_count / 4 + 1)) {
699                         cfs_spin_lock(&d->opd_pre_lock);
700                         d->opd_pre_grow_slow = 1;
701                         d->opd_pre_grow_count *= 2;
702                         cfs_spin_unlock(&d->opd_pre_lock);
703                 }
704
705                 /*
706                  * we never use the last object in the window
707                  */
708                 cfs_spin_lock(&d->opd_pre_lock);
709                 precreated = d->opd_pre_last_created - d->opd_pre_next;
710                 if (precreated > d->opd_pre_reserved) {
711                         d->opd_pre_reserved++;
712                         cfs_spin_unlock(&d->opd_pre_lock);
713                         rc = 0;
714
715                         /* XXX: don't wake up if precreation is in progress */
716                         if (osp_precreate_near_empty_nolock(d))
717                                 cfs_waitq_signal(&d->opd_pre_waitq);
718
719                         break;
720                 }
721                 cfs_spin_unlock(&d->opd_pre_lock);
722
723                 /*
724                  * all precreated objects have been used and no-space
725                  * status leave us no chance to succeed very soon
726                  * but if there is destroy in progress, then we should
727                  * wait till that is done - some space might be released
728                  */
729                 if (unlikely(rc == -ENOSPC)) {
730                         if (d->opd_syn_changes) {
731                                 /* force local commit to release space */
732                                 dt_commit_async(env, d->opd_storage);
733                         }
734                         if (d->opd_syn_rpc_in_progress) {
735                                 /* just wait till destroys are done */
736                                 /* see l_wait_even() few lines below */
737                         }
738                         if (d->opd_syn_changes +
739                             d->opd_syn_rpc_in_progress == 0) {
740                                 /* no hope for free space */
741                                 break;
742                         }
743                 }
744
745                 /* XXX: don't wake up if precreation is in progress */
746                 cfs_waitq_signal(&d->opd_pre_waitq);
747
748                 l_wait_event(d->opd_pre_user_waitq,
749                              osp_precreate_ready_condition(d), &lwi);
750         }
751
752         RETURN(rc);
753 }
754
755 /*
756  * this function relies on reservation made before
757  */
758 __u64 osp_precreate_get_id(struct osp_device *d)
759 {
760         obd_id objid;
761
762         /* grab next id from the pool */
763         cfs_spin_lock(&d->opd_pre_lock);
764         LASSERT(d->opd_pre_next <= d->opd_pre_last_created);
765         objid = d->opd_pre_next++;
766         d->opd_pre_reserved--;
767         /*
768          * last_used_id must be changed along with getting new id otherwise
769          * we might miscalculate gap causing object loss or leak
770          */
771         osp_update_last_id(d, objid);
772         cfs_spin_unlock(&d->opd_pre_lock);
773
774         /*
775          * probably main thread suspended orphan cleanup till
776          * all reservations are released, see comment in
777          * osp_precreate_thread() just before orphan cleanup
778          */
779         if (unlikely(d->opd_pre_reserved == 0 && d->opd_pre_status))
780                 cfs_waitq_signal(&d->opd_pre_waitq);
781
782         return objid;
783 }
784
785 /*
786  *
787  */
788 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt,
789                         __u64 size)
790 {
791         struct osp_device       *d = lu2osp_dev(dt->do_lu.lo_dev);
792         struct ptlrpc_request   *req = NULL;
793         struct obd_import       *imp;
794         struct ost_body         *body;
795         struct obdo             *oa = NULL;
796         int                      rc;
797
798         ENTRY;
799
800         imp = d->opd_obd->u.cli.cl_import;
801         LASSERT(imp);
802
803         req = ptlrpc_request_alloc(imp, &RQF_OST_PUNCH);
804         if (req == NULL)
805                 RETURN(-ENOMEM);
806
807         /* XXX: capa support? */
808         /* osc_set_capa_size(req, &RMF_CAPA1, capa); */
809         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_PUNCH);
810         if (rc) {
811                 ptlrpc_request_free(req);
812                 RETURN(rc);
813         }
814
815         /*
816          * XXX: decide how do we do here with resend
817          * if we don't resend, then client may see wrong file size
818          * if we do resend, then MDS thread can get stuck for quite long
819          */
820         req->rq_no_resend = req->rq_no_delay = 1;
821
822         req->rq_request_portal = OST_IO_PORTAL; /* bug 7198 */
823         ptlrpc_at_set_req_timeout(req);
824
825         OBD_ALLOC_PTR(oa);
826         if (oa == NULL)
827                 GOTO(out, rc = -ENOMEM);
828
829         rc = fid_ostid_pack(lu_object_fid(&dt->do_lu), &oa->o_oi);
830         LASSERT(rc == 0);
831         oa->o_size = size;
832         oa->o_blocks = OBD_OBJECT_EOF;
833         oa->o_valid = OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
834                       OBD_MD_FLID | OBD_MD_FLGROUP;
835
836         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
837         LASSERT(body);
838         lustre_set_wire_obdo(&body->oa, oa);
839
840         /* XXX: capa support? */
841         /* osc_pack_capa(req, body, capa); */
842
843         ptlrpc_request_set_replen(req);
844
845         rc = ptlrpc_queue_wait(req);
846         if (rc)
847                 CERROR("can't punch object: %d\n", rc);
848 out:
849         ptlrpc_req_finished(req);
850         if (oa)
851                 OBD_FREE_PTR(oa);
852         RETURN(rc);
853 }
854
855 int osp_init_precreate(struct osp_device *d)
856 {
857         struct l_wait_info       lwi = { 0 };
858         int                      rc;
859
860         ENTRY;
861
862         /* initially precreation isn't ready */
863         d->opd_pre_status = -EAGAIN;
864         d->opd_pre_next = 1;
865         d->opd_pre_last_created = 1;
866         d->opd_pre_reserved = 0;
867         d->opd_got_disconnected = 1;
868         d->opd_pre_grow_slow = 0;
869         d->opd_pre_grow_count = OST_MIN_PRECREATE;
870         d->opd_pre_min_grow_count = OST_MIN_PRECREATE;
871         d->opd_pre_max_grow_count = OST_MAX_PRECREATE;
872
873         cfs_spin_lock_init(&d->opd_pre_lock);
874         cfs_waitq_init(&d->opd_pre_waitq);
875         cfs_waitq_init(&d->opd_pre_user_waitq);
876         cfs_waitq_init(&d->opd_pre_thread.t_ctl_waitq);
877
878         /*
879          * Initialize statfs-related things
880          */
881         d->opd_statfs_maxage = 5; /* default update interval */
882         d->opd_statfs_fresh_till = cfs_time_shift(-1000);
883         CDEBUG(D_OTHER, "current %llu, fresh till %llu\n",
884                (unsigned long long)cfs_time_current(),
885                (unsigned long long)d->opd_statfs_fresh_till);
886         cfs_timer_init(&d->opd_statfs_timer, osp_statfs_timer_cb, d);
887
888         /*
889          * start thread handling precreation and statfs updates
890          */
891         rc = cfs_create_thread(osp_precreate_thread, d, 0);
892         if (rc < 0) {
893                 CERROR("can't start precreate thread %d\n", rc);
894                 RETURN(rc);
895         }
896
897         l_wait_event(d->opd_pre_thread.t_ctl_waitq,
898                      osp_precreate_running(d) || osp_precreate_stopped(d),
899                      &lwi);
900
901         RETURN(0);
902 }
903
904 void osp_precreate_fini(struct osp_device *d)
905 {
906         struct ptlrpc_thread *thread = &d->opd_pre_thread;
907
908         ENTRY;
909
910         cfs_timer_disarm(&d->opd_statfs_timer);
911
912         thread->t_flags = SVC_STOPPING;
913         cfs_waitq_signal(&d->opd_pre_waitq);
914
915         cfs_wait_event(thread->t_ctl_waitq, thread->t_flags & SVC_STOPPED);
916
917         EXIT;
918 }
919