Whamcloud - gitweb
LU-1445 ofd: Add fid support on OFD
[fs/lustre-release.git] / lustre / ofd / ofd_dev.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.c
37  *
38  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
39  * Author: Mike Pershin <tappro@whamcloud.com>
40  * Author: Johann Lombardi <johann@whamcloud.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_FILTER
44
45 #include <obd_class.h>
46 #include <lustre_param.h>
47 #include <lustre_fid.h>
48
49 #include "ofd_internal.h"
50
51 /* Slab for OFD object allocation */
52 static cfs_mem_cache_t *ofd_object_kmem;
53
54 static struct lu_kmem_descr ofd_caches[] = {
55         {
56                 .ckd_cache = &ofd_object_kmem,
57                 .ckd_name  = "ofd_obj",
58                 .ckd_size  = sizeof(struct ofd_object)
59         },
60         {
61                 .ckd_cache = NULL
62         }
63 };
64
65 static int ofd_connect_to_next(const struct lu_env *env, struct ofd_device *m,
66                                const char *next, struct obd_export **exp)
67 {
68         struct obd_connect_data *data = NULL;
69         struct obd_device       *obd;
70         int                      rc;
71         ENTRY;
72
73         OBD_ALLOC_PTR(data);
74         if (data == NULL)
75                 GOTO(out, rc = -ENOMEM);
76
77         obd = class_name2obd(next);
78         if (obd == NULL) {
79                 CERROR("%s: can't locate next device: %s\n",
80                        m->ofd_dt_dev.dd_lu_dev.ld_obd->obd_name, next);
81                 GOTO(out, rc = -ENOTCONN);
82         }
83
84         data->ocd_connect_flags = OBD_CONNECT_VERSION;
85         data->ocd_version = LUSTRE_VERSION_CODE;
86
87         rc = obd_connect(NULL, exp, obd, &obd->obd_uuid, data, NULL);
88         if (rc) {
89                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
90                        m->ofd_dt_dev.dd_lu_dev.ld_obd->obd_name, next, rc);
91                 GOTO(out, rc);
92         }
93
94         m->ofd_dt_dev.dd_lu_dev.ld_site =
95                 m->ofd_osd_exp->exp_obd->obd_lu_dev->ld_site;
96         LASSERT(m->ofd_dt_dev.dd_lu_dev.ld_site);
97         m->ofd_osd = lu2dt_dev(m->ofd_osd_exp->exp_obd->obd_lu_dev);
98         m->ofd_dt_dev.dd_lu_dev.ld_site->ls_top_dev = &m->ofd_dt_dev.dd_lu_dev;
99
100 out:
101         if (data)
102                 OBD_FREE_PTR(data);
103         RETURN(rc);
104 }
105
106 static int ofd_stack_init(const struct lu_env *env,
107                           struct ofd_device *m, struct lustre_cfg *cfg)
108 {
109         const char              *dev = lustre_cfg_string(cfg, 0);
110         struct lu_device        *d;
111         struct ofd_thread_info  *info = ofd_info(env);
112         struct lustre_mount_info *lmi;
113         int                      rc;
114         char                    *osdname;
115
116         ENTRY;
117
118         lmi = server_get_mount(dev);
119         if (lmi == NULL) {
120                 CERROR("Cannot get mount info for %s!\n", dev);
121                 RETURN(-ENODEV);
122         }
123
124         /* find bottom osd */
125         OBD_ALLOC(osdname, MTI_NAME_MAXLEN);
126         if (osdname == NULL)
127                 RETURN(-ENOMEM);
128
129         snprintf(osdname, MTI_NAME_MAXLEN, "%s-osd", dev);
130         rc = ofd_connect_to_next(env, m, osdname, &m->ofd_osd_exp);
131         OBD_FREE(osdname, MTI_NAME_MAXLEN);
132         if (rc)
133                 RETURN(rc);
134
135         d = m->ofd_osd_exp->exp_obd->obd_lu_dev;
136         LASSERT(d);
137         m->ofd_osd = lu2dt_dev(d);
138
139         snprintf(info->fti_u.name, sizeof(info->fti_u.name),
140                  "%s-osd", lustre_cfg_string(cfg, 0));
141
142         RETURN(rc);
143 }
144
145 static void ofd_stack_fini(const struct lu_env *env, struct ofd_device *m,
146                            struct lu_device *top)
147 {
148         struct obd_device       *obd = ofd_obd(m);
149         struct lustre_cfg_bufs   bufs;
150         struct lustre_cfg       *lcfg;
151         char                     flags[3] = "";
152
153         ENTRY;
154
155         lu_site_purge(env, top->ld_site, ~0);
156
157         /* process cleanup, pass mdt obd name to get obd umount flags */
158         lustre_cfg_bufs_reset(&bufs, obd->obd_name);
159         if (obd->obd_force)
160                 strcat(flags, "F");
161         if (obd->obd_fail)
162                 strcat(flags, "A");
163         lustre_cfg_bufs_set_string(&bufs, 1, flags);
164         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
165         if (!lcfg) {
166                 CERROR("Cannot alloc lcfg!\n");
167                 RETURN_EXIT;
168         }
169
170         LASSERT(top);
171         top->ld_ops->ldo_process_config(env, top, lcfg);
172         lustre_cfg_free(lcfg);
173
174         lu_site_purge(env, top->ld_site, ~0);
175
176         LASSERT(m->ofd_osd_exp);
177         obd_disconnect(m->ofd_osd_exp);
178         m->ofd_osd = NULL;
179
180         EXIT;
181 }
182
183 /* For interoperability, see mdt_interop_param[]. */
184 static struct cfg_interop_param ofd_interop_param[] = {
185         { "ost.quota_type",     NULL },
186         { NULL }
187 };
188
189 /* used by MGS to process specific configurations */
190 static int ofd_process_config(const struct lu_env *env, struct lu_device *d,
191                               struct lustre_cfg *cfg)
192 {
193         struct ofd_device       *m = ofd_dev(d);
194         struct dt_device        *dt_next = m->ofd_osd;
195         struct lu_device        *next = &dt_next->dd_lu_dev;
196         int                      rc;
197
198         ENTRY;
199
200         switch (cfg->lcfg_command) {
201         case LCFG_PARAM: {
202                 struct lprocfs_static_vars lvars;
203
204                 /* For interoperability */
205                 struct cfg_interop_param   *ptr = NULL;
206                 struct lustre_cfg          *old_cfg = NULL;
207                 char                       *param = NULL;
208
209                 param = lustre_cfg_string(cfg, 1);
210                 if (param == NULL) {
211                         CERROR("param is empty\n");
212                         rc = -EINVAL;
213                         break;
214                 }
215
216                 ptr = class_find_old_param(param, ofd_interop_param);
217                 if (ptr != NULL) {
218                         if (ptr->new_param == NULL) {
219                                 rc = 0;
220                                 CWARN("For interoperability, skip this %s."
221                                       " It is obsolete.\n", ptr->old_param);
222                                 break;
223                         }
224
225                         CWARN("Found old param %s, changed it to %s.\n",
226                               ptr->old_param, ptr->new_param);
227
228                         old_cfg = cfg;
229                         cfg = lustre_cfg_rename(old_cfg, ptr->new_param);
230                         if (IS_ERR(cfg)) {
231                                 rc = PTR_ERR(cfg);
232                                 break;
233                         }
234                 }
235
236                 lprocfs_ofd_init_vars(&lvars);
237                 rc = class_process_proc_param(PARAM_OST, lvars.obd_vars, cfg,
238                                               d->ld_obd);
239                 if (rc > 0 || rc == -ENOSYS)
240                         /* we don't understand; pass it on */
241                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
242                 break;
243         }
244         case LCFG_SPTLRPC_CONF: {
245                 rc = -ENOTSUPP;
246                 break;
247         }
248         default:
249                 /* others are passed further */
250                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
251                 break;
252         }
253         RETURN(rc);
254 }
255
256 static int ofd_object_init(const struct lu_env *env, struct lu_object *o,
257                            const struct lu_object_conf *conf)
258 {
259         struct ofd_device       *d = ofd_dev(o->lo_dev);
260         struct lu_device        *under;
261         struct lu_object        *below;
262         int                      rc = 0;
263
264         ENTRY;
265
266         CDEBUG(D_INFO, "object init, fid = "DFID"\n",
267                PFID(lu_object_fid(o)));
268
269         under = &d->ofd_osd->dd_lu_dev;
270         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
271         if (below != NULL)
272                 lu_object_add(o, below);
273         else
274                 rc = -ENOMEM;
275
276         RETURN(rc);
277 }
278
279 static void ofd_object_free(const struct lu_env *env, struct lu_object *o)
280 {
281         struct ofd_object       *of = ofd_obj(o);
282         struct lu_object_header *h;
283
284         ENTRY;
285
286         h = o->lo_header;
287         CDEBUG(D_INFO, "object free, fid = "DFID"\n",
288                PFID(lu_object_fid(o)));
289
290         lu_object_fini(o);
291         lu_object_header_fini(h);
292         OBD_SLAB_FREE_PTR(of, ofd_object_kmem);
293         EXIT;
294 }
295
296 static int ofd_object_print(const struct lu_env *env, void *cookie,
297                             lu_printer_t p, const struct lu_object *o)
298 {
299         return (*p)(env, cookie, LUSTRE_OST_NAME"-object@%p", o);
300 }
301
302 struct lu_object_operations ofd_obj_ops = {
303         .loo_object_init        = ofd_object_init,
304         .loo_object_free        = ofd_object_free,
305         .loo_object_print       = ofd_object_print
306 };
307
308 static struct lu_object *ofd_object_alloc(const struct lu_env *env,
309                                           const struct lu_object_header *hdr,
310                                           struct lu_device *d)
311 {
312         struct ofd_object *of;
313
314         ENTRY;
315
316         OBD_SLAB_ALLOC_PTR_GFP(of, ofd_object_kmem, CFS_ALLOC_IO);
317         if (of != NULL) {
318                 struct lu_object        *o;
319                 struct lu_object_header *h;
320
321                 o = &of->ofo_obj.do_lu;
322                 h = &of->ofo_header;
323                 lu_object_header_init(h);
324                 lu_object_init(o, h, d);
325                 lu_object_add_top(h, o);
326                 o->lo_ops = &ofd_obj_ops;
327                 RETURN(o);
328         } else {
329                 RETURN(NULL);
330         }
331 }
332
333 extern int ost_handle(struct ptlrpc_request *req);
334
335 static int ofd_prepare(const struct lu_env *env, struct lu_device *pdev,
336                        struct lu_device *dev)
337 {
338         struct ofd_thread_info *info;
339         struct ofd_device       *ofd = ofd_dev(dev);
340         struct obd_device       *obd = ofd_obd(ofd);
341         struct lu_device        *next = &ofd->ofd_osd->dd_lu_dev;
342         int                      rc;
343
344         ENTRY;
345
346         rc = lu_env_refill((struct lu_env *)env);
347         if (rc != 0) {
348                 CERROR("Failure to refill session: '%d'\n", rc);
349                 RETURN(rc);
350         }
351
352         info = ofd_info_init(env, NULL);
353         if (info == NULL)
354                 RETURN(-EFAULT);
355
356         /* initialize lower device */
357         rc = next->ld_ops->ldo_prepare(env, dev, next);
358
359         target_recovery_init(&ofd->ofd_lut, ost_handle);
360         LASSERT(obd->obd_no_conn);
361         spin_lock(&obd->obd_dev_lock);
362         obd->obd_no_conn = 0;
363         spin_unlock(&obd->obd_dev_lock);
364
365         if (obd->obd_recovering == 0)
366                 ofd_postrecov(env, ofd);
367
368         RETURN(rc);
369 }
370
371 static int ofd_recovery_complete(const struct lu_env *env,
372                                  struct lu_device *dev)
373 {
374         struct ofd_device       *ofd = ofd_dev(dev);
375         struct lu_device        *next = &ofd->ofd_osd->dd_lu_dev;
376         int                      rc = 0;
377
378         ENTRY;
379
380         /* Grant space for object precreation on the self export.
381          * This initial reserved space (i.e. 20MB for zfs and 560KB for ldiskfs)
382          * is enough to create 20k objects. It is then adapted based on the
383          * precreate request size (see ofd_grant_create()
384          */
385         ofd_grant_connect(env, dev->ld_obd->obd_self_export,
386                           OST_MAX_PRECREATE * ofd->ofd_dt_conf.ddp_inodespace);
387         rc = next->ld_ops->ldo_recovery_complete(env, next);
388         RETURN(rc);
389 }
390
391 static struct lu_device_operations ofd_lu_ops = {
392         .ldo_object_alloc       = ofd_object_alloc,
393         .ldo_process_config     = ofd_process_config,
394         .ldo_recovery_complete  = ofd_recovery_complete,
395         .ldo_prepare            = ofd_prepare,
396 };
397
398 static int ofd_procfs_init(struct ofd_device *ofd)
399 {
400         struct lprocfs_static_vars       lvars;
401         struct obd_device               *obd = ofd_obd(ofd);
402         cfs_proc_dir_entry_t            *entry;
403         int                              rc = 0;
404
405         ENTRY;
406
407         /* lprocfs must be setup before the ofd so state can be safely added
408          * to /proc incrementally as the ofd is setup */
409         lprocfs_ofd_init_vars(&lvars);
410         rc = lprocfs_obd_setup(obd, lvars.obd_vars);
411         if (rc) {
412                 CERROR("%s: lprocfs_obd_setup failed: %d.\n",
413                        obd->obd_name, rc);
414                 RETURN(rc);
415         }
416
417         rc = lprocfs_alloc_obd_stats(obd, LPROC_OFD_LAST);
418         if (rc) {
419                 CERROR("%s: lprocfs_alloc_obd_stats failed: %d.\n",
420                        obd->obd_name, rc);
421                 GOTO(obd_cleanup, rc);
422         }
423
424         /* Init OFD private stats here */
425         lprocfs_counter_init(obd->obd_stats, LPROC_OFD_READ_BYTES,
426                              LPROCFS_CNTR_AVGMINMAX, "read_bytes", "bytes");
427         lprocfs_counter_init(obd->obd_stats, LPROC_OFD_WRITE_BYTES,
428                              LPROCFS_CNTR_AVGMINMAX, "write_bytes", "bytes");
429
430         rc = lproc_ofd_attach_seqstat(obd);
431         if (rc) {
432                 CERROR("%s: create seqstat failed: %d.\n", obd->obd_name, rc);
433                 GOTO(free_obd_stats, rc);
434         }
435
436         entry = lprocfs_register("exports", obd->obd_proc_entry, NULL, NULL);
437         if (IS_ERR(entry)) {
438                 rc = PTR_ERR(entry);
439                 CERROR("%s: error %d setting up lprocfs for %s\n",
440                        obd->obd_name, rc, "exports");
441                 GOTO(free_obd_stats, rc);
442         }
443         obd->obd_proc_exports_entry = entry;
444
445         entry = lprocfs_add_simple(obd->obd_proc_exports_entry, "clear",
446                                    lprocfs_nid_stats_clear_read,
447                                    lprocfs_nid_stats_clear_write, obd, NULL);
448         if (IS_ERR(entry)) {
449                 rc = PTR_ERR(entry);
450                 CERROR("%s: add proc entry 'clear' failed: %d.\n",
451                        obd->obd_name, rc);
452                 GOTO(free_obd_stats, rc);
453         }
454
455         rc = lprocfs_job_stats_init(obd, LPROC_OFD_STATS_LAST,
456                                     ofd_stats_counter_init);
457         if (rc)
458                 GOTO(remove_entry_clear, rc);
459         RETURN(0);
460 remove_entry_clear:
461         lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
462 free_obd_stats:
463         lprocfs_free_obd_stats(obd);
464 obd_cleanup:
465         lprocfs_obd_cleanup(obd);
466         return rc;
467 }
468
469 static int ofd_procfs_fini(struct ofd_device *ofd)
470 {
471         struct obd_device *obd = ofd_obd(ofd);
472
473         lprocfs_job_stats_fini(obd);
474         lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
475         lprocfs_free_per_client_stats(obd);
476         lprocfs_free_obd_stats(obd);
477         lprocfs_obd_cleanup(obd);
478         return 0;
479 }
480
481 extern int ost_handle(struct ptlrpc_request *req);
482
483 int ofd_fid_fini(const struct lu_env *env, struct ofd_device *ofd)
484 {
485         return seq_site_fini(env, &ofd->ofd_seq_site);
486 }
487
488 int ofd_fid_init(const struct lu_env *env, struct ofd_device *ofd)
489 {
490         struct seq_server_site  *ss = &ofd->ofd_seq_site;
491         struct lu_device        *lu = &ofd->ofd_dt_dev.dd_lu_dev;
492         char                    *obd_name = ofd_name(ofd);
493         char                    *name = NULL;
494         int                     rc = 0;
495
496         ss = &ofd->ofd_seq_site;
497         lu->ld_site->ld_seq_site = ss;
498         ss->ss_lu = lu->ld_site;
499         ss->ss_node_id = ofd->ofd_lut.lut_lsd.lsd_osd_index;
500
501         OBD_ALLOC_PTR(ss->ss_server_seq);
502         if (ss->ss_server_seq == NULL)
503                 GOTO(out_free, rc = -ENOMEM);
504
505         OBD_ALLOC(name, strlen(obd_name) + 10);
506         if (!name) {
507                 OBD_FREE_PTR(ss->ss_server_seq);
508                 ss->ss_server_seq = NULL;
509                 GOTO(out_free, rc = -ENOMEM);
510         }
511
512         rc = seq_server_init(ss->ss_server_seq, ofd->ofd_osd, obd_name,
513                              LUSTRE_SEQ_SERVER, ss, env);
514         if (rc) {
515                 CERROR("%s : seq server init error %d\n", obd_name, rc);
516                 GOTO(out_free, rc);
517         }
518         ss->ss_server_seq->lss_space.lsr_index = ss->ss_node_id;
519
520         OBD_ALLOC_PTR(ss->ss_client_seq);
521         if (ss->ss_client_seq == NULL)
522                 GOTO(out_free, -ENOMEM);
523
524         snprintf(name, strlen(obd_name) + 6, "%p-super", obd_name);
525         rc = seq_client_init(ss->ss_client_seq, NULL, LUSTRE_SEQ_DATA,
526                              name, NULL);
527         if (rc) {
528                 CERROR("%s : seq client init error %d\n", obd_name, rc);
529                 GOTO(out_free, rc);
530         }
531         OBD_FREE(name, strlen(obd_name) + 10);
532         name = NULL;
533
534         rc = seq_server_set_cli(ss->ss_server_seq, ss->ss_client_seq, env);
535
536 out_free:
537         if (rc) {
538                 if (ss->ss_server_seq) {
539                         seq_server_fini(ss->ss_server_seq, env);
540                         OBD_FREE_PTR(ss->ss_server_seq);
541                         ss->ss_server_seq = NULL;
542                 }
543
544                 if (ss->ss_client_seq) {
545                         seq_client_fini(ss->ss_client_seq);
546                         OBD_FREE_PTR(ss->ss_client_seq);
547                         ss->ss_client_seq = NULL;
548                 }
549
550                 if (name) {
551                         OBD_FREE(name, strlen(obd_name) + 10);
552                         name = NULL;
553                 }
554         }
555
556         return rc;
557 }
558
559 static int ofd_init0(const struct lu_env *env, struct ofd_device *m,
560                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
561 {
562         const char              *dev = lustre_cfg_string(cfg, 0);
563         struct ofd_thread_info  *info = NULL;
564         struct obd_device       *obd;
565         struct obd_statfs       *osfs;
566         int                      rc;
567
568         ENTRY;
569
570         obd = class_name2obd(dev);
571         if (obd == NULL) {
572                 CERROR("Cannot find obd with name %s\n", dev);
573                 RETURN(-ENODEV);
574         }
575
576         rc = lu_env_refill((struct lu_env *)env);
577         if (rc != 0)
578                 RETURN(rc);
579
580         obd->u.obt.obt_magic = OBT_MAGIC;
581
582         m->ofd_fmd_max_num = OFD_FMD_MAX_NUM_DEFAULT;
583         m->ofd_fmd_max_age = OFD_FMD_MAX_AGE_DEFAULT;
584
585         spin_lock_init(&m->ofd_flags_lock);
586         m->ofd_raid_degraded = 0;
587         m->ofd_syncjournal = 0;
588         ofd_slc_set(m);
589         m->ofd_grant_compat_disable = 0;
590
591         /* statfs data */
592         spin_lock_init(&m->ofd_osfs_lock);
593         m->ofd_osfs_age = cfs_time_shift_64(-1000);
594         m->ofd_osfs_unstable = 0;
595         m->ofd_statfs_inflight = 0;
596         m->ofd_osfs_inflight = 0;
597
598         /* grant data */
599         spin_lock_init(&m->ofd_grant_lock);
600         m->ofd_tot_dirty = 0;
601         m->ofd_tot_granted = 0;
602         m->ofd_tot_pending = 0;
603         m->ofd_seq_count = 0;
604
605         spin_lock_init(&m->ofd_batch_lock);
606         rwlock_init(&obd->u.filter.fo_sptlrpc_lock);
607         sptlrpc_rule_set_init(&obd->u.filter.fo_sptlrpc_rset);
608
609         obd->u.filter.fo_fl_oss_capa = 0;
610         CFS_INIT_LIST_HEAD(&obd->u.filter.fo_capa_keys);
611         obd->u.filter.fo_capa_hash = init_capa_hash();
612         if (obd->u.filter.fo_capa_hash == NULL)
613                 RETURN(-ENOMEM);
614
615         m->ofd_dt_dev.dd_lu_dev.ld_ops = &ofd_lu_ops;
616         m->ofd_dt_dev.dd_lu_dev.ld_obd = obd;
617         /* set this lu_device to obd, because error handling need it */
618         obd->obd_lu_dev = &m->ofd_dt_dev.dd_lu_dev;
619
620         rc = ofd_procfs_init(m);
621         if (rc) {
622                 CERROR("Can't init ofd lprocfs, rc %d\n", rc);
623                 RETURN(rc);
624         }
625
626         /* No connection accepted until configurations will finish */
627         obd->obd_no_conn = 1;
628         obd->obd_replayable = 1;
629         if (cfg->lcfg_bufcount > 4 && LUSTRE_CFG_BUFLEN(cfg, 4) > 0) {
630                 char *str = lustre_cfg_string(cfg, 4);
631
632                 if (strchr(str, 'n')) {
633                         CWARN("%s: recovery disabled\n", obd->obd_name);
634                         obd->obd_replayable = 0;
635                 }
636         }
637
638         info = ofd_info_init(env, NULL);
639         if (info == NULL)
640                 RETURN(-EFAULT);
641
642         rc = ofd_stack_init(env, m, cfg);
643         if (rc) {
644                 CERROR("Can't init device stack, rc %d\n", rc);
645                 GOTO(err_fini_proc, rc);
646         }
647
648         /* populate cached statfs data */
649         osfs = &ofd_info(env)->fti_u.osfs;
650         rc = ofd_statfs_internal(env, m, osfs, 0, NULL);
651         if (rc != 0) {
652                 CERROR("%s: can't get statfs data, rc %d\n", obd->obd_name, rc);
653                 GOTO(err_fini_stack, rc);
654         }
655         if (!IS_PO2(osfs->os_bsize)) {
656                 CERROR("%s: blocksize (%d) is not a power of 2\n",
657                                 obd->obd_name, osfs->os_bsize);
658                 GOTO(err_fini_stack, rc = -EPROTO);
659         }
660         m->ofd_blockbits = fls(osfs->os_bsize) - 1;
661
662         m->ofd_precreate_batch = OFD_PRECREATE_BATCH_DEFAULT;
663         if (osfs->os_bsize * osfs->os_blocks < OFD_PRECREATE_SMALL_FS)
664                 m->ofd_precreate_batch = OFD_PRECREATE_BATCH_SMALL;
665
666         snprintf(info->fti_u.name, sizeof(info->fti_u.name), "filter-%p", m);
667         m->ofd_namespace = ldlm_namespace_new(obd, info->fti_u.name,
668                                               LDLM_NAMESPACE_SERVER,
669                                               LDLM_NAMESPACE_GREEDY,
670                                               LDLM_NS_TYPE_OST);
671         if (m->ofd_namespace == NULL)
672                 GOTO(err_fini_stack, rc = -ENOMEM);
673         /* set obd_namespace for compatibility with old code */
674         obd->obd_namespace = m->ofd_namespace;
675         ldlm_register_intent(m->ofd_namespace, ofd_intent_policy);
676         m->ofd_namespace->ns_lvbo = &ofd_lvbo;
677         m->ofd_namespace->ns_lvbp = m;
678
679         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
680                            "filter_ldlm_cb_client", &obd->obd_ldlm_client);
681
682         dt_conf_get(env, m->ofd_osd, &m->ofd_dt_conf);
683
684         /* Allow at most ddp_grant_reserved% of the available filesystem space
685          * to be granted to clients, so that any errors in the grant overhead
686          * calculations do not allow granting more space to clients than can be
687          * written. Assumes that in aggregate the grant overhead calculations do
688          * not have more than ddp_grant_reserved% estimation error in them. */
689         m->ofd_grant_ratio =
690                 ofd_grant_ratio_conv(m->ofd_dt_conf.ddp_grant_reserved);
691
692         rc = tgt_init(env, &m->ofd_lut, obd, m->ofd_osd);
693         if (rc)
694                 GOTO(err_free_ns, rc);
695
696         rc = ofd_fs_setup(env, m, obd);
697         if (rc)
698                 GOTO(err_fini_lut, rc);
699
700         RETURN(0);
701 err_fini_lut:
702         tgt_fini(env, &m->ofd_lut);
703 err_free_ns:
704         ldlm_namespace_free(m->ofd_namespace, 0, obd->obd_force);
705         obd->obd_namespace = m->ofd_namespace = NULL;
706 err_fini_stack:
707         ofd_stack_fini(env, m, &m->ofd_osd->dd_lu_dev);
708 err_fini_proc:
709         ofd_procfs_fini(m);
710         return rc;
711 }
712
713 static void ofd_fini(const struct lu_env *env, struct ofd_device *m)
714 {
715         struct obd_device *obd = ofd_obd(m);
716         struct lu_device  *d = &m->ofd_dt_dev.dd_lu_dev;
717
718         target_recovery_fini(obd);
719         obd_exports_barrier(obd);
720         obd_zombie_barrier();
721
722         tgt_fini(env, &m->ofd_lut);
723         ofd_fs_cleanup(env, m);
724
725         ofd_free_capa_keys(m);
726         cleanup_capa_hash(obd->u.filter.fo_capa_hash);
727
728         if (m->ofd_namespace != NULL) {
729                 ldlm_namespace_free(m->ofd_namespace, NULL,
730                                     d->ld_obd->obd_force);
731                 d->ld_obd->obd_namespace = m->ofd_namespace = NULL;
732         }
733
734         ofd_stack_fini(env, m, &m->ofd_dt_dev.dd_lu_dev);
735         ofd_procfs_fini(m);
736         LASSERT(cfs_atomic_read(&d->ld_ref) == 0);
737         server_put_mount(obd->obd_name, NULL);
738         EXIT;
739 }
740
741 static struct lu_device *ofd_device_fini(const struct lu_env *env,
742                                          struct lu_device *d)
743 {
744         ENTRY;
745         ofd_fini(env, ofd_dev(d));
746         RETURN(NULL);
747 }
748
749 static struct lu_device *ofd_device_free(const struct lu_env *env,
750                                          struct lu_device *d)
751 {
752         struct ofd_device *m = ofd_dev(d);
753
754         dt_device_fini(&m->ofd_dt_dev);
755         OBD_FREE_PTR(m);
756         RETURN(NULL);
757 }
758
759 static struct lu_device *ofd_device_alloc(const struct lu_env *env,
760                                           struct lu_device_type *t,
761                                           struct lustre_cfg *cfg)
762 {
763         struct ofd_device *m;
764         struct lu_device  *l;
765         int                rc;
766
767         OBD_ALLOC_PTR(m);
768         if (m == NULL)
769                 return ERR_PTR(-ENOMEM);
770
771         l = &m->ofd_dt_dev.dd_lu_dev;
772         dt_device_init(&m->ofd_dt_dev, t);
773         rc = ofd_init0(env, m, t, cfg);
774         if (rc != 0) {
775                 ofd_device_free(env, l);
776                 l = ERR_PTR(rc);
777         }
778
779         return l;
780 }
781
782 /* thread context key constructor/destructor */
783 LU_KEY_INIT_FINI(ofd, struct ofd_thread_info);
784
785 static void ofd_key_exit(const struct lu_context *ctx,
786                          struct lu_context_key *key, void *data)
787 {
788         struct ofd_thread_info *info = data;
789
790         info->fti_env = NULL;
791         info->fti_exp = NULL;
792
793         info->fti_xid = 0;
794         info->fti_transno = 0;
795         info->fti_pre_version = 0;
796         info->fti_obj = NULL;
797         info->fti_has_trans = 0;
798         info->fti_mult_trans = 0;
799         info->fti_used = 0;
800
801         memset(&info->fti_attr, 0, sizeof info->fti_attr);
802 }
803
804 struct lu_context_key ofd_thread_key = {
805         .lct_tags = LCT_DT_THREAD,
806         .lct_init = ofd_key_init,
807         .lct_fini = ofd_key_fini,
808         .lct_exit = ofd_key_exit
809 };
810
811 /* type constructor/destructor: mdt_type_init, mdt_type_fini */
812 LU_TYPE_INIT_FINI(ofd, &ofd_thread_key);
813
814 static struct lu_device_type_operations ofd_device_type_ops = {
815         .ldto_init              = ofd_type_init,
816         .ldto_fini              = ofd_type_fini,
817
818         .ldto_start             = ofd_type_start,
819         .ldto_stop              = ofd_type_stop,
820
821         .ldto_device_alloc      = ofd_device_alloc,
822         .ldto_device_free       = ofd_device_free,
823         .ldto_device_fini       = ofd_device_fini
824 };
825
826 static struct lu_device_type ofd_device_type = {
827         .ldt_tags       = LU_DEVICE_DT,
828         .ldt_name       = LUSTRE_OST_NAME,
829         .ldt_ops        = &ofd_device_type_ops,
830         .ldt_ctx_tags   = LCT_DT_THREAD
831 };
832
833 int __init ofd_init(void)
834 {
835         struct lprocfs_static_vars      lvars;
836         int                             rc;
837
838         rc = lu_kmem_init(ofd_caches);
839         if (rc)
840                 return rc;
841
842         rc = ofd_fmd_init();
843         if (rc) {
844                 lu_kmem_fini(ofd_caches);
845                 return(rc);
846         }
847
848         lprocfs_ofd_init_vars(&lvars);
849
850         rc = class_register_type(&ofd_obd_ops, NULL, lvars.module_vars,
851                                  LUSTRE_OST_NAME, &ofd_device_type);
852         return rc;
853 }
854
855 void __exit ofd_exit(void)
856 {
857         ofd_fmd_exit();
858         lu_kmem_fini(ofd_caches);
859         class_unregister_type(LUSTRE_OST_NAME);
860 }
861
862 MODULE_AUTHOR("Whamcloud, Inc. <http://www.whamcloud.com/>");
863 MODULE_DESCRIPTION("Lustre Object Filtering Device");
864 MODULE_LICENSE("GPL");
865
866 module_init(ofd_init);
867 module_exit(ofd_exit);