Whamcloud - gitweb
LU-1305 osd: Makefiles for osd-zfs
[fs/lustre-release.git] / lustre / osd-zfs / osd_handler.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 /*
31  * Copyright (c) 2011, 2012 Whamcloud, Inc.
32  * Use is subject to license terms.
33  *
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  *
39  * lustre/osd-zfs/osd_handler.c
40  * Top-level entry points into osd module
41  *
42  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
43  * Author: Mike Pershin <tappro@whamcloud.com>
44  * Author: Johann Lombardi <johann@whamcloud.com>
45  */
46
47 #ifndef EXPORT_SYMTAB
48 # define EXPORT_SYMTAB
49 #endif
50 #define DEBUG_SUBSYSTEM S_OSD
51
52 #include <lustre_ver.h>
53 #include <libcfs/libcfs.h>
54 #include <obd_support.h>
55 #include <lustre_net.h>
56 #include <obd.h>
57 #include <obd_class.h>
58 #include <lustre_disk.h>
59 #include <lustre_fid.h>
60
61 #include "osd_internal.h"
62
63 #include <sys/dnode.h>
64 #include <sys/dbuf.h>
65 #include <sys/spa.h>
66 #include <sys/stat.h>
67 #include <sys/zap.h>
68 #include <sys/spa_impl.h>
69 #include <sys/zfs_znode.h>
70 #include <sys/dmu_tx.h>
71 #include <sys/dmu_objset.h>
72 #include <sys/dsl_prop.h>
73 #include <sys/sa_impl.h>
74 #include <sys/txg.h>
75
76 struct lu_context_key   osd_key;
77
78 static char *root_tag = "osd_mount, rootdb";
79
80 /* Slab for OSD object allocation */
81 cfs_mem_cache_t *osd_object_kmem;
82
83 static struct lu_kmem_descr osd_caches[] = {
84         {
85                 .ckd_cache = &osd_object_kmem,
86                 .ckd_name  = "zfs_osd_obj",
87                 .ckd_size  = sizeof(struct osd_object)
88         },
89         {
90                 .ckd_cache = NULL
91         }
92 };
93
94 static void arc_prune_func(int64_t bytes, void *private)
95 {
96         struct osd_device *od = private;
97         struct lu_site    *site = &od->od_site;
98         struct lu_env      env;
99         int rc;
100
101         rc = lu_env_init(&env, LCT_SHRINKER);
102         if (rc) {
103                 CERROR("%s: can't initialize shrinker env: rc = %d\n",
104                        od->od_svname, rc);
105                 return;
106         }
107
108         lu_site_purge(&env, site, (bytes >> 10));
109
110         lu_env_fini(&env);
111 }
112
113 /*
114  * Concurrency: doesn't access mutable data
115  */
116 static int osd_root_get(const struct lu_env *env,
117                         struct dt_device *dev, struct lu_fid *f)
118 {
119         lu_local_obj_fid(f, OSD_FS_ROOT_OID);
120         return 0;
121 }
122
123 /*
124  * OSD object methods.
125  */
126
127 /*
128  * Concurrency: shouldn't matter.
129  */
130 static void osd_trans_commit_cb(void *cb_data, int error)
131 {
132         struct osd_thandle      *oh = cb_data;
133         struct thandle          *th = &oh->ot_super;
134         struct lu_device        *lud = &th->th_dev->dd_lu_dev;
135         struct dt_txn_commit_cb *dcb, *tmp;
136
137         ENTRY;
138
139         if (error) {
140                 if (error == ECANCELED)
141                         CWARN("%s: transaction @0x%p was aborted\n",
142                               osd_dt_dev(th->th_dev)->od_svname, th);
143                 else
144                         CERROR("%s: transaction @0x%p commit error: rc = %d\n",
145                                 osd_dt_dev(th->th_dev)->od_svname, th, error);
146         }
147
148         dt_txn_hook_commit(th);
149
150         /* call per-transaction callbacks if any */
151         cfs_list_for_each_entry_safe(dcb, tmp, &oh->ot_dcb_list, dcb_linkage)
152                 dcb->dcb_func(NULL, th, dcb, error);
153
154         lu_device_put(lud);
155         th->th_dev = NULL;
156         lu_context_exit(&th->th_ctx);
157         lu_context_fini(&th->th_ctx);
158         OBD_FREE_PTR(oh);
159
160         EXIT;
161 }
162
163 static int osd_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb)
164 {
165         struct osd_thandle *oh;
166
167         oh = container_of0(th, struct osd_thandle, ot_super);
168         cfs_list_add(&dcb->dcb_linkage, &oh->ot_dcb_list);
169
170         return 0;
171 }
172
173 /*
174  * Concurrency: shouldn't matter.
175  */
176 static int osd_trans_start(const struct lu_env *env, struct dt_device *d,
177                            struct thandle *th)
178 {
179         struct osd_thandle      *oh;
180         int                     rc;
181         ENTRY;
182
183         oh = container_of0(th, struct osd_thandle, ot_super);
184         LASSERT(oh);
185         LASSERT(oh->ot_tx);
186
187         rc = dt_txn_hook_start(env, d, th);
188         if (rc != 0)
189                 RETURN(rc);
190
191         if (oh->ot_write_commit && OBD_FAIL_CHECK(OBD_FAIL_OST_MAPBLK_ENOSPC))
192                 /* Unlike ldiskfs, ZFS checks for available space and returns
193                  * -ENOSPC when assigning txg */
194                 RETURN(-ENOSPC);
195
196         rc = -dmu_tx_assign(oh->ot_tx, TXG_WAIT);
197         if (unlikely(rc != 0)) {
198                 struct osd_device *osd = osd_dt_dev(d);
199                 /* dmu will call commit callback with error code during abort */
200                 if (!lu_device_is_md(&d->dd_lu_dev) && rc == -ENOSPC)
201                         CERROR("%s: failed to start transaction due to ENOSPC. "
202                                "Metadata overhead is underestimated or "
203                                "grant_ratio is too low.\n",
204                                osd->od_dt_dev.dd_lu_dev.ld_obd->obd_name);
205                 else
206                         CERROR("%s: can't assign tx: rc = %d\n",
207                                osd->od_dt_dev.dd_lu_dev.ld_obd->obd_name, rc);
208         } else {
209                 /* add commit callback */
210                 dmu_tx_callback_register(oh->ot_tx, osd_trans_commit_cb, oh);
211                 oh->ot_assigned = 1;
212                 lu_context_init(&th->th_ctx, th->th_tags);
213                 lu_context_enter(&th->th_ctx);
214                 lu_device_get(&d->dd_lu_dev);
215         }
216
217         RETURN(rc);
218 }
219
220 /*
221  * Concurrency: shouldn't matter.
222  */
223 static int osd_trans_stop(const struct lu_env *env, struct thandle *th)
224 {
225         struct osd_device       *osd = osd_dt_dev(th->th_dev);
226         struct osd_thandle      *oh;
227         uint64_t                 txg;
228         int                      rc;
229         ENTRY;
230
231         oh = container_of0(th, struct osd_thandle, ot_super);
232
233         if (oh->ot_assigned == 0) {
234                 LASSERT(oh->ot_tx);
235                 dmu_tx_abort(oh->ot_tx);
236                 osd_object_sa_dirty_rele(oh);
237                 OBD_FREE_PTR(oh);
238                 RETURN(0);
239         }
240
241         rc = dt_txn_hook_stop(env, th);
242         if (rc != 0)
243                 CDEBUG(D_OTHER, "%s: transaction hook failed: rc = %d\n",
244                        osd->od_svname, rc);
245
246         LASSERT(oh->ot_tx);
247         txg = oh->ot_tx->tx_txg;
248
249         osd_object_sa_dirty_rele(oh);
250         dmu_tx_commit(oh->ot_tx);
251
252         if (th->th_sync)
253                 txg_wait_synced(dmu_objset_pool(osd->od_objset.os), txg);
254
255         RETURN(rc);
256 }
257
258 static struct thandle *osd_trans_create(const struct lu_env *env,
259                                         struct dt_device *dt)
260 {
261         struct osd_device       *osd = osd_dt_dev(dt);
262         struct osd_thandle      *oh;
263         struct thandle          *th;
264         dmu_tx_t                *tx;
265         ENTRY;
266
267         tx = dmu_tx_create(osd->od_objset.os);
268         if (tx == NULL)
269                 RETURN(ERR_PTR(-ENOMEM));
270
271         /* alloc callback data */
272         OBD_ALLOC_PTR(oh);
273         if (oh == NULL) {
274                 dmu_tx_abort(tx);
275                 RETURN(ERR_PTR(-ENOMEM));
276         }
277
278         oh->ot_tx = tx;
279         CFS_INIT_LIST_HEAD(&oh->ot_dcb_list);
280         CFS_INIT_LIST_HEAD(&oh->ot_sa_list);
281         cfs_sema_init(&oh->ot_sa_lock, 1);
282         th = &oh->ot_super;
283         th->th_dev = dt;
284         th->th_result = 0;
285         th->th_tags = LCT_TX_HANDLE;
286         RETURN(th);
287 }
288
289 /*
290  * Concurrency: shouldn't matter.
291  */
292 int osd_statfs(const struct lu_env *env, struct dt_device *d,
293                struct obd_statfs *osfs)
294 {
295         struct osd_device *osd = osd_dt_dev(d);
296         int                rc;
297         ENTRY;
298
299         rc = udmu_objset_statfs(&osd->od_objset, osfs);
300         if (rc)
301                 RETURN(rc);
302         osfs->os_bavail -= min_t(obd_size,
303                                  OSD_GRANT_FOR_LOCAL_OIDS / osfs->os_bsize,
304                                  osfs->os_bavail);
305         RETURN(0);
306 }
307
308 /*
309  * Concurrency: doesn't access mutable data.
310  */
311 static void osd_conf_get(const struct lu_env *env,
312                          const struct dt_device *dev,
313                          struct dt_device_param *param)
314 {
315         /*
316          * XXX should be taken from not-yet-existing fs abstraction layer.
317          */
318         param->ddp_max_name_len  = MAXNAMELEN;
319         param->ddp_max_nlink     = 1 << 31; /* it's 8byte on a disk */
320         param->ddp_block_shift   = 12; /* XXX */
321         param->ddp_mount_type    = LDD_MT_ZFS;
322
323         param->ddp_mntopts        = MNTOPT_USERXATTR | MNTOPT_ACL;
324         param->ddp_max_ea_size    = DXATTR_MAX_ENTRY_SIZE;
325
326         /* for maxbytes, report same value as ZPL */
327         param->ddp_maxbytes      = MAX_LFS_FILESIZE;
328
329         /* Default reserved fraction of the available space that should be kept
330          * for error margin. Unfortunately, there are many factors that can
331          * impact the overhead with zfs, so let's be very cautious for now and
332          * reserve 20% of the available space which is not given out as grant.
333          * This tunable can be changed on a live system via procfs if needed. */
334         param->ddp_grant_reserved = 20;
335
336         /* inodes are dynamically allocated, so we report the per-inode space
337          * consumption to upper layers. This static value is not really accurate
338          * and we should use the same logic as in udmu_objset_statfs() to
339          * estimate the real size consumed by an object */
340         param->ddp_inodespace = OSD_DNODE_EST_COUNT;
341         /* per-fragment overhead to be used by the client code */
342         param->ddp_grant_frag = udmu_blk_insert_cost();
343 }
344
345 /*
346  * Concurrency: shouldn't matter.
347  */
348 static int osd_sync(const struct lu_env *env, struct dt_device *d)
349 {
350         struct osd_device  *osd = osd_dt_dev(d);
351         CDEBUG(D_HA, "syncing OSD %s\n", LUSTRE_OSD_ZFS_NAME);
352         txg_wait_synced(dmu_objset_pool(osd->od_objset.os), 0ULL);
353         return 0;
354 }
355
356 static int osd_commit_async(const struct lu_env *env, struct dt_device *dev)
357 {
358         struct osd_device *osd = osd_dt_dev(dev);
359         tx_state_t        *tx = &dmu_objset_pool(osd->od_objset.os)->dp_tx;
360         uint64_t           txg;
361
362         txg = tx->tx_open_txg + 1;
363         if (tx->tx_quiesce_txg_waiting < txg) {
364                 tx->tx_quiesce_txg_waiting = txg;
365                 cv_broadcast(&tx->tx_quiesce_more_cv);
366         }
367         mutex_exit(&tx->tx_sync_lock);
368
369         return 0;
370 }
371
372 /*
373  * Concurrency: shouldn't matter.
374  */
375 static int osd_ro(const struct lu_env *env, struct dt_device *d)
376 {
377         struct osd_device  *osd = osd_dt_dev(d);
378         ENTRY;
379
380         CERROR("%s: *** setting device %s read-only ***\n",
381                osd->od_svname, LUSTRE_OSD_ZFS_NAME);
382         osd->od_rdonly = 1;
383         spa_freeze(dmu_objset_spa(osd->od_objset.os));
384
385         RETURN(0);
386 }
387
388 /*
389  * Concurrency: serialization provided by callers.
390  */
391 static int osd_init_capa_ctxt(const struct lu_env *env, struct dt_device *d,
392                               int mode, unsigned long timeout, __u32 alg,
393                               struct lustre_capa_key *keys)
394 {
395         struct osd_device *dev = osd_dt_dev(d);
396         ENTRY;
397
398         dev->od_fl_capa = mode;
399         dev->od_capa_timeout = timeout;
400         dev->od_capa_alg = alg;
401         dev->od_capa_keys = keys;
402
403         RETURN(0);
404 }
405
406 static char *osd_label_get(const struct lu_env *env, const struct dt_device *d)
407 {
408         struct osd_device *dev = osd_dt_dev(d);
409         int rc;
410         ENTRY;
411
412         rc = -udmu_userprop_get_str(&dev->od_objset, DMU_OSD_SVNAME,
413                                     dev->od_svname, sizeof(dev->od_svname));
414         if (rc != 0) {
415                 if (rc == -EOVERFLOW)
416                         CWARN("%s: buffer too small\n", dev->od_svname);
417                 RETURN(NULL);
418         }
419
420         RETURN(&dev->od_svname[0]);
421 }
422
423 static struct dt_device_operations osd_dt_ops = {
424         .dt_root_get            = osd_root_get,
425         .dt_statfs              = osd_statfs,
426         .dt_trans_create        = osd_trans_create,
427         .dt_trans_start         = osd_trans_start,
428         .dt_trans_stop          = osd_trans_stop,
429         .dt_trans_cb_add        = osd_trans_cb_add,
430         .dt_conf_get            = osd_conf_get,
431         .dt_sync                = osd_sync,
432         .dt_commit_async        = osd_commit_async,
433         .dt_ro                  = osd_ro,
434         .dt_init_capa_ctxt      = osd_init_capa_ctxt,
435 };
436
437 /*
438  * DMU OSD device type methods
439  */
440 static int osd_type_init(struct lu_device_type *t)
441 {
442         LU_CONTEXT_KEY_INIT(&osd_key);
443         return lu_context_key_register(&osd_key);
444 }
445
446 static void osd_type_fini(struct lu_device_type *t)
447 {
448         lu_context_key_degister(&osd_key);
449 }
450
451 static void *osd_key_init(const struct lu_context *ctx,
452                           struct lu_context_key *key)
453 {
454         struct osd_thread_info *info;
455
456         OBD_ALLOC_PTR(info);
457         if (info != NULL)
458                 info->oti_env = container_of(ctx, struct lu_env, le_ctx);
459         else
460                 info = ERR_PTR(-ENOMEM);
461         return info;
462 }
463
464 static void osd_key_fini(const struct lu_context *ctx,
465                          struct lu_context_key *key, void *data)
466 {
467         struct osd_thread_info *info = data;
468
469         OBD_FREE_PTR(info);
470 }
471
472 static void osd_key_exit(const struct lu_context *ctx,
473                          struct lu_context_key *key, void *data)
474 {
475         struct osd_thread_info *info = data;
476
477         memset(info, 0, sizeof(*info));
478 }
479
480 struct lu_context_key osd_key = {
481         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
482         .lct_init = osd_key_init,
483         .lct_fini = osd_key_fini,
484         .lct_exit = osd_key_exit
485 };
486
487 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
488 {
489         RETURN(0);
490 }
491
492 static int osd_mount(const struct lu_env *env,
493                      struct osd_device *o, struct lustre_cfg *cfg)
494 {
495         char                            *dev  = lustre_cfg_string(cfg, 0);
496         struct lustre_mount_info        *lmi;
497         struct lustre_sb_info           *lsi;
498         dmu_buf_t                       *rootdb;
499         char                            *label;
500         int                              rc;
501         ENTRY;
502
503         if (o->od_objset.os != NULL)
504                 RETURN(0);
505
506         lmi = server_get_mount(dev);
507         if (lmi == NULL) {
508                 CERROR("Unknown mount point: '%s'\n", dev);
509                 RETURN(-ENODEV);
510         }
511
512         lsi = s2lsi(lmi->lmi_sb);
513         dev = lsi->lsi_lmd->lmd_dev;
514
515         if (strlen(dev) >= sizeof(o->od_mntdev))
516                 RETURN(-E2BIG);
517
518         strcpy(o->od_mntdev, dev);
519
520         rc = -udmu_objset_open(o->od_mntdev, &o->od_objset);
521         if (rc) {
522                 CERROR("can't open objset %s: %d\n", o->od_mntdev, rc);
523                 RETURN(rc);
524         }
525
526         rc = __osd_obj2dbuf(env, o->od_objset.os, o->od_objset.root,
527                                 &rootdb, root_tag);
528         if (rc) {
529                 CERROR("udmu_obj2dbuf() failed with error %d\n", rc);
530                 udmu_objset_close(&o->od_objset);
531                 RETURN(rc);
532         }
533
534         o->od_root = rootdb->db_object;
535         sa_buf_rele(rootdb, root_tag);
536
537         /* 1. initialize oi before any file create or file open */
538         rc = osd_oi_init(env, o);
539         if (rc)
540                 GOTO(err, rc);
541
542         label = osd_label_get(env, &o->od_dt_dev);
543         if (label == NULL)
544                 GOTO(err, rc = -ENODEV);
545
546         /* Use our own ZAP for inode accounting by default, this can be changed
547          * via procfs to estimate the inode usage from the block usage */
548         o->od_quota_iused_est = 0;
549
550         rc = osd_procfs_init(o, label);
551         if (rc)
552                 GOTO(err, rc);
553
554         o->arc_prune_cb = arc_add_prune_callback(arc_prune_func, o);
555
556 err:
557         RETURN(rc);
558 }
559
560 static void osd_umount(const struct lu_env *env, struct osd_device *o)
561 {
562         ENTRY;
563
564         if (cfs_atomic_read(&o->od_zerocopy_alloc))
565                 CERROR("%s: lost %d allocated page(s)\n", o->od_svname,
566                        cfs_atomic_read(&o->od_zerocopy_alloc));
567         if (cfs_atomic_read(&o->od_zerocopy_loan))
568                 CERROR("%s: lost %d loaned abuf(s)\n", o->od_svname,
569                        cfs_atomic_read(&o->od_zerocopy_loan));
570         if (cfs_atomic_read(&o->od_zerocopy_pin))
571                 CERROR("%s: lost %d pinned dbuf(s)\n", o->od_svname,
572                        cfs_atomic_read(&o->od_zerocopy_pin));
573
574         if (o->od_objset.os != NULL)
575                 udmu_objset_close(&o->od_objset);
576
577         EXIT;
578 }
579
580 static int osd_device_init0(const struct lu_env *env,
581                             struct osd_device *o,
582                             struct lustre_cfg *cfg)
583 {
584         struct lu_device        *l = osd2lu_dev(o);
585         int                      rc;
586
587         /* if the module was re-loaded, env can loose its keys */
588         rc = lu_env_refill((struct lu_env *) env);
589         if (rc)
590                 GOTO(out, rc);
591
592         l->ld_ops = &osd_lu_ops;
593         o->od_dt_dev.dd_ops = &osd_dt_ops;
594
595         o->od_capa_hash = init_capa_hash();
596         if (o->od_capa_hash == NULL)
597                 GOTO(out, rc = -ENOMEM);
598
599 out:
600         RETURN(rc);
601 }
602
603 static struct lu_device *osd_device_alloc(const struct lu_env *env,
604                                           struct lu_device_type *t,
605                                           struct lustre_cfg *cfg)
606 {
607         struct osd_device       *o;
608         int                      rc;
609
610         OBD_ALLOC_PTR(o);
611         if (o == NULL)
612                 return ERR_PTR(-ENOMEM);
613
614         rc = dt_device_init(&o->od_dt_dev, t);
615         if (rc == 0) {
616                 rc = osd_device_init0(env, o, cfg);
617                 if (rc)
618                         dt_device_fini(&o->od_dt_dev);
619         }
620
621         if (unlikely(rc != 0))
622                 OBD_FREE_PTR(o);
623
624         return rc == 0 ? osd2lu_dev(o) : ERR_PTR(rc);
625 }
626
627 static struct lu_device *osd_device_free(const struct lu_env *env,
628                                          struct lu_device *d)
629 {
630         struct osd_device *o = osd_dev(d);
631         ENTRY;
632
633         cleanup_capa_hash(o->od_capa_hash);
634         /* XXX: make osd top device in order to release reference */
635         /*d->ld_site->ls_top_dev = d;
636         lu_site_purge(env, d->ld_site, -1);
637         lu_site_fini(&o->od_site);*/
638         dt_device_fini(&o->od_dt_dev);
639         OBD_FREE_PTR(o);
640
641         RETURN (NULL);
642 }
643
644 static struct lu_device *osd_device_fini(const struct lu_env *env,
645                                          struct lu_device *d)
646 {
647         struct osd_device        *o = osd_dev(d);
648         struct lustre_mount_info *lmi;
649         int rc;
650         ENTRY;
651
652
653         osd_oi_fini(env, o);
654
655         if (o->od_objset.os) {
656                 arc_remove_prune_callback(o->arc_prune_cb);
657                 o->arc_prune_cb = NULL;
658                 osd_sync(env, lu2dt_dev(d));
659                 txg_wait_callbacks(spa_get_dsl(dmu_objset_spa(o->od_objset.os)));
660         }
661
662         rc = osd_procfs_fini(o);
663         if (rc) {
664                 CERROR("proc fini error %d\n", rc);
665                 RETURN(ERR_PTR(rc));
666         }
667
668         if (o->od_objset.os)
669                 osd_umount(env, o);
670
671         lmi = server_get_mount_2(o->od_svname);
672         LASSERT(lmi);
673         server_put_mount(lmi->lmi_name, lmi->lmi_mnt);
674
675         RETURN(NULL);
676 }
677
678 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
679                            const char *name, struct lu_device *next)
680 {
681         return 0;
682 }
683
684 /*
685  * To be removed, setup is performed by osd_device_{init,alloc} and
686  * cleanup is performed by osd_device_{fini,free).
687  */
688 static int osd_process_config(const struct lu_env *env,
689                               struct lu_device *d, struct lustre_cfg *cfg)
690 {
691         struct osd_device       *o = osd_dev(d);
692         int                      err;
693         ENTRY;
694
695         switch(cfg->lcfg_command) {
696         case LCFG_SETUP:
697                 err = osd_mount(env, o, cfg);
698                 break;
699         case LCFG_CLEANUP:
700                 err = osd_shutdown(env, o);
701                 break;
702         default:
703                 err = -ENOTTY;
704         }
705
706         RETURN(err);
707 }
708
709 static int osd_recovery_complete(const struct lu_env *env, struct lu_device *d)
710 {
711         ENTRY;
712         RETURN(0);
713 }
714
715 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
716                        struct lu_device *dev)
717 {
718         return 0;
719 }
720
721 struct lu_device_operations osd_lu_ops = {
722         .ldo_object_alloc       = osd_object_alloc,
723         .ldo_process_config     = osd_process_config,
724         .ldo_recovery_complete  = osd_recovery_complete,
725         .ldo_prepare            = osd_prepare,
726 };
727
728 static void osd_type_start(struct lu_device_type *t)
729 {
730 }
731
732 static void osd_type_stop(struct lu_device_type *t)
733 {
734 }
735
736 static struct lu_device_type_operations osd_device_type_ops = {
737         .ldto_init              = osd_type_init,
738         .ldto_fini              = osd_type_fini,
739
740         .ldto_start             = osd_type_start,
741         .ldto_stop              = osd_type_stop,
742
743         .ldto_device_alloc      = osd_device_alloc,
744         .ldto_device_free       = osd_device_free,
745
746         .ldto_device_init       = osd_device_init,
747         .ldto_device_fini       = osd_device_fini
748 };
749
750 static struct lu_device_type osd_device_type = {
751         .ldt_tags     = LU_DEVICE_DT,
752         .ldt_name     = LUSTRE_OSD_ZFS_NAME,
753         .ldt_ops      = &osd_device_type_ops,
754         .ldt_ctx_tags = LCT_LOCAL
755 };
756
757
758 static struct obd_ops osd_obd_device_ops = {
759         .o_owner       = THIS_MODULE,
760 };
761
762 int __init osd_init(void)
763 {
764         int rc;
765
766         rc = osd_options_init();
767         if (rc)
768                 return rc;
769
770         rc = lu_kmem_init(osd_caches);
771         if (rc)
772                 return rc;
773
774         rc = class_register_type(&osd_obd_device_ops, NULL,
775                                  lprocfs_osd_module_vars,
776                                  LUSTRE_OSD_ZFS_NAME, &osd_device_type);
777         if (rc)
778                 lu_kmem_fini(osd_caches);
779         return rc;
780 }
781
782 void __exit osd_exit(void)
783 {
784         class_unregister_type(LUSTRE_OSD_ZFS_NAME);
785         lu_kmem_fini(osd_caches);
786 }
787
788 extern unsigned int osd_oi_count;
789 CFS_MODULE_PARM(osd_oi_count, "i", int, 0444,
790                 "Number of Object Index containers to be created, "
791                 "it's only valid for new filesystem.");
792
793 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
794 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_ZFS_NAME")");
795 MODULE_LICENSE("GPL");
796
797 cfs_module(osd, LUSTRE_VERSION_STRING, osd_init, osd_exit);