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