Whamcloud - gitweb
fedf1e99851e6806832f6d35530783cdfca91694
[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         param->ddp_mnt = NULL;
345 }
346
347 /*
348  * Concurrency: shouldn't matter.
349  */
350 static int osd_sync(const struct lu_env *env, struct dt_device *d)
351 {
352         struct osd_device  *osd = osd_dt_dev(d);
353         CDEBUG(D_HA, "syncing OSD %s\n", LUSTRE_OSD_ZFS_NAME);
354         txg_wait_synced(dmu_objset_pool(osd->od_objset.os), 0ULL);
355         return 0;
356 }
357
358 static int osd_commit_async(const struct lu_env *env, struct dt_device *dev)
359 {
360         struct osd_device *osd = osd_dt_dev(dev);
361         tx_state_t        *tx = &dmu_objset_pool(osd->od_objset.os)->dp_tx;
362         uint64_t           txg;
363
364         txg = tx->tx_open_txg + 1;
365         if (tx->tx_quiesce_txg_waiting < txg) {
366                 tx->tx_quiesce_txg_waiting = txg;
367                 cv_broadcast(&tx->tx_quiesce_more_cv);
368         }
369         mutex_exit(&tx->tx_sync_lock);
370
371         return 0;
372 }
373
374 /*
375  * Concurrency: shouldn't matter.
376  */
377 static int osd_ro(const struct lu_env *env, struct dt_device *d)
378 {
379         struct osd_device  *osd = osd_dt_dev(d);
380         ENTRY;
381
382         CERROR("%s: *** setting device %s read-only ***\n",
383                osd->od_svname, LUSTRE_OSD_ZFS_NAME);
384         osd->od_rdonly = 1;
385         spa_freeze(dmu_objset_spa(osd->od_objset.os));
386
387         RETURN(0);
388 }
389
390 /*
391  * Concurrency: serialization provided by callers.
392  */
393 static int osd_init_capa_ctxt(const struct lu_env *env, struct dt_device *d,
394                               int mode, unsigned long timeout, __u32 alg,
395                               struct lustre_capa_key *keys)
396 {
397         struct osd_device *dev = osd_dt_dev(d);
398         ENTRY;
399
400         dev->od_fl_capa = mode;
401         dev->od_capa_timeout = timeout;
402         dev->od_capa_alg = alg;
403         dev->od_capa_keys = keys;
404
405         RETURN(0);
406 }
407
408 static struct dt_device_operations osd_dt_ops = {
409         .dt_root_get            = osd_root_get,
410         .dt_statfs              = osd_statfs,
411         .dt_trans_create        = osd_trans_create,
412         .dt_trans_start         = osd_trans_start,
413         .dt_trans_stop          = osd_trans_stop,
414         .dt_trans_cb_add        = osd_trans_cb_add,
415         .dt_conf_get            = osd_conf_get,
416         .dt_sync                = osd_sync,
417         .dt_commit_async        = osd_commit_async,
418         .dt_ro                  = osd_ro,
419         .dt_init_capa_ctxt      = osd_init_capa_ctxt,
420 };
421
422 /*
423  * DMU OSD device type methods
424  */
425 static int osd_type_init(struct lu_device_type *t)
426 {
427         LU_CONTEXT_KEY_INIT(&osd_key);
428         return lu_context_key_register(&osd_key);
429 }
430
431 static void osd_type_fini(struct lu_device_type *t)
432 {
433         lu_context_key_degister(&osd_key);
434 }
435
436 static void *osd_key_init(const struct lu_context *ctx,
437                           struct lu_context_key *key)
438 {
439         struct osd_thread_info *info;
440
441         OBD_ALLOC_PTR(info);
442         if (info != NULL)
443                 info->oti_env = container_of(ctx, struct lu_env, le_ctx);
444         else
445                 info = ERR_PTR(-ENOMEM);
446         return info;
447 }
448
449 static void osd_key_fini(const struct lu_context *ctx,
450                          struct lu_context_key *key, void *data)
451 {
452         struct osd_thread_info *info = data;
453
454         OBD_FREE_PTR(info);
455 }
456
457 static void osd_key_exit(const struct lu_context *ctx,
458                          struct lu_context_key *key, void *data)
459 {
460         struct osd_thread_info *info = data;
461
462         memset(info, 0, sizeof(*info));
463 }
464
465 struct lu_context_key osd_key = {
466         .lct_tags = LCT_DT_THREAD | LCT_MD_THREAD | LCT_MG_THREAD | LCT_LOCAL,
467         .lct_init = osd_key_init,
468         .lct_fini = osd_key_fini,
469         .lct_exit = osd_key_exit
470 };
471
472 static int osd_shutdown(const struct lu_env *env, struct osd_device *o)
473 {
474         ENTRY;
475
476         /* shutdown quota slave instance associated with the device */
477         if (o->od_quota_slave != NULL) {
478                 qsd_fini(env, o->od_quota_slave);
479                 o->od_quota_slave = NULL;
480         }
481
482         RETURN(0);
483 }
484
485 static int osd_mount(const struct lu_env *env,
486                      struct osd_device *o, struct lustre_cfg *cfg)
487 {
488         char      *dev  = lustre_cfg_string(cfg, 1);
489         dmu_buf_t *rootdb;
490         int        rc;
491         ENTRY;
492
493         if (o->od_objset.os != NULL)
494                 RETURN(0);
495
496         if (strlen(dev) >= sizeof(o->od_mntdev))
497                 RETURN(-E2BIG);
498
499         strcpy(o->od_mntdev, dev);
500         strncpy(o->od_svname, lustre_cfg_string(cfg, 4),
501                 sizeof(o->od_svname) - 1);
502
503         rc = -udmu_objset_open(o->od_mntdev, &o->od_objset);
504         if (rc) {
505                 CERROR("can't open objset %s: %d\n", o->od_mntdev, rc);
506                 RETURN(rc);
507         }
508
509         rc = __osd_obj2dbuf(env, o->od_objset.os, o->od_objset.root,
510                                 &rootdb, root_tag);
511         if (rc) {
512                 CERROR("udmu_obj2dbuf() failed with error %d\n", rc);
513                 udmu_objset_close(&o->od_objset);
514                 RETURN(rc);
515         }
516
517         o->od_root = rootdb->db_object;
518         sa_buf_rele(rootdb, root_tag);
519
520         /* 1. initialize oi before any file create or file open */
521         rc = osd_oi_init(env, o);
522         if (rc)
523                 GOTO(err, rc);
524
525         /* Use our own ZAP for inode accounting by default, this can be changed
526          * via procfs to estimate the inode usage from the block usage */
527         o->od_quota_iused_est = 0;
528
529         rc = osd_procfs_init(o, o->od_svname);
530         if (rc)
531                 GOTO(err, rc);
532
533         o->arc_prune_cb = arc_add_prune_callback(arc_prune_func, o);
534
535 err:
536         RETURN(rc);
537 }
538
539 static void osd_umount(const struct lu_env *env, struct osd_device *o)
540 {
541         ENTRY;
542
543         if (cfs_atomic_read(&o->od_zerocopy_alloc))
544                 CERROR("%s: lost %d allocated page(s)\n", o->od_svname,
545                        cfs_atomic_read(&o->od_zerocopy_alloc));
546         if (cfs_atomic_read(&o->od_zerocopy_loan))
547                 CERROR("%s: lost %d loaned abuf(s)\n", o->od_svname,
548                        cfs_atomic_read(&o->od_zerocopy_loan));
549         if (cfs_atomic_read(&o->od_zerocopy_pin))
550                 CERROR("%s: lost %d pinned dbuf(s)\n", o->od_svname,
551                        cfs_atomic_read(&o->od_zerocopy_pin));
552
553         if (o->od_objset.os != NULL)
554                 udmu_objset_close(&o->od_objset);
555
556         EXIT;
557 }
558
559 static int osd_device_init0(const struct lu_env *env,
560                             struct osd_device *o,
561                             struct lustre_cfg *cfg)
562 {
563         struct lu_device        *l = osd2lu_dev(o);
564         int                      rc;
565
566         /* if the module was re-loaded, env can loose its keys */
567         rc = lu_env_refill((struct lu_env *) env);
568         if (rc)
569                 GOTO(out, rc);
570
571         l->ld_ops = &osd_lu_ops;
572         o->od_dt_dev.dd_ops = &osd_dt_ops;
573
574         o->od_capa_hash = init_capa_hash();
575         if (o->od_capa_hash == NULL)
576                 GOTO(out, rc = -ENOMEM);
577
578 out:
579         RETURN(rc);
580 }
581
582 static struct lu_device *osd_device_fini(const struct lu_env *env,
583                                          struct lu_device *dev);
584
585 static struct lu_device *osd_device_alloc(const struct lu_env *env,
586                                           struct lu_device_type *type,
587                                           struct lustre_cfg *cfg)
588 {
589         struct osd_device *dev;
590         int                rc;
591
592         OBD_ALLOC_PTR(dev);
593         if (dev == NULL)
594                 return ERR_PTR(-ENOMEM);
595
596         rc = dt_device_init(&dev->od_dt_dev, type);
597         if (rc == 0) {
598                 rc = osd_device_init0(env, dev, cfg);
599                 if (rc == 0) {
600                         rc = osd_mount(env, dev, cfg);
601                         if (rc)
602                                 osd_device_fini(env, osd2lu_dev(dev));
603                 }
604                 if (rc)
605                         dt_device_fini(&dev->od_dt_dev);
606         }
607
608         if (unlikely(rc != 0))
609                 OBD_FREE_PTR(dev);
610
611         return rc == 0 ? osd2lu_dev(dev) : ERR_PTR(rc);
612 }
613
614 static struct lu_device *osd_device_free(const struct lu_env *env,
615                                          struct lu_device *d)
616 {
617         struct osd_device *o = osd_dev(d);
618         ENTRY;
619
620         cleanup_capa_hash(o->od_capa_hash);
621         /* XXX: make osd top device in order to release reference */
622         /*d->ld_site->ls_top_dev = d;
623         lu_site_purge(env, d->ld_site, -1);
624         lu_site_fini(&o->od_site);*/
625         dt_device_fini(&o->od_dt_dev);
626         OBD_FREE_PTR(o);
627
628         RETURN (NULL);
629 }
630
631 static struct lu_device *osd_device_fini(const struct lu_env *env,
632                                          struct lu_device *d)
633 {
634         struct osd_device *o = osd_dev(d);
635         int                rc;
636         ENTRY;
637
638
639         osd_oi_fini(env, o);
640
641         if (o->od_objset.os) {
642                 arc_remove_prune_callback(o->arc_prune_cb);
643                 o->arc_prune_cb = NULL;
644                 osd_sync(env, lu2dt_dev(d));
645                 txg_wait_callbacks(spa_get_dsl(dmu_objset_spa(o->od_objset.os)));
646         }
647
648         rc = osd_procfs_fini(o);
649         if (rc) {
650                 CERROR("proc fini error %d\n", rc);
651                 RETURN(ERR_PTR(rc));
652         }
653
654         if (o->od_objset.os)
655                 osd_umount(env, o);
656
657         RETURN(NULL);
658 }
659
660 static int osd_device_init(const struct lu_env *env, struct lu_device *d,
661                            const char *name, struct lu_device *next)
662 {
663         return 0;
664 }
665
666 /*
667  * To be removed, setup is performed by osd_device_{init,alloc} and
668  * cleanup is performed by osd_device_{fini,free).
669  */
670 static int osd_process_config(const struct lu_env *env,
671                               struct lu_device *d, struct lustre_cfg *cfg)
672 {
673         struct osd_device       *o = osd_dev(d);
674         int                      err;
675         ENTRY;
676
677         switch(cfg->lcfg_command) {
678         case LCFG_SETUP:
679                 err = osd_mount(env, o, cfg);
680                 break;
681         case LCFG_CLEANUP:
682                 err = osd_shutdown(env, o);
683                 break;
684         default:
685                 err = -ENOTTY;
686         }
687
688         RETURN(err);
689 }
690
691 static int osd_recovery_complete(const struct lu_env *env, struct lu_device *d)
692 {
693         ENTRY;
694         RETURN(0);
695 }
696
697 /*
698  * we use exports to track all osd users
699  */
700 static int osd_obd_connect(const struct lu_env *env, struct obd_export **exp,
701                            struct obd_device *obd, struct obd_uuid *cluuid,
702                            struct obd_connect_data *data, void *localdata)
703 {
704         struct osd_device    *osd = osd_dev(obd->obd_lu_dev);
705         struct lustre_handle  conn;
706         int                   rc;
707         ENTRY;
708
709         CDEBUG(D_CONFIG, "connect #%d\n", osd->od_connects);
710
711         rc = class_connect(&conn, obd, cluuid);
712         if (rc)
713                 RETURN(rc);
714
715         *exp = class_conn2export(&conn);
716
717         cfs_spin_lock(&osd->od_objset.lock);
718         osd->od_connects++;
719         cfs_spin_unlock(&osd->od_objset.lock);
720
721         RETURN(0);
722 }
723
724 /*
725  * once last export (we don't count self-export) disappeared
726  * osd can be released
727  */
728 static int osd_obd_disconnect(struct obd_export *exp)
729 {
730         struct obd_device *obd = exp->exp_obd;
731         struct osd_device *osd = osd_dev(obd->obd_lu_dev);
732         int                rc, release = 0;
733         ENTRY;
734
735         /* Only disconnect the underlying layers on the final disconnect. */
736         cfs_spin_lock(&osd->od_objset.lock);
737         osd->od_connects--;
738         if (osd->od_connects == 0)
739                 release = 1;
740         cfs_spin_unlock(&osd->od_objset.lock);
741
742         rc = class_disconnect(exp); /* bz 9811 */
743
744         if (rc == 0 && release)
745                 class_manual_cleanup(obd);
746         RETURN(rc);
747 }
748
749 static int osd_prepare(const struct lu_env *env, struct lu_device *pdev,
750                        struct lu_device *dev)
751 {
752         struct osd_device       *osd = osd_dev(dev);
753         int                      rc = 0;
754         ENTRY;
755
756         /* initialize quota slave instance */
757         osd->od_quota_slave = qsd_init(env, osd->od_svname, &osd->od_dt_dev,
758                                        osd->od_proc_entry);
759         if (IS_ERR(osd->od_quota_slave)) {
760                 rc = PTR_ERR(osd->od_quota_slave);
761                 osd->od_quota_slave = NULL;
762         }
763
764         RETURN(rc);
765 }
766
767 struct lu_device_operations osd_lu_ops = {
768         .ldo_object_alloc       = osd_object_alloc,
769         .ldo_process_config     = osd_process_config,
770         .ldo_recovery_complete  = osd_recovery_complete,
771         .ldo_prepare            = osd_prepare,
772 };
773
774 static void osd_type_start(struct lu_device_type *t)
775 {
776 }
777
778 static void osd_type_stop(struct lu_device_type *t)
779 {
780 }
781
782 static struct lu_device_type_operations osd_device_type_ops = {
783         .ldto_init              = osd_type_init,
784         .ldto_fini              = osd_type_fini,
785
786         .ldto_start             = osd_type_start,
787         .ldto_stop              = osd_type_stop,
788
789         .ldto_device_alloc      = osd_device_alloc,
790         .ldto_device_free       = osd_device_free,
791
792         .ldto_device_init       = osd_device_init,
793         .ldto_device_fini       = osd_device_fini
794 };
795
796 static struct lu_device_type osd_device_type = {
797         .ldt_tags     = LU_DEVICE_DT,
798         .ldt_name     = LUSTRE_OSD_ZFS_NAME,
799         .ldt_ops      = &osd_device_type_ops,
800         .ldt_ctx_tags = LCT_LOCAL
801 };
802
803
804 static struct obd_ops osd_obd_device_ops = {
805         .o_owner       = THIS_MODULE,
806         .o_connect      = osd_obd_connect,
807         .o_disconnect   = osd_obd_disconnect
808 };
809
810 int __init osd_init(void)
811 {
812         int rc;
813
814         rc = osd_options_init();
815         if (rc)
816                 return rc;
817
818         rc = lu_kmem_init(osd_caches);
819         if (rc)
820                 return rc;
821
822         rc = class_register_type(&osd_obd_device_ops, NULL,
823                                  lprocfs_osd_module_vars,
824                                  LUSTRE_OSD_ZFS_NAME, &osd_device_type);
825         if (rc)
826                 lu_kmem_fini(osd_caches);
827         return rc;
828 }
829
830 void __exit osd_exit(void)
831 {
832         class_unregister_type(LUSTRE_OSD_ZFS_NAME);
833         lu_kmem_fini(osd_caches);
834 }
835
836 extern unsigned int osd_oi_count;
837 CFS_MODULE_PARM(osd_oi_count, "i", int, 0444,
838                 "Number of Object Index containers to be created, "
839                 "it's only valid for new filesystem.");
840
841 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
842 MODULE_DESCRIPTION("Lustre Object Storage Device ("LUSTRE_OSD_ZFS_NAME")");
843 MODULE_LICENSE("GPL");
844
845 cfs_module(osd, LUSTRE_VERSION_STRING, osd_init, osd_exit);