Whamcloud - gitweb
LU-1303 osp: land precreate code
[fs/lustre-release.git] / lustre / osp / osp_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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel, 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/osp/osp_dev.c
37  *
38  * Lustre OST Proxy Device
39  *
40  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
41  * Author: Mikhail Pershin <mike.pershin@intel.com>
42  */
43
44 #ifndef EXPORT_SYMTAB
45 # define EXPORT_SYMTAB
46 #endif
47 #define DEBUG_SUBSYSTEM S_MDS
48
49 #include <obd_class.h>
50 #include <lustre_param.h>
51
52 #include "osp_internal.h"
53
54 /* Slab for OSP object allocation */
55 cfs_mem_cache_t *osp_object_kmem;
56
57 static struct lu_kmem_descr osp_caches[] = {
58         {
59                 .ckd_cache = &osp_object_kmem,
60                 .ckd_name  = "osp_obj",
61                 .ckd_size  = sizeof(struct osp_object)
62         },
63         {
64                 .ckd_cache = NULL
65         }
66 };
67
68 struct lu_object *osp_object_alloc(const struct lu_env *env,
69                                    const struct lu_object_header *hdr,
70                                    struct lu_device *d)
71 {
72         struct lu_object_header *h;
73         struct osp_object       *o;
74         struct lu_object        *l;
75
76         LASSERT(hdr == NULL);
77
78         OBD_SLAB_ALLOC_PTR_GFP(o, osp_object_kmem, CFS_ALLOC_IO);
79         if (o != NULL) {
80                 l = &o->opo_obj.do_lu;
81                 h = &o->opo_header;
82
83                 lu_object_header_init(h);
84                 dt_object_init(&o->opo_obj, h, d);
85                 lu_object_add_top(h, l);
86
87                 l->lo_ops = &osp_lu_obj_ops;
88
89                 return l;
90         } else {
91                 return NULL;
92         }
93 }
94
95 /* Update opd_last_used_id along with checking for gap in objid sequence */
96 void osp_update_last_id(struct osp_device *d, obd_id objid)
97 {
98         /*
99          * we might have lost precreated objects due to VBR and precreate
100          * orphans, the gap in objid can be calculated properly only here
101          */
102         if (objid > le64_to_cpu(d->opd_last_used_id)) {
103                 if (objid - le64_to_cpu(d->opd_last_used_id) > 1) {
104                         d->opd_gap_start = le64_to_cpu(d->opd_last_used_id) + 1;
105                         d->opd_gap_count = objid - d->opd_gap_start;
106                         CDEBUG(D_HA, "Gap in objids: %d, start = %llu\n",
107                                d->opd_gap_count, d->opd_gap_start);
108                 }
109                 d->opd_last_used_id = cpu_to_le64(objid);
110         }
111 }
112
113 static int osp_last_used_init(const struct lu_env *env, struct osp_device *m)
114 {
115         struct osp_thread_info  *osi = osp_env_info(env);
116         struct dt_object_format  dof = { 0 };
117         struct dt_object        *o;
118         int                      rc;
119
120         ENTRY;
121
122         osi->osi_attr.la_valid = LA_MODE;
123         osi->osi_attr.la_mode = S_IFREG | 0644;
124         lu_local_obj_fid(&osi->osi_fid, MDD_LOV_OBJ_OID);
125         dof.dof_type = DFT_REGULAR;
126         o = dt_find_or_create(env, m->opd_storage, &osi->osi_fid, &dof,
127                               &osi->osi_attr);
128         if (IS_ERR(o))
129                 RETURN(PTR_ERR(o));
130
131         rc = dt_attr_get(env, o, &osi->osi_attr, NULL);
132         if (rc)
133                 GOTO(out, rc);
134
135         /* object will be released in device cleanup path */
136         m->opd_last_used_file = o;
137
138         if (osi->osi_attr.la_size >= sizeof(osi->osi_id) *
139                                      (m->opd_index + 1)) {
140                 osp_objid_buf_prep(osi, m, m->opd_index);
141                 rc = dt_record_read(env, o, &osi->osi_lb, &osi->osi_off);
142                 if (rc != 0)
143                         GOTO(out, rc);
144         } else {
145                 /* reset value to 0, just to make sure and change file's size */
146                 struct thandle *th;
147
148                 m->opd_last_used_id = 0;
149                 osp_objid_buf_prep(osi, m, m->opd_index);
150
151                 th = dt_trans_create(env, m->opd_storage);
152                 if (IS_ERR(th))
153                         GOTO(out, rc = PTR_ERR(th));
154
155                 rc = dt_declare_record_write(env, m->opd_last_used_file,
156                                              osi->osi_lb.lb_len, osi->osi_off,
157                                              th);
158                 if (rc) {
159                         dt_trans_stop(env, m->opd_storage, th);
160                         GOTO(out, rc);
161                 }
162
163                 rc = dt_trans_start_local(env, m->opd_storage, th);
164                 if (rc) {
165                         dt_trans_stop(env, m->opd_storage, th);
166                         GOTO(out, rc);
167                 }
168
169                 rc = dt_record_write(env, m->opd_last_used_file, &osi->osi_lb,
170                                      &osi->osi_off, th);
171                 dt_trans_stop(env, m->opd_storage, th);
172                 if (rc)
173                         GOTO(out, rc);
174         }
175         RETURN(0);
176 out:
177         CERROR("%s: can't initialize lov_objid: %d\n",
178                m->opd_obd->obd_name, rc);
179         lu_object_put(env, &o->do_lu);
180         m->opd_last_used_file = NULL;
181         return rc;
182 }
183
184 static void osp_last_used_fini(const struct lu_env *env, struct osp_device *d)
185 {
186         lu_object_put(env, &d->opd_last_used_file->do_lu);
187         d->opd_last_used_file = NULL;
188 }
189
190 static int osp_shutdown(const struct lu_env *env, struct osp_device *d)
191 {
192         struct obd_import       *imp;
193         int                      rc = 0;
194         ENTRY;
195
196         /* release last_used file */
197         osp_last_used_fini(env, d);
198
199         imp = d->opd_obd->u.cli.cl_import;
200
201         /* Mark import deactivated now, so we don't try to reconnect if any
202          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
203          * fully deactivate the import, or that would drop all requests. */
204         cfs_spin_lock(&imp->imp_lock);
205         imp->imp_deactive = 1;
206         cfs_spin_unlock(&imp->imp_lock);
207
208         ptlrpc_deactivate_import(imp);
209
210         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
211          * delete it regardless.  (It's safe to delete an import that was
212          * never added.) */
213         (void)ptlrpc_pinger_del_import(imp);
214
215         rc = ptlrpc_disconnect_import(imp, 0);
216         if (rc)
217                 CERROR("%s: can't disconnect: rc = %d\n",
218                        d->opd_obd->obd_name, rc);
219
220         ptlrpc_invalidate_import(imp);
221
222         /* stop precreate thread */
223         osp_precreate_fini(d);
224
225         RETURN(rc);
226 }
227
228 static int osp_process_config(const struct lu_env *env,
229                               struct lu_device *dev, struct lustre_cfg *lcfg)
230 {
231         struct osp_device               *d = lu2osp_dev(dev);
232         struct lprocfs_static_vars       lvars = { 0 };
233         int                              rc;
234
235         ENTRY;
236
237         switch (lcfg->lcfg_command) {
238         case LCFG_CLEANUP:
239                 lu_dev_del_linkage(dev->ld_site, dev);
240                 rc = osp_shutdown(env, d);
241                 break;
242         case LCFG_PARAM:
243                 lprocfs_osp_init_vars(&lvars);
244
245                 LASSERT(d->opd_obd);
246                 rc = class_process_proc_param(PARAM_OSP, lvars.obd_vars,
247                                               lcfg, d->opd_obd);
248                 if (rc > 0)
249                         rc = 0;
250                 if (rc == -ENOSYS) {
251                         /* class_process_proc_param() haven't found matching
252                          * parameter and returned ENOSYS so that layer(s)
253                          * below could use that. But OSP is the bottom, so
254                          * just ignore it */
255                         CERROR("%s: unknown param %s\n",
256                                (char *)lustre_cfg_string(lcfg, 0),
257                                (char *)lustre_cfg_string(lcfg, 1));
258                         rc = 0;
259                 }
260                 break;
261         default:
262                 CERROR("%s: unknown command %u\n",
263                        (char *)lustre_cfg_string(lcfg, 0), lcfg->lcfg_command);
264                 rc = 0;
265                 break;
266         }
267
268         RETURN(rc);
269 }
270
271 static int osp_recovery_complete(const struct lu_env *env,
272                                  struct lu_device *dev)
273 {
274         struct osp_device       *osp = lu2osp_dev(dev);
275         int                      rc = 0;
276
277         ENTRY;
278         osp->opd_recovery_completed = 1;
279         cfs_waitq_signal(&osp->opd_pre_waitq);
280         RETURN(rc);
281 }
282
283 const struct lu_device_operations osp_lu_ops = {
284         .ldo_object_alloc       = osp_object_alloc,
285         .ldo_process_config     = osp_process_config,
286         .ldo_recovery_complete  = osp_recovery_complete,
287 };
288
289 static int osp_sync(const struct lu_env *env, struct dt_device *dev)
290 {
291         ENTRY;
292
293         /*
294          * XXX: wake up sync thread, command it to start flushing asap?
295          */
296
297         RETURN(0);
298 }
299
300 static const struct dt_device_operations osp_dt_ops = {
301         .dt_sync        = osp_sync,
302 };
303
304 static int osp_connect_to_osd(const struct lu_env *env, struct osp_device *m,
305                               const char *nextdev)
306 {
307         struct obd_connect_data *data = NULL;
308         struct obd_device       *obd;
309         int                      rc;
310
311         ENTRY;
312
313         LASSERT(m->opd_storage_exp == NULL);
314
315         OBD_ALLOC_PTR(data);
316         if (data == NULL)
317                 RETURN(-ENOMEM);
318
319         obd = class_name2obd(nextdev);
320         if (obd == NULL) {
321                 CERROR("%s: can't locate next device: %s\n",
322                        m->opd_obd->obd_name, nextdev);
323                 GOTO(out, rc = -ENOTCONN);
324         }
325
326         rc = obd_connect(env, &m->opd_storage_exp, obd, &obd->obd_uuid, data,
327                          NULL);
328         if (rc) {
329                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
330                        m->opd_obd->obd_name, nextdev, rc);
331                 GOTO(out, rc);
332         }
333
334         m->opd_dt_dev.dd_lu_dev.ld_site =
335                 m->opd_storage_exp->exp_obd->obd_lu_dev->ld_site;
336         LASSERT(m->opd_dt_dev.dd_lu_dev.ld_site);
337         m->opd_storage = lu2dt_dev(m->opd_storage_exp->exp_obd->obd_lu_dev);
338
339 out:
340         OBD_FREE_PTR(data);
341         RETURN(rc);
342 }
343
344 static int osp_init0(const struct lu_env *env, struct osp_device *m,
345                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
346 {
347         struct lprocfs_static_vars       lvars = { 0 };
348         struct proc_dir_entry           *osc_proc_dir;
349         struct obd_import               *imp;
350         class_uuid_t                     uuid;
351         char                            *src, *ost, *mdt, *osdname = NULL;
352         int                              rc, idx;
353
354         ENTRY;
355
356         m->opd_obd = class_name2obd(lustre_cfg_string(cfg, 0));
357         if (m->opd_obd == NULL) {
358                 CERROR("Cannot find obd with name %s\n",
359                        lustre_cfg_string(cfg, 0));
360                 RETURN(-ENODEV);
361         }
362
363         /* There is no record in the MDT configuration for the local disk
364          * device, so we have to extract this from elsewhere in the profile.
365          * The only information we get at setup is from the OSC records:
366          * setup 0:{fsname}-OSTxxxx-osc[-MDTxxxx] 1:lustre-OST0000_UUID 2:NID
367          * Note that 1.8 generated configs are missing the -MDTxxxx part.
368          * We need to reconstruct the name of the underlying OSD from this:
369          * {fsname}-{svname}-osd, for example "lustre-MDT0000-osd".  We
370          * also need to determine the OST index from this - will be used
371          * to calculate the offset in shared lov_objids file later */
372
373         src = lustre_cfg_string(cfg, 0);
374         if (src == NULL)
375                 RETURN(-EINVAL);
376
377         ost = strstr(src, "-OST");
378         if (ost == NULL)
379                 RETURN(-EINVAL);
380
381         idx = simple_strtol(ost + 4, &mdt, 16);
382         if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
383                 CERROR("%s: invalid OST index in '%s'\n",
384                        m->opd_obd->obd_name, src);
385                 GOTO(out_fini, rc = -EINVAL);
386         }
387         m->opd_index = idx;
388
389         idx = ost - src;
390         /* check the fsname length, and after this everything else will fit */
391         if (idx > MTI_NAME_MAXLEN) {
392                 CERROR("%s: fsname too long in '%s'\n",
393                        m->opd_obd->obd_name, src);
394                 GOTO(out_fini, rc = -EINVAL);
395         }
396
397         OBD_ALLOC(osdname, MAX_OBD_NAME);
398         if (osdname == NULL)
399                 GOTO(out_fini, rc = -ENOMEM);
400
401         memcpy(osdname, src, idx); /* copy just the fsname part */
402         osdname[idx] = '\0';
403
404         mdt = strstr(mdt, "-MDT");
405         if (mdt == NULL) /* 1.8 configs don't have "-MDT0000" at the end */
406                 strcat(osdname, "-MDT0000");
407         else
408                 strcat(osdname, mdt);
409         strcat(osdname, "-osd");
410         CDEBUG(D_HA, "%s: connect to %s (%s)\n",
411                m->opd_obd->obd_name, osdname, src);
412
413         m->opd_dt_dev.dd_lu_dev.ld_ops = &osp_lu_ops;
414         m->opd_dt_dev.dd_ops = &osp_dt_ops;
415         m->opd_obd->obd_lu_dev = &m->opd_dt_dev.dd_lu_dev;
416
417         rc = osp_connect_to_osd(env, m, osdname);
418         if (rc)
419                 GOTO(out_fini, rc);
420
421         rc = ptlrpcd_addref();
422         if (rc)
423                 GOTO(out_disconnect, rc);
424
425         rc = client_obd_setup(m->opd_obd, cfg);
426         if (rc) {
427                 CERROR("%s: can't setup obd: %d\n", m->opd_obd->obd_name, rc);
428                 GOTO(out_ref, rc);
429         }
430
431         lprocfs_osp_init_vars(&lvars);
432         if (lprocfs_obd_setup(m->opd_obd, lvars.obd_vars) == 0)
433                 ptlrpc_lprocfs_register_obd(m->opd_obd);
434
435         /* for compatibility we link old procfs's OSC entries to osp ones */
436         osc_proc_dir = lprocfs_srch(proc_lustre_root, "osc");
437         if (osc_proc_dir) {
438                 cfs_proc_dir_entry_t    *symlink = NULL;
439                 char                    *name;
440
441                 OBD_ALLOC(name, strlen(m->opd_obd->obd_name) + 1);
442                 if (name == NULL)
443                         GOTO(out, rc = -ENOMEM);
444
445                 strcpy(name, m->opd_obd->obd_name);
446                 if (strstr(name, "osc"))
447                         symlink = lprocfs_add_symlink(name, osc_proc_dir,
448                                                       "../osp/%s",
449                                                       m->opd_obd->obd_name);
450                 OBD_FREE(name, strlen(m->opd_obd->obd_name) + 1);
451                 m->opd_symlink = symlink;
452         }
453
454         /*
455          * Initialize last id from the storage - will be used in orphan cleanup
456          */
457         rc = osp_last_used_init(env, m);
458         if (rc)
459                 GOTO(out_proc, rc);
460
461         /*
462          * Initialize precreation thread, it handles new connections as well
463          */
464         rc = osp_init_precreate(m);
465         if (rc)
466                 GOTO(out_last_used, rc);
467
468         /*
469          * Initiate connect to OST
470          */
471         ll_generate_random_uuid(uuid);
472         class_uuid_unparse(uuid, &m->opd_cluuid);
473
474         imp = m->opd_obd->u.cli.cl_import;
475
476         rc = ptlrpc_init_import(imp);
477         if (rc)
478                 GOTO(out, rc);
479         if (osdname)
480                 OBD_FREE(osdname, MAX_OBD_NAME);
481         RETURN(0);
482
483 out:
484         /* stop precreate thread */
485         osp_precreate_fini(m);
486 out_last_used:
487         osp_last_used_fini(env, m);
488 out_proc:
489         ptlrpc_lprocfs_unregister_obd(m->opd_obd);
490         lprocfs_obd_cleanup(m->opd_obd);
491         class_destroy_import(m->opd_obd->u.cli.cl_import);
492         client_obd_cleanup(m->opd_obd);
493 out_ref:
494         ptlrpcd_decref();
495 out_disconnect:
496         obd_disconnect(m->opd_storage_exp);
497 out_fini:
498         if (osdname)
499                 OBD_FREE(osdname, MAX_OBD_NAME);
500         RETURN(rc);
501 }
502
503 static struct lu_device *osp_device_free(const struct lu_env *env,
504                                          struct lu_device *lu)
505 {
506         struct osp_device *m = lu2osp_dev(lu);
507
508         ENTRY;
509
510         dt_device_fini(&m->opd_dt_dev);
511         OBD_FREE_PTR(m);
512         RETURN(NULL);
513 }
514
515 static struct lu_device *osp_device_alloc(const struct lu_env *env,
516                                           struct lu_device_type *t,
517                                           struct lustre_cfg *lcfg)
518 {
519         struct osp_device *m;
520         struct lu_device  *l;
521
522         OBD_ALLOC_PTR(m);
523         if (m == NULL) {
524                 l = ERR_PTR(-ENOMEM);
525         } else {
526                 int rc;
527
528                 l = osp2lu_dev(m);
529                 dt_device_init(&m->opd_dt_dev, t);
530                 rc = osp_init0(env, m, t, lcfg);
531                 if (rc != 0) {
532                         osp_device_free(env, l);
533                         l = ERR_PTR(rc);
534                 }
535         }
536         return l;
537 }
538
539 static struct lu_device *osp_device_fini(const struct lu_env *env,
540                                          struct lu_device *d)
541 {
542         struct osp_device *m = lu2osp_dev(d);
543         struct obd_import *imp;
544         int                rc;
545
546         ENTRY;
547
548         LASSERT(m->opd_storage_exp);
549         obd_disconnect(m->opd_storage_exp);
550
551         imp = m->opd_obd->u.cli.cl_import;
552
553         if (imp->imp_rq_pool) {
554                 ptlrpc_free_rq_pool(imp->imp_rq_pool);
555                 imp->imp_rq_pool = NULL;
556         }
557
558         obd_cleanup_client_import(m->opd_obd);
559
560         if (m->opd_symlink)
561                 lprocfs_remove(&m->opd_symlink);
562
563         LASSERT(m->opd_obd);
564         ptlrpc_lprocfs_unregister_obd(m->opd_obd);
565         lprocfs_obd_cleanup(m->opd_obd);
566
567         rc = client_obd_cleanup(m->opd_obd);
568         LASSERTF(rc == 0, "error %d\n", rc);
569
570         ptlrpcd_decref();
571
572         RETURN(NULL);
573 }
574
575 static int osp_reconnect(const struct lu_env *env,
576                          struct obd_export *exp, struct obd_device *obd,
577                          struct obd_uuid *cluuid,
578                          struct obd_connect_data *data,
579                          void *localdata)
580 {
581         return 0;
582 }
583
584 /*
585  * we use exports to track all LOD users
586  */
587 static int osp_obd_connect(const struct lu_env *env, struct obd_export **exp,
588                            struct obd_device *obd, struct obd_uuid *cluuid,
589                            struct obd_connect_data *data, void *localdata)
590 {
591         struct osp_device       *osp = lu2osp_dev(obd->obd_lu_dev);
592         struct obd_connect_data *ocd;
593         struct obd_import       *imp;
594         struct lustre_handle     conn;
595         int                      rc;
596
597         ENTRY;
598
599         CDEBUG(D_CONFIG, "connect #%d\n", osp->opd_connects);
600
601         rc = class_connect(&conn, obd, cluuid);
602         if (rc)
603                 RETURN(rc);
604
605         *exp = class_conn2export(&conn);
606
607         /* Why should there ever be more than 1 connect? */
608         osp->opd_connects++;
609         LASSERT(osp->opd_connects == 1);
610
611         imp = osp->opd_obd->u.cli.cl_import;
612         imp->imp_dlm_handle = conn;
613
614         ocd = &imp->imp_connect_data;
615         ocd->ocd_connect_flags = OBD_CONNECT_AT |
616                                  OBD_CONNECT_FULL20 |
617                                  OBD_CONNECT_INDEX |
618 #ifdef HAVE_LRU_RESIZE_SUPPORT
619                                  OBD_CONNECT_LRU_RESIZE |
620 #endif
621                                  OBD_CONNECT_MDS |
622                                  OBD_CONNECT_OSS_CAPA |
623                                  OBD_CONNECT_REQPORTAL |
624                                  OBD_CONNECT_SKIP_ORPHAN |
625                                  OBD_CONNECT_VERSION;
626         ocd->ocd_version = LUSTRE_VERSION_CODE;
627         LASSERT(data->ocd_connect_flags & OBD_CONNECT_INDEX);
628         ocd->ocd_index = data->ocd_index;
629         imp->imp_connect_flags_orig = ocd->ocd_connect_flags;
630
631         rc = ptlrpc_connect_import(imp);
632         if (rc) {
633                 CERROR("%s: can't connect obd: rc = %d\n", obd->obd_name, rc);
634                 GOTO(out, rc);
635         }
636
637         ptlrpc_pinger_add_import(imp);
638
639 out:
640         RETURN(rc);
641 }
642
643 /*
644  * once last export (we don't count self-export) disappeared
645  * osp can be released
646  */
647 static int osp_obd_disconnect(struct obd_export *exp)
648 {
649         struct obd_device *obd = exp->exp_obd;
650         struct osp_device *osp = lu2osp_dev(obd->obd_lu_dev);
651         int                rc;
652
653         ENTRY;
654
655         /* Only disconnect the underlying layers on the final disconnect. */
656         LASSERT(osp->opd_connects == 1);
657         osp->opd_connects--;
658
659         rc = class_disconnect(exp);
660
661         /* destroy the device */
662         if (rc == 0)
663                 class_manual_cleanup(obd);
664
665         RETURN(rc);
666 }
667
668 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
669 LU_KEY_INIT_FINI(osp, struct osp_thread_info);
670 static void osp_key_exit(const struct lu_context *ctx,
671                          struct lu_context_key *key, void *data)
672 {
673         struct osp_thread_info *info = data;
674
675         info->osi_attr.la_valid = 0;
676 }
677
678 struct lu_context_key osp_thread_key = {
679         .lct_tags = LCT_MD_THREAD,
680         .lct_init = osp_key_init,
681         .lct_fini = osp_key_fini,
682         .lct_exit = osp_key_exit
683 };
684
685 /* context key constructor/destructor: mdt_txn_key_init, mdt_txn_key_fini */
686 LU_KEY_INIT_FINI(osp_txn, struct osp_txn_info);
687
688 struct lu_context_key osp_txn_key = {
689         .lct_tags = LCT_OSP_THREAD,
690         .lct_init = osp_txn_key_init,
691         .lct_fini = osp_txn_key_fini
692 };
693 LU_TYPE_INIT_FINI(osp, &osp_thread_key, &osp_txn_key);
694
695 static struct lu_device_type_operations osp_device_type_ops = {
696         .ldto_init           = osp_type_init,
697         .ldto_fini           = osp_type_fini,
698
699         .ldto_start          = osp_type_start,
700         .ldto_stop           = osp_type_stop,
701
702         .ldto_device_alloc   = osp_device_alloc,
703         .ldto_device_free    = osp_device_free,
704
705         .ldto_device_fini    = osp_device_fini
706 };
707
708 static struct lu_device_type osp_device_type = {
709         .ldt_tags     = LU_DEVICE_DT,
710         .ldt_name     = LUSTRE_OSP_NAME,
711         .ldt_ops      = &osp_device_type_ops,
712         .ldt_ctx_tags = LCT_MD_THREAD
713 };
714
715 static struct obd_ops osp_obd_device_ops = {
716         .o_owner        = THIS_MODULE,
717         .o_add_conn     = client_import_add_conn,
718         .o_del_conn     = client_import_del_conn,
719         .o_reconnect    = osp_reconnect,
720         .o_connect      = osp_obd_connect,
721         .o_disconnect   = osp_obd_disconnect,
722 };
723
724 static int __init osp_mod_init(void)
725 {
726         struct lprocfs_static_vars       lvars;
727         cfs_proc_dir_entry_t            *osc_proc_dir;
728         int                              rc;
729
730         rc = lu_kmem_init(osp_caches);
731         if (rc)
732                 return rc;
733
734         lprocfs_osp_init_vars(&lvars);
735
736         rc = class_register_type(&osp_obd_device_ops, NULL, lvars.module_vars,
737                                  LUSTRE_OSP_NAME, &osp_device_type);
738
739         /* create "osc" entry in procfs for compatibility purposes */
740         if (rc != 0) {
741                 lu_kmem_fini(osp_caches);
742                 return rc;
743         }
744
745         osc_proc_dir = lprocfs_srch(proc_lustre_root, "osc");
746         if (osc_proc_dir == NULL) {
747                 osc_proc_dir = lprocfs_register("osc", proc_lustre_root, NULL,
748                                                 NULL);
749                 if (IS_ERR(osc_proc_dir))
750                         CERROR("osp: can't create compat entry \"osc\": %d\n",
751                                (int) PTR_ERR(osc_proc_dir));
752         }
753         return rc;
754 }
755
756 static void __exit osp_mod_exit(void)
757 {
758         lprocfs_try_remove_proc_entry("osc", proc_lustre_root);
759
760         class_unregister_type(LUSTRE_OSP_NAME);
761         lu_kmem_fini(osp_caches);
762 }
763
764 MODULE_AUTHOR("Intel, Inc. <http://www.intel.com/>");
765 MODULE_DESCRIPTION("Lustre OST Proxy Device ("LUSTRE_OSP_NAME")");
766 MODULE_LICENSE("GPL");
767
768 cfs_module(osp, LUSTRE_VERSION_STRING, osp_mod_init, osp_mod_exit);
769