Whamcloud - gitweb
b1c7c98b4a9f2637415236534b32629f42fce8b0
[fs/lustre-release.git] / lustre / ofd / ofd_fs.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) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ofd/ofd_fs.c
37  *
38  * Author: Alexey Zhuravlev <bzzz@whamcloud.com>
39  * Author: Mikhail Pershin <tappro@whamcloud.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_FILTER
43
44 #include "ofd_internal.h"
45
46 int ofd_record_write(const struct lu_env *env, struct ofd_device *ofd,
47                      struct dt_object *dt, struct lu_buf *buf, loff_t *off)
48 {
49         struct thandle  *th;
50         int              rc;
51
52         ENTRY;
53
54         LASSERT(dt);
55
56         th = dt_trans_create(env, ofd->ofd_osd);
57         if (IS_ERR(th))
58                 RETURN(PTR_ERR(th));
59
60         rc = dt_declare_record_write(env, dt, buf->lb_len, *off, th);
61         if (rc == 0) {
62                 rc = dt_trans_start_local(env, ofd->ofd_osd, th);
63                 if (rc == 0)
64                         rc = dt_record_write(env, dt, buf, off, th);
65         }
66         dt_trans_stop(env, ofd->ofd_osd, th);
67
68         RETURN(rc);
69 }
70
71 int ofd_precreate_batch(struct ofd_device *ofd, int batch)
72 {
73         int count;
74
75         spin_lock(&ofd->ofd_batch_lock);
76         count = min(ofd->ofd_precreate_batch, batch);
77         spin_unlock(&ofd->ofd_batch_lock);
78
79         return count;
80 }
81
82 struct ofd_seq *ofd_seq_get(struct ofd_device *ofd, obd_seq seq)
83 {
84         struct ofd_seq *oseq;
85
86         read_lock(&ofd->ofd_seq_list_lock);
87         cfs_list_for_each_entry(oseq, &ofd->ofd_seq_list, os_list) {
88                 if (oseq->os_seq == seq) {
89                         cfs_atomic_inc(&oseq->os_refc);
90                         read_unlock(&ofd->ofd_seq_list_lock);
91                         return oseq;
92                 }
93         }
94         read_unlock(&ofd->ofd_seq_list_lock);
95         return NULL;
96 }
97
98 static void ofd_seq_destroy(const struct lu_env *env,
99                             struct ofd_seq *oseq)
100 {
101         LASSERT(cfs_list_empty(&oseq->os_list));
102         LASSERT(oseq->os_lastid_obj != NULL);
103         lu_object_put(env, &oseq->os_lastid_obj->do_lu);
104         OBD_FREE_PTR(oseq);
105 }
106
107 void ofd_seq_put(const struct lu_env *env, struct ofd_seq *oseq)
108 {
109         if (cfs_atomic_dec_and_test(&oseq->os_refc))
110                 ofd_seq_destroy(env, oseq);
111 }
112
113 static void ofd_seq_delete(const struct lu_env *env, struct ofd_seq *oseq)
114 {
115         cfs_list_del_init(&oseq->os_list);
116         ofd_seq_put(env, oseq);
117 }
118
119 /**
120  * Add a new sequence to the OFD device.
121  *
122  * \param ofd OFD device
123  * \param new_seq new sequence to be added
124  *
125  * \retval the seq to be added or the existing seq
126  **/
127 static struct ofd_seq *ofd_seq_add(const struct lu_env *env,
128                                    struct ofd_device *ofd,
129                                    struct ofd_seq *new_seq)
130 {
131         struct ofd_seq *os = NULL;
132
133         write_lock(&ofd->ofd_seq_list_lock);
134         cfs_list_for_each_entry(os, &ofd->ofd_seq_list, os_list) {
135                 if (os->os_seq == new_seq->os_seq) {
136                         cfs_atomic_inc(&os->os_refc);
137                         write_unlock(&ofd->ofd_seq_list_lock);
138                         /* The seq has not been added to the list */
139                         ofd_seq_put(env, new_seq);
140                         return os;
141                 }
142         }
143         cfs_atomic_inc(&new_seq->os_refc);
144         cfs_list_add_tail(&new_seq->os_list, &ofd->ofd_seq_list);
145         ofd->ofd_seq_count++;
146         write_unlock(&ofd->ofd_seq_list_lock);
147         return new_seq;
148 }
149
150 obd_id ofd_seq_last_oid(struct ofd_seq *oseq)
151 {
152         obd_id id;
153
154         spin_lock(&oseq->os_last_oid_lock);
155         id = oseq->os_last_oid;
156         spin_unlock(&oseq->os_last_oid_lock);
157
158         return id;
159 }
160
161 void ofd_seq_last_oid_set(struct ofd_seq *oseq, obd_id id)
162 {
163         spin_lock(&oseq->os_last_oid_lock);
164         if (likely(oseq->os_last_oid < id))
165                 oseq->os_last_oid = id;
166         spin_unlock(&oseq->os_last_oid_lock);
167 }
168
169 int ofd_seq_last_oid_write(const struct lu_env *env, struct ofd_device *ofd,
170                            struct ofd_seq *oseq)
171 {
172         struct ofd_thread_info  *info = ofd_info(env);
173         obd_id                   tmp;
174         int                      rc;
175
176         ENTRY;
177
178         info->fti_buf.lb_buf = &tmp;
179         info->fti_buf.lb_len = sizeof(tmp);
180         info->fti_off = 0;
181
182         CDEBUG(D_INODE, "%s: write last_objid for seq "LPX64" : "LPX64"\n",
183                ofd_name(ofd), oseq->os_seq, ofd_seq_last_oid(oseq));
184
185         tmp = cpu_to_le64(ofd_seq_last_oid(oseq));
186
187         rc = ofd_record_write(env, ofd, oseq->os_lastid_obj, &info->fti_buf,
188                               &info->fti_off);
189         RETURN(rc);
190 }
191
192 static void ofd_deregister_seq_exp(struct ofd_device *ofd)
193 {
194         struct seq_server_site  *ss = &ofd->ofd_seq_site;
195
196         if (ss->ss_client_seq != NULL) {
197                 lustre_deregister_lwp_item(&ss->ss_client_seq->lcs_exp);
198                 ss->ss_client_seq->lcs_exp = NULL;
199         }
200
201         if (ss->ss_server_fld != NULL) {
202                 lustre_deregister_lwp_item(&ss->ss_server_fld->lsf_control_exp);
203                 ss->ss_server_fld->lsf_control_exp = NULL;
204         }
205 }
206
207 static int ofd_fld_fini(const struct lu_env *env,
208                         struct ofd_device *ofd)
209 {
210         struct seq_server_site *ss = &ofd->ofd_seq_site;
211         ENTRY;
212
213         if (ss && ss->ss_server_fld) {
214                 fld_server_fini(env, ss->ss_server_fld);
215                 OBD_FREE_PTR(ss->ss_server_fld);
216                 ss->ss_server_fld = NULL;
217         }
218
219         RETURN(0);
220 }
221
222 void ofd_seqs_fini(const struct lu_env *env, struct ofd_device *ofd)
223 {
224         struct ofd_seq  *oseq;
225         struct ofd_seq  *tmp;
226         cfs_list_t       dispose;
227         int             rc;
228
229         ofd_deregister_seq_exp(ofd);
230
231         rc = ofd_fid_fini(env, ofd);
232         if (rc != 0)
233                 CERROR("%s: fid fini error: rc = %d\n", ofd_name(ofd), rc);
234
235         rc = ofd_fld_fini(env, ofd);
236         if (rc != 0)
237                 CERROR("%s: fld fini error: rc = %d\n", ofd_name(ofd), rc);
238
239         CFS_INIT_LIST_HEAD(&dispose);
240         write_lock(&ofd->ofd_seq_list_lock);
241         cfs_list_for_each_entry_safe(oseq, tmp, &ofd->ofd_seq_list, os_list) {
242                 cfs_list_move(&oseq->os_list, &dispose);
243         }
244         write_unlock(&ofd->ofd_seq_list_lock);
245
246         while (!cfs_list_empty(&dispose)) {
247                 oseq = container_of0(dispose.next, struct ofd_seq, os_list);
248                 ofd_seq_delete(env, oseq);
249         }
250
251         LASSERT(cfs_list_empty(&ofd->ofd_seq_list));
252         return;
253 }
254
255 struct ofd_seq *ofd_seq_load(const struct lu_env *env, struct ofd_device *ofd,
256                              obd_seq seq)
257 {
258         struct ofd_thread_info  *info = ofd_info(env);
259         struct ofd_seq          *oseq = NULL;
260         struct dt_object        *dob;
261         obd_id                   lastid;
262         int                      rc;
263
264         ENTRY;
265
266         /* if seq is already initialized */
267         oseq = ofd_seq_get(ofd, seq);
268         if (oseq != NULL)
269                 RETURN(oseq);
270
271         OBD_ALLOC_PTR(oseq);
272         if (oseq == NULL)
273                 RETURN(ERR_PTR(-ENOMEM));
274
275         lu_last_id_fid(&info->fti_fid, seq);
276         memset(&info->fti_attr, 0, sizeof(info->fti_attr));
277         info->fti_attr.la_valid = LA_MODE;
278         info->fti_attr.la_mode = S_IFREG |  S_IRUGO | S_IWUSR;
279         info->fti_dof.dof_type = dt_mode_to_dft(S_IFREG);
280
281         /* create object tracking per-seq last created
282          * id to be used by orphan recovery mechanism */
283         dob = dt_find_or_create(env, ofd->ofd_osd, &info->fti_fid,
284                                 &info->fti_dof, &info->fti_attr);
285         if (IS_ERR(dob)) {
286                 OBD_FREE_PTR(oseq);
287                 RETURN((void *)dob);
288         }
289
290         oseq->os_lastid_obj = dob;
291
292         CFS_INIT_LIST_HEAD(&oseq->os_list);
293         mutex_init(&oseq->os_create_lock);
294         spin_lock_init(&oseq->os_last_oid_lock);
295         oseq->os_seq = seq;
296
297         cfs_atomic_set(&oseq->os_refc, 1);
298
299         rc = dt_attr_get(env, dob, &info->fti_attr, BYPASS_CAPA);
300         if (rc)
301                 GOTO(cleanup, rc);
302
303         if (info->fti_attr.la_size == 0) {
304                 /* object is just created, initialize last id */
305                 oseq->os_last_oid = OFD_INIT_OBJID;
306                 ofd_seq_last_oid_write(env, ofd, oseq);
307         } else if (info->fti_attr.la_size == sizeof(lastid)) {
308                 info->fti_off = 0;
309                 info->fti_buf.lb_buf = &lastid;
310                 info->fti_buf.lb_len = sizeof(lastid);
311
312                 rc = dt_record_read(env, dob, &info->fti_buf, &info->fti_off);
313                 if (rc) {
314                         CERROR("%s: can't read last_id: rc = %d\n",
315                                 ofd_name(ofd), rc);
316                         GOTO(cleanup, rc);
317                 }
318                 oseq->os_last_oid = le64_to_cpu(lastid);
319         } else {
320                 CERROR("%s: corrupted size "LPU64" LAST_ID of seq "LPX64"\n",
321                         ofd_name(ofd), (__u64)info->fti_attr.la_size, seq);
322                 GOTO(cleanup, rc = -EINVAL);
323         }
324
325         oseq = ofd_seq_add(env, ofd, oseq);
326         RETURN(oseq);
327 cleanup:
328         ofd_seq_put(env, oseq);
329         return ERR_PTR(rc);
330 }
331
332 static int ofd_fld_init(const struct lu_env *env, const char *uuid,
333                         struct ofd_device *ofd)
334 {
335         struct seq_server_site *ss = &ofd->ofd_seq_site;
336         int rc;
337         ENTRY;
338
339         OBD_ALLOC_PTR(ss->ss_server_fld);
340         if (ss->ss_server_fld == NULL)
341                 RETURN(rc = -ENOMEM);
342
343         rc = fld_server_init(env, ss->ss_server_fld, ofd->ofd_osd, uuid,
344                              ss->ss_node_id, LU_SEQ_RANGE_OST);
345         if (rc) {
346                 OBD_FREE_PTR(ss->ss_server_fld);
347                 ss->ss_server_fld = NULL;
348                 RETURN(rc);
349         }
350         RETURN(0);
351 }
352
353 static int ofd_register_seq_exp(struct ofd_device *ofd)
354 {
355         struct seq_server_site  *ss = &ofd->ofd_seq_site;
356         char                    *lwp_name = NULL;
357         int                     rc;
358
359         OBD_ALLOC(lwp_name, MAX_OBD_NAME);
360         if (lwp_name == NULL)
361                 GOTO(out_free, rc = -ENOMEM);
362
363         rc = tgt_name2lwpname(ofd_name(ofd), lwp_name);
364         if (rc != 0)
365                 GOTO(out_free, rc);
366
367         rc = lustre_register_lwp_item(lwp_name, &ss->ss_client_seq->lcs_exp,
368                                       NULL, NULL);
369         if (rc != 0)
370                 GOTO(out_free, rc);
371
372         rc = lustre_register_lwp_item(lwp_name,
373                                       &ss->ss_server_fld->lsf_control_exp,
374                                       NULL, NULL);
375         if (rc != 0) {
376                 lustre_deregister_lwp_item(&ss->ss_client_seq->lcs_exp);
377                 ss->ss_client_seq->lcs_exp = NULL;
378                 GOTO(out_free, rc);
379         }
380 out_free:
381         if (lwp_name != NULL)
382                 OBD_FREE(lwp_name, MAX_OBD_NAME);
383
384         return rc;
385 }
386
387 /* object sequence management */
388 int ofd_seqs_init(const struct lu_env *env, struct ofd_device *ofd)
389 {
390         int rc;
391
392         rc = ofd_fid_init(env, ofd);
393         if (rc != 0) {
394                 CERROR("%s: fid init error: rc = %d\n", ofd_name(ofd), rc);
395                 return rc;
396         }
397
398         rc = ofd_fld_init(env, ofd_name(ofd), ofd);
399         if (rc) {
400                 CERROR("%s: Can't init fld, rc %d\n", ofd_name(ofd), rc);
401                 return rc;
402         }
403
404         rc = ofd_register_seq_exp(ofd);
405         if (rc) {
406                 CERROR("%s: Can't init seq exp, rc %d\n", ofd_name(ofd), rc);
407                 return rc;
408         }
409
410         rwlock_init(&ofd->ofd_seq_list_lock);
411         CFS_INIT_LIST_HEAD(&ofd->ofd_seq_list);
412         ofd->ofd_seq_count = 0;
413         return rc;
414 }
415
416 int ofd_clients_data_init(const struct lu_env *env, struct ofd_device *ofd,
417                           unsigned long fsize)
418 {
419         struct obd_device               *obd = ofd_obd(ofd);
420         struct lr_server_data           *lsd = &ofd->ofd_lut.lut_lsd;
421         struct lsd_client_data          *lcd = NULL;
422         struct filter_export_data       *fed;
423         int                              cl_idx;
424         int                              rc = 0;
425         loff_t                           off = lsd->lsd_client_start;
426
427         CLASSERT(offsetof(struct lsd_client_data, lcd_padding) +
428                  sizeof(lcd->lcd_padding) == LR_CLIENT_SIZE);
429
430         OBD_ALLOC_PTR(lcd);
431         if (lcd == NULL)
432                 RETURN(-ENOMEM);
433
434         for (cl_idx = 0; off < fsize; cl_idx++) {
435                 struct obd_export       *exp;
436                 __u64                    last_rcvd;
437
438                 /* Don't assume off is incremented properly by
439                  * fsfilt_read_record(), in case sizeof(*lcd)
440                  * isn't the same as fsd->lsd_client_size.  */
441                 off = lsd->lsd_client_start + cl_idx * lsd->lsd_client_size;
442                 rc = tgt_client_data_read(env, &ofd->ofd_lut, lcd, &off, cl_idx);
443                 if (rc) {
444                         CERROR("%s: error reading FILT %s idx %d off %llu: "
445                                "rc = %d\n", ofd_name(ofd), LAST_RCVD, cl_idx,
446                                off, rc);
447                         rc = 0;
448                         break; /* read error shouldn't cause startup to fail */
449                 }
450
451                 if (lcd->lcd_uuid[0] == '\0') {
452                         CDEBUG(D_INFO, "skipping zeroed client at offset %d\n",
453                                cl_idx);
454                         continue;
455                 }
456
457                 last_rcvd = lcd->lcd_last_transno;
458
459                 /* These exports are cleaned up by ofd_disconnect(), so they
460                  * need to be set up like real exports as ofd_connect() does.
461                  */
462                 exp = class_new_export(obd, (struct obd_uuid *)lcd->lcd_uuid);
463
464                 CDEBUG(D_HA, "RCVRNG CLIENT uuid: %s idx: %d lr: "LPU64
465                        " srv lr: "LPU64"\n", lcd->lcd_uuid, cl_idx,
466                        last_rcvd, lsd->lsd_last_transno);
467
468                 if (IS_ERR(exp)) {
469                         if (PTR_ERR(exp) == -EALREADY) {
470                                 /* export already exists, zero out this one */
471                                 CERROR("%s: Duplicate export %s!\n",
472                                        ofd_name(ofd), lcd->lcd_uuid);
473                                 continue;
474                         }
475                         GOTO(err_out, rc = PTR_ERR(exp));
476                 }
477
478                 fed = &exp->exp_filter_data;
479                 *fed->fed_ted.ted_lcd = *lcd;
480
481                 rc = tgt_client_add(env, exp, cl_idx);
482                 LASSERTF(rc == 0, "rc = %d\n", rc); /* can't fail existing */
483                 /* VBR: set export last committed version */
484                 exp->exp_last_committed = last_rcvd;
485                 spin_lock(&exp->exp_lock);
486                 exp->exp_connecting = 0;
487                 exp->exp_in_recovery = 0;
488                 spin_unlock(&exp->exp_lock);
489                 obd->obd_max_recoverable_clients++;
490                 class_export_put(exp);
491
492                 /* Need to check last_rcvd even for duplicated exports. */
493                 CDEBUG(D_OTHER, "client at idx %d has last_rcvd = "LPU64"\n",
494                        cl_idx, last_rcvd);
495
496                 spin_lock(&ofd->ofd_lut.lut_translock);
497                 if (last_rcvd > lsd->lsd_last_transno)
498                         lsd->lsd_last_transno = last_rcvd;
499                 spin_unlock(&ofd->ofd_lut.lut_translock);
500         }
501
502 err_out:
503         OBD_FREE_PTR(lcd);
504         RETURN(rc);
505 }
506
507 int ofd_server_data_init(const struct lu_env *env, struct ofd_device *ofd)
508 {
509         struct ofd_thread_info  *info = ofd_info(env);
510         struct lr_server_data   *lsd = &ofd->ofd_lut.lut_lsd;
511         struct obd_device       *obd = ofd_obd(ofd);
512         unsigned long           last_rcvd_size;
513         __u32                   index;
514         int                     rc;
515
516         rc = dt_attr_get(env, ofd->ofd_lut.lut_last_rcvd, &info->fti_attr,
517                          BYPASS_CAPA);
518         if (rc)
519                 RETURN(rc);
520
521         last_rcvd_size = (unsigned long)info->fti_attr.la_size;
522
523         /* ensure padding in the struct is the correct size */
524         CLASSERT (offsetof(struct lr_server_data, lsd_padding) +
525                   sizeof(lsd->lsd_padding) == LR_SERVER_SIZE);
526
527         rc = server_name2index(obd->obd_name, &index, NULL);
528         if (rc < 0) {
529                 CERROR("%s: Can not get index from obd_name: rc = %d\n",
530                        obd->obd_name, rc);
531                 RETURN(rc);
532         }
533
534         if (last_rcvd_size == 0) {
535                 LCONSOLE_WARN("%s: new disk, initializing\n", obd->obd_name);
536
537                 memcpy(lsd->lsd_uuid, obd->obd_uuid.uuid,
538                        sizeof(lsd->lsd_uuid));
539                 lsd->lsd_last_transno = 0;
540                 lsd->lsd_mount_count = 0;
541                 lsd->lsd_server_size = LR_SERVER_SIZE;
542                 lsd->lsd_client_start = LR_CLIENT_START;
543                 lsd->lsd_client_size = LR_CLIENT_SIZE;
544                 lsd->lsd_subdir_count = FILTER_SUBDIR_COUNT;
545                 lsd->lsd_feature_incompat = OBD_INCOMPAT_OST;
546                 lsd->lsd_osd_index = index;
547         } else {
548                 rc = tgt_server_data_read(env, &ofd->ofd_lut);
549                 if (rc) {
550                         CDEBUG(D_INODE,"OBD ofd: error reading %s: rc %d\n",
551                                LAST_RCVD, rc);
552                         GOTO(err_fsd, rc);
553                 }
554                 if (strcmp((char *)lsd->lsd_uuid,
555                            (char *)obd->obd_uuid.uuid)) {
556                         LCONSOLE_ERROR("Trying to start OBD %s using the wrong"
557                                        " disk %s. Were the /dev/ assignments "
558                                        "rearranged?\n",
559                                        obd->obd_uuid.uuid, lsd->lsd_uuid);
560                         GOTO(err_fsd, rc = -EINVAL);
561                 }
562
563                 if (lsd->lsd_osd_index == 0) {
564                         lsd->lsd_osd_index = index;
565                 } else if (lsd->lsd_osd_index != index) {
566                         LCONSOLE_ERROR("%s: index %d in last rcvd is different"
567                                        " with the index %d in config log."
568                                        " It might be disk corruption!\n",
569                                        obd->obd_name, lsd->lsd_osd_index,
570                                        index);
571                         GOTO(err_fsd, rc = -EINVAL);
572                 }
573         }
574
575         lsd->lsd_mount_count++;
576         obd->u.obt.obt_mount_count = lsd->lsd_mount_count;
577         obd->u.obt.obt_instance = (__u32)obd->u.obt.obt_mount_count;
578         ofd->ofd_subdir_count = lsd->lsd_subdir_count;
579
580         if (lsd->lsd_feature_incompat & ~OFD_INCOMPAT_SUPP) {
581                 CERROR("%s: unsupported incompat filesystem feature(s) %x\n",
582                        obd->obd_name,
583                        lsd->lsd_feature_incompat & ~OFD_INCOMPAT_SUPP);
584                 GOTO(err_fsd, rc = -EINVAL);
585         }
586         if (lsd->lsd_feature_rocompat & ~OFD_ROCOMPAT_SUPP) {
587                 CERROR("%s: unsupported read-only filesystem feature(s) %x\n",
588                        obd->obd_name,
589                        lsd->lsd_feature_rocompat & ~OFD_ROCOMPAT_SUPP);
590                 /* Do something like remount filesystem read-only */
591                 GOTO(err_fsd, rc = -EINVAL);
592         }
593
594         CDEBUG(D_INODE, "%s: server last_transno : "LPU64"\n",
595                obd->obd_name, lsd->lsd_last_transno);
596         CDEBUG(D_INODE, "%s: server mount_count: "LPU64"\n",
597                obd->obd_name, lsd->lsd_mount_count);
598         CDEBUG(D_INODE, "%s: server data size: %u\n",
599                obd->obd_name, lsd->lsd_server_size);
600         CDEBUG(D_INODE, "%s: per-client data start: %u\n",
601                obd->obd_name, lsd->lsd_client_start);
602         CDEBUG(D_INODE, "%s: per-client data size: %u\n",
603                obd->obd_name, lsd->lsd_client_size);
604         CDEBUG(D_INODE, "%s: server subdir_count: %u\n",
605                obd->obd_name, lsd->lsd_subdir_count);
606         CDEBUG(D_INODE, "%s: last_rcvd clients: %lu\n", obd->obd_name,
607                last_rcvd_size <= lsd->lsd_client_start ? 0 :
608                (last_rcvd_size - lsd->lsd_client_start) /
609                lsd->lsd_client_size);
610
611         if (!obd->obd_replayable)
612                 CWARN("%s: recovery support OFF\n", obd->obd_name);
613
614         rc = ofd_clients_data_init(env, ofd, last_rcvd_size);
615
616         spin_lock(&ofd->ofd_lut.lut_translock);
617         obd->obd_last_committed = lsd->lsd_last_transno;
618         ofd->ofd_lut.lut_last_transno = lsd->lsd_last_transno;
619         spin_unlock(&ofd->ofd_lut.lut_translock);
620
621         /* save it, so mount count and last_transno is current */
622         rc = tgt_server_data_update(env, &ofd->ofd_lut, 0);
623         if (rc)
624                 GOTO(err_fsd, rc);
625
626         RETURN(0);
627
628 err_fsd:
629         class_disconnect_exports(obd);
630         RETURN(rc);
631 }
632
633 int ofd_fs_setup(const struct lu_env *env, struct ofd_device *ofd,
634                  struct obd_device *obd)
635 {
636         struct ofd_thread_info  *info = ofd_info(env);
637         struct dt_object        *fo;
638         int                      rc = 0;
639
640         ENTRY;
641
642         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_FS_SETUP))
643                 RETURN (-ENOENT);
644
645         /* prepare transactions callbacks */
646         ofd->ofd_txn_cb.dtc_txn_start = NULL;
647         ofd->ofd_txn_cb.dtc_txn_stop = ofd_txn_stop_cb;
648         ofd->ofd_txn_cb.dtc_txn_commit = NULL;
649         ofd->ofd_txn_cb.dtc_cookie = ofd;
650         ofd->ofd_txn_cb.dtc_tag = LCT_DT_THREAD;
651         CFS_INIT_LIST_HEAD(&ofd->ofd_txn_cb.dtc_linkage);
652
653         dt_txn_callback_add(ofd->ofd_osd, &ofd->ofd_txn_cb);
654
655         rc = ofd_server_data_init(env, ofd);
656         if (rc)
657                 GOTO(out, rc);
658
659         lu_local_obj_fid(&info->fti_fid, OFD_HEALTH_CHECK_OID);
660         memset(&info->fti_attr, 0, sizeof(info->fti_attr));
661         info->fti_attr.la_valid = LA_MODE;
662         info->fti_attr.la_mode = S_IFREG | S_IRUGO | S_IWUSR;
663         info->fti_dof.dof_type = dt_mode_to_dft(S_IFREG);
664
665         fo = dt_find_or_create(env, ofd->ofd_osd, &info->fti_fid,
666                                &info->fti_dof, &info->fti_attr);
667         if (IS_ERR(fo))
668                 GOTO(out, rc = PTR_ERR(fo));
669
670         ofd->ofd_health_check_file = fo;
671
672         rc = ofd_seqs_init(env, ofd);
673         if (rc)
674                 GOTO(out_hc, rc);
675
676         RETURN(0);
677 out_hc:
678         lu_object_put(env, &ofd->ofd_health_check_file->do_lu);
679 out:
680         dt_txn_callback_del(ofd->ofd_osd, &ofd->ofd_txn_cb);
681         return rc;
682 }
683
684 void ofd_fs_cleanup(const struct lu_env *env, struct ofd_device *ofd)
685 {
686         int i;
687
688         ENTRY;
689
690         ofd_info_init(env, NULL);
691
692         ofd_seqs_fini(env, ofd);
693
694         i = dt_sync(env, ofd->ofd_osd);
695         if (i)
696                 CERROR("can't sync: %d\n", i);
697
698         /* Remove transaction callback */
699         dt_txn_callback_del(ofd->ofd_osd, &ofd->ofd_txn_cb);
700
701         if (ofd->ofd_health_check_file) {
702                 lu_object_put(env, &ofd->ofd_health_check_file->do_lu);
703                 ofd->ofd_health_check_file = NULL;
704         }
705
706         EXIT;
707 }
708