Whamcloud - gitweb
LU-10467 lustre: use wait_event_idle() where appropriate.
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/osp/osp_dev.c
33  *
34  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
35  * Author: Mikhail Pershin <mike.pershin@intel.com>
36  * Author: Di Wang <di.wang@intel.com>
37  */
38 /*
39  * The Object Storage Proxy (OSP) module provides an implementation of
40  * the DT API for remote MDTs and OSTs. Every local OSP device (or
41  * object) is a proxy for a remote OSD device (or object). Thus OSP
42  * converts DT operations into RPCs, which are sent to the OUT service
43  * on a remote target, converted back to DT operations, and
44  * executed. Of course there are many ways in which this description
45  * is inaccurate but it's a good enough mental model. OSP is used by
46  * the MDT stack in several ways:
47  *
48  * - OSP devices allocate FIDs for the stripe sub-objects of a striped
49  *   file or directory.
50  *
51  * - OSP objects represent the remote MDT and OST objects that are
52  *   the stripes of a striped object.
53  *
54  * - OSP devices log, send, and track synchronous operations (setattr
55  *   and unlink) to remote targets.
56  *
57  * - OSP objects are the bottom slice of the compound LU object
58  *   representing a remote MDT object: MDT/MDD/LOD/OSP.
59  *
60  * - OSP objects are used by LFSCK to represent remote OST objects
61  *   during the verification of MDT-OST consistency.
62  *
63  * - OSP devices batch idempotent requests (declare_attr_get() and
64  *   declare_xattr_get()) to the remote target and cache their results.
65  *
66  * In addition the OSP layer implements a subset of the OBD device API
67  * to support being a client of a remote target, connecting to other
68  * layers, and FID allocation.
69  */
70
71 #define DEBUG_SUBSYSTEM S_MDS
72
73 #include <linux/kthread.h>
74
75 #include <uapi/linux/lustre/lustre_ioctl.h>
76 #include <lustre_log.h>
77 #include <lustre_obdo.h>
78 #include <uapi/linux/lustre/lustre_param.h>
79 #include <obd_class.h>
80
81 #include "osp_internal.h"
82
83 /* Slab for OSP object allocation */
84 struct kmem_cache *osp_object_kmem;
85
86 static struct lu_kmem_descr osp_caches[] = {
87         {
88                 .ckd_cache = &osp_object_kmem,
89                 .ckd_name  = "osp_obj",
90                 .ckd_size  = sizeof(struct osp_object)
91         },
92         {
93                 .ckd_cache = NULL
94         }
95 };
96
97 /**
98  * Implementation of lu_device_operations::ldo_object_alloc
99  *
100  * Allocates an OSP object in memory, whose FID is on the remote target.
101  *
102  * \param[in] env       execution environment
103  * \param[in] hdr       The header of the object stack. If it is NULL, it
104  *                      means the object is not built from top device, i.e.
105  *                      it is a sub-stripe object of striped directory or
106  *                      an OST object.
107  * \param[in] d         OSP device
108  *
109  * \retval object       object being created if the creation succeed.
110  * \retval NULL         NULL if the creation failed.
111  */
112 static struct lu_object *osp_object_alloc(const struct lu_env *env,
113                                           const struct lu_object_header *hdr,
114                                           struct lu_device *d)
115 {
116         struct lu_object_header *h = NULL;
117         struct osp_object       *o;
118         struct lu_object        *l;
119
120         OBD_SLAB_ALLOC_PTR_GFP(o, osp_object_kmem, GFP_NOFS);
121         if (o != NULL) {
122                 l = &o->opo_obj.do_lu;
123
124                 /* If hdr is NULL, it means the object is not built
125                  * from the top dev(MDT/OST), usually it happens when
126                  * building striped object, like data object on MDT or
127                  * striped object for directory */
128                 if (hdr == NULL) {
129                         h = &o->opo_header;
130                         lu_object_header_init(h);
131                         dt_object_init(&o->opo_obj, h, d);
132                         lu_object_add_top(h, l);
133                 } else {
134                         dt_object_init(&o->opo_obj, h, d);
135                 }
136
137                 l->lo_ops = &osp_lu_obj_ops;
138
139                 return l;
140         } else {
141                 return NULL;
142         }
143 }
144
145 /**
146  * Find or create the local object
147  *
148  * Finds or creates the local file referenced by \a reg_id and return the
149  * attributes of the local file.
150  *
151  * \param[in] env       execution environment
152  * \param[in] osp       OSP device
153  * \param[out] attr     attributes of the object
154  * \param[in] reg_id    the local object ID of the file. It will be used
155  *                      to compose a local FID{FID_SEQ_LOCAL_FILE, reg_id, 0}
156  *                      to identify the object.
157  *
158  * \retval object               object(dt_object) found or created
159  * \retval ERR_PTR(errno)       ERR_PTR(errno) if not get the object.
160  */
161 static struct dt_object
162 *osp_find_or_create_local_file(const struct lu_env *env, struct osp_device *osp,
163                                struct lu_attr *attr, __u32 reg_id)
164 {
165         struct osp_thread_info *osi = osp_env_info(env);
166         struct dt_object_format dof = { 0 };
167         struct dt_object       *dto;
168         int                  rc;
169         ENTRY;
170
171         lu_local_obj_fid(&osi->osi_fid, reg_id);
172         attr->la_valid = LA_MODE;
173         attr->la_mode = S_IFREG | 0644;
174         dof.dof_type = DFT_REGULAR;
175         /* Find or create the local object by osi_fid. */
176         dto = dt_find_or_create(env, osp->opd_storage, &osi->osi_fid,
177                                 &dof, attr);
178         if (IS_ERR(dto))
179                 RETURN(dto);
180
181         /* Get attributes of the local object. */
182         rc = dt_attr_get(env, dto, attr);
183         if (rc) {
184                 CERROR("%s: can't be initialized: rc = %d\n",
185                        osp->opd_obd->obd_name, rc);
186                 dt_object_put(env, dto);
187                 RETURN(ERR_PTR(rc));
188         }
189         RETURN(dto);
190 }
191
192 /**
193  * Write data buffer to a local file object.
194  *
195  * \param[in] env       execution environment
196  * \param[in] osp       OSP device
197  * \param[in] dt_obj    object written to
198  * \param[in] buf       buffer containing byte array and length
199  * \param[in] offset    write offset in the object in bytes
200  *
201  * \retval 0            0 if write succeed
202  * \retval -EFAULT      -EFAULT if only part of buffer is written.
203  * \retval negative             other negative errno if write failed.
204  */
205 static int osp_write_local_file(const struct lu_env *env,
206                                 struct osp_device *osp,
207                                 struct dt_object *dt_obj,
208                                 struct lu_buf *buf,
209                                 loff_t offset)
210 {
211         struct thandle *th;
212         int rc;
213
214         if (osp->opd_storage->dd_rdonly)
215                 RETURN(0);
216
217         th = dt_trans_create(env, osp->opd_storage);
218         if (IS_ERR(th))
219                 RETURN(PTR_ERR(th));
220
221         rc = dt_declare_record_write(env, dt_obj, buf, offset, th);
222         if (rc)
223                 GOTO(out, rc);
224         rc = dt_trans_start_local(env, osp->opd_storage, th);
225         if (rc)
226                 GOTO(out, rc);
227
228         rc = dt_record_write(env, dt_obj, buf, &offset, th);
229 out:
230         dt_trans_stop(env, osp->opd_storage, th);
231         RETURN(rc);
232 }
233
234 /**
235  * Initialize last ID object.
236  *
237  * This function initializes the LAST_ID file, which stores the current last
238  * used id of data objects. The MDT will use the last used id and the last_seq
239  * (\see osp_init_last_seq()) to synchronize the precreate object cache with
240  * OSTs.
241  *
242  * \param[in] env       execution environment
243  * \param[in] osp       OSP device
244  *
245  * \retval 0            0 if initialization succeed
246  * \retval negative     negative errno if initialization failed
247  */
248 static int osp_init_last_objid(const struct lu_env *env, struct osp_device *osp)
249 {
250         struct osp_thread_info  *osi = osp_env_info(env);
251         struct lu_fid           *fid = &osp->opd_last_used_fid;
252         struct dt_object        *dto;
253         int                     rc = -EFAULT;
254         ENTRY;
255
256         dto = osp_find_or_create_local_file(env, osp, &osi->osi_attr,
257                                             MDD_LOV_OBJ_OID);
258         if (IS_ERR(dto))
259                 RETURN(PTR_ERR(dto));
260
261         osp_objid_buf_prep(&osi->osi_lb, &osi->osi_off, &osp->opd_last_id,
262                            osp->opd_index);
263
264         /* object will be released in device cleanup path */
265         if (osi->osi_attr.la_size >= (osi->osi_off + osi->osi_lb.lb_len)) {
266                 rc = dt_record_read(env, dto, &osi->osi_lb, &osi->osi_off);
267                 if (rc != 0 && rc != -EFAULT)
268                         GOTO(out, rc);
269                 /* In case of idif bits 32-48 go to f_seq
270                  * (see osp_init_last_seq). So don't care
271                  * about u64->u32 convertion. */
272                 fid->f_oid = osp->opd_last_id;
273         }
274
275         if (rc == -EFAULT) { /* fresh LAST_ID */
276                 osp->opd_last_id = 0;
277                 fid->f_oid = 0;
278                 rc = osp_write_local_file(env, osp, dto, &osi->osi_lb,
279                                           osi->osi_off);
280                 if (rc != 0)
281                         GOTO(out, rc);
282         }
283         osp->opd_last_used_oid_file = dto;
284         RETURN(0);
285 out:
286         /* object will be released in device cleanup path */
287         CERROR("%s: can't initialize lov_objid: rc = %d\n",
288                osp->opd_obd->obd_name, rc);
289         dt_object_put(env, dto);
290         osp->opd_last_used_oid_file = NULL;
291         RETURN(rc);
292 }
293
294 /**
295  * Initialize last sequence object.
296  *
297  * This function initializes the LAST_SEQ file in the local OSD, which stores
298  * the current last used sequence of data objects. The MDT will use the last
299  * sequence and last id (\see osp_init_last_objid()) to synchronize the
300  * precreate object cache with OSTs.
301  *
302  * \param[in] env       execution environment
303  * \param[in] osp       OSP device
304  *
305  * \retval 0            0 if initialization succeed
306  * \retval negative     negative errno if initialization failed
307  */
308 static int osp_init_last_seq(const struct lu_env *env, struct osp_device *osp)
309 {
310         struct osp_thread_info  *osi = osp_env_info(env);
311         struct lu_fid           *fid = &osp->opd_last_used_fid;
312         struct dt_object        *dto;
313         int                     rc = -EFAULT;
314         ENTRY;
315
316         dto = osp_find_or_create_local_file(env, osp, &osi->osi_attr,
317                                             MDD_LOV_OBJ_OSEQ);
318         if (IS_ERR(dto))
319                 RETURN(PTR_ERR(dto));
320
321         osp_objseq_buf_prep(&osi->osi_lb, &osi->osi_off, &fid->f_seq,
322                            osp->opd_index);
323
324         /* object will be released in device cleanup path */
325         if (osi->osi_attr.la_size >= (osi->osi_off + osi->osi_lb.lb_len)) {
326                 rc = dt_record_read(env, dto, &osi->osi_lb, &osi->osi_off);
327                 if (rc != 0 && rc != -EFAULT)
328                         GOTO(out, rc);
329                 if (fid_is_idif(fid))
330                         fid->f_seq = fid_idif_seq(osp->opd_last_id,
331                                                   osp->opd_index);
332         }
333
334         if (rc == -EFAULT) { /* fresh OSP */
335                 fid->f_seq = 0;
336                 rc = osp_write_local_file(env, osp, dto, &osi->osi_lb,
337                                           osi->osi_off);
338                 if (rc != 0)
339                         GOTO(out, rc);
340         }
341         osp->opd_last_used_seq_file = dto;
342         RETURN(0);
343 out:
344         /* object will be released in device cleanup path */
345         CERROR("%s: can't initialize lov_seq: rc = %d\n",
346                osp->opd_obd->obd_name, rc);
347         dt_object_put(env, dto);
348         osp->opd_last_used_seq_file = NULL;
349         RETURN(rc);
350 }
351
352 /**
353  * Initialize last OID and sequence object.
354  *
355  * If the MDT is just upgraded to 2.4 from the lower version, where the
356  * LAST_SEQ file does not exist, the file will be created and IDIF sequence
357  * will be written into the file.
358  *
359  * \param[in] env       execution environment
360  * \param[in] osp       OSP device
361  *
362  * \retval 0            0 if initialization succeed
363  * \retval negative     negative error if initialization failed
364  */
365 static int osp_last_used_init(const struct lu_env *env, struct osp_device *osp)
366 {
367         struct osp_thread_info *osi = osp_env_info(env);
368         int                  rc;
369         ENTRY;
370
371         fid_zero(&osp->opd_last_used_fid);
372         rc = osp_init_last_objid(env, osp);
373         if (rc < 0) {
374                 CERROR("%s: Can not get ids %d from old objid!\n",
375                        osp->opd_obd->obd_name, rc);
376                 RETURN(rc);
377         }
378
379         rc = osp_init_last_seq(env, osp);
380         if (rc < 0) {
381                 CERROR("%s: Can not get sequence %d from old objseq!\n",
382                        osp->opd_obd->obd_name, rc);
383                 GOTO(out, rc);
384         }
385
386         if (fid_oid(&osp->opd_last_used_fid) != 0 &&
387             fid_seq(&osp->opd_last_used_fid) == 0) {
388                 /* Just upgrade from the old version,
389                  * set the seq to be IDIF */
390                 osp->opd_last_used_fid.f_seq =
391                    fid_idif_seq(fid_oid(&osp->opd_last_used_fid),
392                                 osp->opd_index);
393                 osp_objseq_buf_prep(&osi->osi_lb, &osi->osi_off,
394                                     &osp->opd_last_used_fid.f_seq,
395                                     osp->opd_index);
396                 rc = osp_write_local_file(env, osp, osp->opd_last_used_seq_file,
397                                           &osi->osi_lb, osi->osi_off);
398                 if (rc) {
399                         CERROR("%s : Can not write seq file: rc = %d\n",
400                                osp->opd_obd->obd_name, rc);
401                         GOTO(out, rc);
402                 }
403         }
404
405         if (!fid_is_zero(&osp->opd_last_used_fid) &&
406                  !fid_is_sane(&osp->opd_last_used_fid)) {
407                 CERROR("%s: Got invalid FID "DFID"\n", osp->opd_obd->obd_name,
408                         PFID(&osp->opd_last_used_fid));
409                 GOTO(out, rc = -EINVAL);
410         }
411
412         osp_fid_to_obdid(&osp->opd_last_used_fid, &osp->opd_last_id);
413         CDEBUG(D_INFO, "%s: Init last used fid "DFID"\n",
414                osp->opd_obd->obd_name, PFID(&osp->opd_last_used_fid));
415 out:
416         if (rc != 0) {
417                 if (osp->opd_last_used_oid_file != NULL) {
418                         dt_object_put(env, osp->opd_last_used_oid_file);
419                         osp->opd_last_used_oid_file = NULL;
420                 }
421                 if (osp->opd_last_used_seq_file != NULL) {
422                         dt_object_put(env, osp->opd_last_used_seq_file);
423                         osp->opd_last_used_seq_file = NULL;
424                 }
425         }
426
427         RETURN(rc);
428 }
429
430 /**
431  * Release the last sequence and OID file objects in OSP device.
432  *
433  * \param[in] env       execution environment
434  * \param[in] osp       OSP device
435  */
436 static void osp_last_used_fini(const struct lu_env *env, struct osp_device *osp)
437 {
438         /* release last_used file */
439         if (osp->opd_last_used_oid_file != NULL) {
440                 dt_object_put(env, osp->opd_last_used_oid_file);
441                 osp->opd_last_used_oid_file = NULL;
442         }
443
444         if (osp->opd_last_used_seq_file != NULL) {
445                 dt_object_put(env, osp->opd_last_used_seq_file);
446                 osp->opd_last_used_seq_file = NULL;
447         }
448 }
449
450 /**
451  * Disconnects the connection between OSP and its correspondent MDT or OST, and
452  * the import will be marked as inactive. It will only be called during OSP
453  * cleanup process.
454  *
455  * \param[in] d         OSP device being disconnected
456  *
457  * \retval 0            0 if disconnection succeed
458  * \retval negative     negative errno if disconnection failed
459  */
460 static int osp_disconnect(struct osp_device *d)
461 {
462         struct obd_device *obd = d->opd_obd;
463         struct obd_import *imp;
464         int rc = 0;
465
466         imp = obd->u.cli.cl_import;
467
468         /* Mark import deactivated now, so we don't try to reconnect if any
469          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
470          * fully deactivate the import, or that would drop all requests. */
471         LASSERT(imp != NULL);
472         spin_lock(&imp->imp_lock);
473         imp->imp_deactive = 1;
474         spin_unlock(&imp->imp_lock);
475
476         ptlrpc_deactivate_import(imp);
477
478         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
479          * delete it regardless.  (It's safe to delete an import that was
480          * never added.) */
481         (void)ptlrpc_pinger_del_import(imp);
482
483         rc = ptlrpc_disconnect_import(imp, 0);
484         if (rc != 0)
485                 CERROR("%s: can't disconnect: rc = %d\n", obd->obd_name, rc);
486
487         ptlrpc_invalidate_import(imp);
488
489         RETURN(rc);
490 }
491
492 /**
493  * Initialize the osp_update structure in OSP device
494  *
495  * Allocate osp update structure and start update thread.
496  *
497  * \param[in] osp       OSP device
498  *
499  * \retval              0 if initialization succeeds.
500  * \retval              negative errno if initialization fails.
501  */
502 static int osp_update_init(struct osp_device *osp)
503 {
504         struct task_struct      *task;
505
506         ENTRY;
507
508         LASSERT(osp->opd_connect_mdt);
509
510         if (osp->opd_storage->dd_rdonly)
511                 RETURN(0);
512
513         OBD_ALLOC_PTR(osp->opd_update);
514         if (osp->opd_update == NULL)
515                 RETURN(-ENOMEM);
516
517         init_waitqueue_head(&osp->opd_update_thread.t_ctl_waitq);
518         init_waitqueue_head(&osp->opd_update->ou_waitq);
519         spin_lock_init(&osp->opd_update->ou_lock);
520         INIT_LIST_HEAD(&osp->opd_update->ou_list);
521         osp->opd_update->ou_rpc_version = 1;
522         osp->opd_update->ou_version = 1;
523         osp->opd_update->ou_generation = 0;
524
525         /* start thread handling sending updates to the remote MDT */
526         task = kthread_run(osp_send_update_thread, osp,
527                            "osp_up%u-%u", osp->opd_index, osp->opd_group);
528         if (IS_ERR(task)) {
529                 int rc = PTR_ERR(task);
530
531                 OBD_FREE_PTR(osp->opd_update);
532                 osp->opd_update = NULL;
533                 CERROR("%s: can't start precreate thread: rc = %d\n",
534                        osp->opd_obd->obd_name, rc);
535                 RETURN(rc);
536         }
537
538         wait_event_idle(osp->opd_update_thread.t_ctl_waitq,
539                         osp_send_update_thread_running(osp) ||
540                         osp_send_update_thread_stopped(osp));
541
542         RETURN(0);
543 }
544
545 /**
546  * Finialize osp_update structure in OSP device
547  *
548  * Stop the OSP update sending thread, then delete the left
549  * osp thandle in the sending list.
550  *
551  * \param [in] osp      OSP device.
552  */
553 static void osp_update_fini(const struct lu_env *env, struct osp_device *osp)
554 {
555         struct osp_update_request *our;
556         struct osp_update_request *tmp;
557         struct osp_updates *ou = osp->opd_update;
558
559         if (ou == NULL)
560                 return;
561
562         osp->opd_update_thread.t_flags = SVC_STOPPING;
563         wake_up(&ou->ou_waitq);
564
565         wait_event(osp->opd_update_thread.t_ctl_waitq,
566                    osp->opd_update_thread.t_flags & SVC_STOPPED);
567
568         /* Remove the left osp thandle from the list */
569         spin_lock(&ou->ou_lock);
570         list_for_each_entry_safe(our, tmp, &ou->ou_list,
571                                  our_list) {
572                 list_del_init(&our->our_list);
573                 LASSERT(our->our_th != NULL);
574                 osp_trans_callback(env, our->our_th, -EIO);
575                 /* our will be destroyed in osp_thandle_put() */
576                 osp_thandle_put(env, our->our_th);
577         }
578         spin_unlock(&ou->ou_lock);
579
580         OBD_FREE_PTR(ou);
581         osp->opd_update = NULL;
582 }
583
584 /**
585  * Cleanup OSP, which includes disconnect import, cleanup unlink log, stop
586  * precreate threads etc.
587  *
588  * \param[in] env       execution environment.
589  * \param[in] d         OSP device being disconnected.
590  *
591  * \retval 0            0 if cleanup succeed
592  * \retval negative     negative errno if cleanup failed
593  */
594 static int osp_shutdown(const struct lu_env *env, struct osp_device *d)
595 {
596         int                      rc = 0;
597         ENTRY;
598
599         LASSERT(env);
600
601         rc = osp_disconnect(d);
602
603         osp_statfs_fini(d);
604
605         if (!d->opd_connect_mdt) {
606                 /* stop sync thread */
607                 osp_sync_fini(d);
608
609                 /* stop precreate thread */
610                 osp_precreate_fini(d);
611
612                 /* release last_used file */
613                 osp_last_used_fini(env, d);
614         }
615
616         obd_fid_fini(d->opd_obd);
617
618         RETURN(rc);
619 }
620
621 /**
622  * Implementation of osp_lu_ops::ldo_process_config
623  *
624  * This function processes config log records in OSP layer. It is usually
625  * called from the top layer of MDT stack, and goes through the stack by calling
626  * ldo_process_config of next layer.
627  *
628  * \param[in] env       execution environment
629  * \param[in] dev       lu_device of OSP
630  * \param[in] lcfg      config log
631  *
632  * \retval 0            0 if the config log record is executed correctly.
633  * \retval negative     negative errno if the record execution fails.
634  */
635 static int osp_process_config(const struct lu_env *env,
636                               struct lu_device *dev, struct lustre_cfg *lcfg)
637 {
638         struct osp_device *d = lu2osp_dev(dev);
639         struct dt_device *dt = lu2dt_dev(dev);
640         struct obd_device *obd = d->opd_obd;
641         ssize_t count;
642         int rc;
643
644         ENTRY;
645
646         switch (lcfg->lcfg_command) {
647         case LCFG_PRE_CLEANUP:
648                 rc = osp_disconnect(d);
649                 osp_update_fini(env, d);
650                 if (obd->obd_namespace != NULL)
651                         ldlm_namespace_free_prior(obd->obd_namespace, NULL, 1);
652                 break;
653         case LCFG_CLEANUP:
654                 lu_dev_del_linkage(dev->ld_site, dev);
655                 rc = osp_shutdown(env, d);
656                 break;
657         case LCFG_PARAM:
658                 count = class_modify_config(lcfg, d->opd_connect_mdt ?
659                                                   PARAM_OSP : PARAM_OSC,
660                                             &dt->dd_kobj);
661                 if (count < 0) {
662                         /* class_modify_config() haven't found matching
663                          * parameter and returned an error so that layer(s)
664                          * below could use that. But OSP is the bottom, so
665                          * just ignore it
666                          */
667                         CERROR("%s: unknown param %s\n",
668                                (char *)lustre_cfg_string(lcfg, 0),
669                                (char *)lustre_cfg_string(lcfg, 1));
670                 }
671                 rc = 0;
672                 break;
673         default:
674                 CERROR("%s: unknown command %u\n",
675                        (char *)lustre_cfg_string(lcfg, 0), lcfg->lcfg_command);
676                 rc = 0;
677                 break;
678         }
679
680         RETURN(rc);
681 }
682
683 /**
684  * Implementation of osp_lu_ops::ldo_recovery_complete
685  *
686  * This function is called after recovery is finished, and OSP layer
687  * will wake up precreate thread here.
688  *
689  * \param[in] env       execution environment
690  * \param[in] dev       lu_device of OSP
691  *
692  * \retval 0            0 unconditionally
693  */
694 static int osp_recovery_complete(const struct lu_env *env,
695                                  struct lu_device *dev)
696 {
697         struct osp_device       *osp = lu2osp_dev(dev);
698
699         ENTRY;
700         osp->opd_recovery_completed = 1;
701
702         if (!osp->opd_connect_mdt && osp->opd_pre != NULL)
703                 wake_up(&osp->opd_pre_waitq);
704
705         RETURN(0);
706 }
707
708 const struct lu_device_operations osp_lu_ops = {
709         .ldo_object_alloc       = osp_object_alloc,
710         .ldo_process_config     = osp_process_config,
711         .ldo_recovery_complete  = osp_recovery_complete,
712 };
713
714 /**
715  * Implementation of dt_device_operations::dt_statfs
716  *
717  * This function provides statfs status (for precreation) from
718  * corresponding OST. Note: this function only retrieves the status
719  * from the OSP device, and the real statfs RPC happens inside
720  * precreate thread (\see osp_statfs_update). Note: OSP for MDT does
721  * not need to retrieve statfs data for now.
722  *
723  * \param[in] env       execution environment.
724  * \param[in] dev       dt_device of OSP.
725  * \param[out] sfs      holds the retrieved statfs data.
726  *
727  * \retval 0            0 statfs data was retrieved successfully or
728  *                      retrieval was not needed
729  * \retval negative     negative errno if get statfs failed.
730  */
731 static int osp_statfs(const struct lu_env *env, struct dt_device *dev,
732                       struct obd_statfs *sfs, struct obd_statfs_info *info)
733 {
734         struct osp_device *d = dt2osp_dev(dev);
735         struct obd_import *imp = d->opd_obd->u.cli.cl_import;
736
737         ENTRY;
738
739         if (imp->imp_state == LUSTRE_IMP_CLOSED)
740                 RETURN(-ESHUTDOWN);
741
742         if (unlikely(d->opd_imp_active == 0))
743                 RETURN(-ENOTCONN);
744
745         /* return recently updated data */
746         *sfs = d->opd_statfs;
747         if (info) {
748                 info->os_reserved_mb_low = d->opd_reserved_mb_low;
749                 info->os_reserved_mb_high = d->opd_reserved_mb_high;
750         }
751
752         if (d->opd_pre == NULL)
753                 RETURN(0);
754
755         CDEBUG(D_OTHER, "%s: %llu blocks, %llu free, %llu avail, "
756                "%u reserved mb low, %u reserved mb high,"
757                "%llu files, %llu free files\n", d->opd_obd->obd_name,
758                sfs->os_blocks, sfs->os_bfree, sfs->os_bavail,
759                d->opd_reserved_mb_low, d->opd_reserved_mb_high,
760                sfs->os_files, sfs->os_ffree);
761
762
763         if (info && !info->os_enable_pre)
764                 RETURN(0);
765
766         /*
767          * The layer above osp (usually lod) can use f_precreated to
768          * estimate how many objects are available for immediate usage.
769          */
770         spin_lock(&d->opd_pre_lock);
771         sfs->os_fprecreated = osp_fid_diff(&d->opd_pre_last_created_fid,
772                                            &d->opd_pre_used_fid);
773         sfs->os_fprecreated -= d->opd_pre_reserved;
774         LASSERTF(sfs->os_fprecreated <= OST_MAX_PRECREATE * 2,
775                  "last_created "DFID", next_fid "DFID", reserved %llu\n",
776                  PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_pre_used_fid),
777                  d->opd_pre_reserved);
778         spin_unlock(&d->opd_pre_lock);
779         RETURN(0);
780 }
781
782 static int osp_sync_timeout(void *data)
783 {
784         return 1;
785 }
786
787 /**
788  * Implementation of dt_device_operations::dt_sync
789  *
790  * This function synchronizes the OSP cache to the remote target. It wakes
791  * up unlink log threads and sends out unlink records to the remote OST.
792  *
793  * \param[in] env       execution environment
794  * \param[in] dev       dt_device of OSP
795  *
796  * \retval 0            0 if synchronization succeeds
797  * \retval negative     negative errno if synchronization fails
798  */
799 static int osp_sync(const struct lu_env *env, struct dt_device *dev)
800 {
801         struct osp_device *d = dt2osp_dev(dev);
802         struct l_wait_info lwi = { 0 };
803         time64_t start = ktime_get_seconds();
804         int recs, rc = 0;
805         u64 old;
806
807         ENTRY;
808
809         /* No Sync between MDTs yet. */
810         if (d->opd_connect_mdt)
811                 RETURN(0);
812
813         recs = atomic_read(&d->opd_sync_changes);
814         old = atomic64_read(&d->opd_sync_processed_recs);
815
816         osp_sync_force(env, dt2osp_dev(dev));
817
818         if (unlikely(d->opd_imp_active == 0))
819                 RETURN(-ENOTCONN);
820
821         down_write(&d->opd_async_updates_rwsem);
822
823         CDEBUG(D_OTHER, "%s: async updates %d\n", d->opd_obd->obd_name,
824                atomic_read(&d->opd_async_updates_count));
825
826         /* make sure the connection is fine */
827         lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout), osp_sync_timeout, d);
828         rc = l_wait_event(d->opd_sync_barrier_waitq,
829                           atomic_read(&d->opd_async_updates_count) == 0,
830                           &lwi);
831         up_write(&d->opd_async_updates_rwsem);
832         if (rc != 0)
833                 GOTO(out, rc);
834
835         CDEBUG(D_CACHE, "%s: processed %llu\n", d->opd_obd->obd_name,
836                (unsigned long long)atomic64_read(&d->opd_sync_processed_recs));
837
838         while (atomic64_read(&d->opd_sync_processed_recs) < old + recs) {
839                 __u64 last = atomic64_read(&d->opd_sync_processed_recs);
840                 /* make sure the connection is fine */
841                 lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout),
842                                   osp_sync_timeout, d);
843                 l_wait_event(d->opd_sync_barrier_waitq,
844                              atomic64_read(&d->opd_sync_processed_recs)
845                              >= old + recs, &lwi);
846
847                 if (atomic64_read(&d->opd_sync_processed_recs) >= old + recs)
848                         break;
849
850                 if (atomic64_read(&d->opd_sync_processed_recs) != last) {
851                         /* some progress have been made,
852                          * keep trying... */
853                         continue;
854                 }
855
856                 /* no changes and expired, something is wrong */
857                 GOTO(out, rc = -ETIMEDOUT);
858         }
859
860         /* block new processing (barrier>0 - few callers are possible */
861         atomic_inc(&d->opd_sync_barrier);
862
863         CDEBUG(D_CACHE, "%s: %u in flight\n", d->opd_obd->obd_name,
864                atomic_read(&d->opd_sync_rpcs_in_flight));
865
866         /* wait till all-in-flight are replied, so executed by the target */
867         /* XXX: this is used by LFSCK at the moment, which doesn't require
868          *      all the changes to be committed, but in general it'd be
869          *      better to wait till commit */
870         while (atomic_read(&d->opd_sync_rpcs_in_flight) > 0) {
871                 old = atomic_read(&d->opd_sync_rpcs_in_flight);
872
873                 lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout),
874                                   osp_sync_timeout, d);
875                 l_wait_event(d->opd_sync_barrier_waitq,
876                              atomic_read(&d->opd_sync_rpcs_in_flight) == 0,
877                              &lwi);
878
879                 if (atomic_read(&d->opd_sync_rpcs_in_flight) == 0)
880                         break;
881
882                 if (atomic_read(&d->opd_sync_rpcs_in_flight) != old) {
883                         /* some progress have been made */
884                         continue;
885                 }
886
887                 /* no changes and expired, something is wrong */
888                 GOTO(out, rc = -ETIMEDOUT);
889         }
890
891 out:
892         /* resume normal processing (barrier=0) */
893         atomic_dec(&d->opd_sync_barrier);
894         osp_sync_check_for_work(d);
895
896         CDEBUG(D_CACHE, "%s: done in %lld: rc = %d\n", d->opd_obd->obd_name,
897                ktime_get_seconds() - start, rc);
898
899         RETURN(rc);
900 }
901
902 const struct dt_device_operations osp_dt_ops = {
903         .dt_statfs       = osp_statfs,
904         .dt_sync         = osp_sync,
905         .dt_trans_create = osp_trans_create,
906         .dt_trans_start  = osp_trans_start,
907         .dt_trans_stop   = osp_trans_stop,
908         .dt_trans_cb_add   = osp_trans_cb_add,
909 };
910
911 /**
912  * Connect OSP to local OSD.
913  *
914  * Locate the local OSD referenced by \a nextdev and connect to it. Sometimes,
915  * OSP needs to access the local OSD to store some information. For example,
916  * during precreate, it needs to update last used OID and sequence file
917  * (LAST_SEQ) in local OSD.
918  *
919  * \param[in] env       execution environment
920  * \param[in] osp       OSP device
921  * \param[in] nextdev   the name of local OSD
922  *
923  * \retval 0            0 connection succeeded
924  * \retval negative     negative errno connection failed
925  */
926 static int osp_connect_to_osd(const struct lu_env *env, struct osp_device *osp,
927                               const char *nextdev)
928 {
929         struct obd_connect_data *data = NULL;
930         struct obd_device       *obd;
931         int                      rc;
932
933         ENTRY;
934
935         LASSERT(osp->opd_storage_exp == NULL);
936
937         OBD_ALLOC_PTR(data);
938         if (data == NULL)
939                 RETURN(-ENOMEM);
940
941         obd = class_name2obd(nextdev);
942         if (obd == NULL) {
943                 CERROR("%s: can't locate next device: %s\n",
944                        osp->opd_obd->obd_name, nextdev);
945                 GOTO(out, rc = -ENOTCONN);
946         }
947
948         rc = obd_connect(env, &osp->opd_storage_exp, obd, &obd->obd_uuid, data,
949                          NULL);
950         if (rc) {
951                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
952                        osp->opd_obd->obd_name, nextdev, rc);
953                 GOTO(out, rc);
954         }
955
956         osp->opd_dt_dev.dd_lu_dev.ld_site =
957                 osp->opd_storage_exp->exp_obd->obd_lu_dev->ld_site;
958         LASSERT(osp->opd_dt_dev.dd_lu_dev.ld_site);
959         osp->opd_storage = lu2dt_dev(osp->opd_storage_exp->exp_obd->obd_lu_dev);
960
961 out:
962         OBD_FREE_PTR(data);
963         RETURN(rc);
964 }
965
966 /**
967  * Determine if the lock needs to be cancelled
968  *
969  * Determine if the unused lock should be cancelled before replay, see
970  * (ldlm_cancel_no_wait_policy()). Currently, only inode bits lock exists
971  * between MDTs.
972  *
973  * \param[in] lock      lock to be checked.
974  *
975  * \retval              1 if the lock needs to be cancelled before replay.
976  * \retval              0 if the lock does not need to be cancelled before
977  *                      replay.
978  */
979 static int osp_cancel_weight(struct ldlm_lock *lock)
980 {
981         if (lock->l_resource->lr_type != LDLM_IBITS)
982                 RETURN(0);
983
984         RETURN(1);
985 }
986
987 /**
988  * Initialize OSP device according to the parameters in the configuration
989  * log \a cfg.
990  *
991  * Reconstruct the local device name from the configuration profile, and
992  * initialize necessary threads and structures according to the OSP type
993  * (MDT or OST).
994  *
995  * Since there is no record in the MDT configuration for the local disk
996  * device, we have to extract this from elsewhere in the profile.
997  * The only information we get at setup is from the OSC records:
998  * setup 0:{fsname}-OSTxxxx-osc[-MDTxxxx] 1:lustre-OST0000_UUID 2:NID
999  *
1000  * Note: configs generated by Lustre 1.8 are missing the -MDTxxxx part,
1001  * so, we need to reconstruct the name of the underlying OSD from this:
1002  * {fsname}-{svname}-osd, for example "lustre-MDT0000-osd".
1003  *
1004  * \param[in] env       execution environment
1005  * \param[in] osp       OSP device
1006  * \param[in] ldt       lu device type of OSP
1007  * \param[in] cfg       configuration log
1008  *
1009  * \retval 0            0 if OSP initialization succeeded.
1010  * \retval negative     negative errno if OSP initialization failed.
1011  */
1012 static int osp_init0(const struct lu_env *env, struct osp_device *osp,
1013                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
1014 {
1015         struct obd_device       *obd;
1016         struct obd_import       *imp;
1017         char                    *src, *tgt, *mdt, *osdname = NULL;
1018         int                     rc;
1019         long                    idx;
1020
1021         ENTRY;
1022
1023         mutex_init(&osp->opd_async_requests_mutex);
1024         INIT_LIST_HEAD(&osp->opd_async_updates);
1025         init_rwsem(&osp->opd_async_updates_rwsem);
1026         atomic_set(&osp->opd_async_updates_count, 0);
1027
1028         obd = class_name2obd(lustre_cfg_string(cfg, 0));
1029         if (obd == NULL) {
1030                 CERROR("Cannot find obd with name %s\n",
1031                        lustre_cfg_string(cfg, 0));
1032                 RETURN(-ENODEV);
1033         }
1034         osp->opd_obd = obd;
1035
1036         src = lustre_cfg_string(cfg, 0);
1037         if (src == NULL)
1038                 RETURN(-EINVAL);
1039
1040         tgt = strrchr(src, '-');
1041         if (tgt == NULL) {
1042                 CERROR("%s: invalid target name %s: rc = %d\n",
1043                        osp->opd_obd->obd_name, lustre_cfg_string(cfg, 0),
1044                        -EINVAL);
1045                 RETURN(-EINVAL);
1046         }
1047
1048         if (strncmp(tgt, "-osc", 4) == 0) {
1049                 /* Old OSC name fsname-OSTXXXX-osc */
1050                 for (tgt--; tgt > src && *tgt != '-'; tgt--)
1051                         ;
1052                 if (tgt == src) {
1053                         CERROR("%s: invalid target name %s: rc = %d\n",
1054                                osp->opd_obd->obd_name,
1055                                lustre_cfg_string(cfg, 0), -EINVAL);
1056                         RETURN(-EINVAL);
1057                 }
1058
1059                 if (strncmp(tgt, "-OST", 4) != 0) {
1060                         CERROR("%s: invalid target name %s: rc = %d\n",
1061                                osp->opd_obd->obd_name,
1062                                lustre_cfg_string(cfg, 0), -EINVAL);
1063                         RETURN(-EINVAL);
1064                 }
1065
1066                 idx = simple_strtol(tgt + 4, &mdt, 16);
1067                 if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
1068                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1069                                osp->opd_obd->obd_name, src, -EINVAL);
1070                         RETURN(-EINVAL);
1071                 }
1072                 osp->opd_index = idx;
1073                 osp->opd_group = 0;
1074                 idx = tgt - src;
1075         } else {
1076                 /* New OSC name fsname-OSTXXXX-osc-MDTXXXX */
1077                 if (strncmp(tgt, "-MDT", 4) != 0 &&
1078                     strncmp(tgt, "-OST", 4) != 0) {
1079                         CERROR("%s: invalid target name %s: rc = %d\n",
1080                                osp->opd_obd->obd_name,
1081                                lustre_cfg_string(cfg, 0), -EINVAL);
1082                         RETURN(-EINVAL);
1083                 }
1084
1085                 idx = simple_strtol(tgt + 4, &mdt, 16);
1086                 if (*mdt != '\0' || idx > INT_MAX || idx < 0) {
1087                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1088                                osp->opd_obd->obd_name, src, -EINVAL);
1089                         RETURN(-EINVAL);
1090                 }
1091
1092                 /* Get MDT index from the name and set it to opd_group,
1093                  * which will be used by OSP to connect with OST */
1094                 osp->opd_group = idx;
1095                 if (tgt - src <= 12) {
1096                         CERROR("%s: invalid mdt index from %s: rc =%d\n",
1097                                osp->opd_obd->obd_name,
1098                                lustre_cfg_string(cfg, 0), -EINVAL);
1099                         RETURN(-EINVAL);
1100                 }
1101
1102                 if (strncmp(tgt - 12, "-MDT", 4) == 0)
1103                         osp->opd_connect_mdt = 1;
1104
1105                 idx = simple_strtol(tgt - 8, &mdt, 16);
1106                 if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
1107                         CERROR("%s: invalid OST index in '%s': rc =%d\n",
1108                                osp->opd_obd->obd_name, src, -EINVAL);
1109                         RETURN(-EINVAL);
1110                 }
1111
1112                 osp->opd_index = idx;
1113                 idx = tgt - src - 12;
1114         }
1115         /* check the fsname length, and after this everything else will fit */
1116         if (idx > MTI_NAME_MAXLEN) {
1117                 CERROR("%s: fsname too long in '%s': rc = %d\n",
1118                        osp->opd_obd->obd_name, src, -EINVAL);
1119                 RETURN(-EINVAL);
1120         }
1121
1122         OBD_ALLOC(osdname, MAX_OBD_NAME);
1123         if (osdname == NULL)
1124                 RETURN(-ENOMEM);
1125
1126         memcpy(osdname, src, idx); /* copy just the fsname part */
1127         osdname[idx] = '\0';
1128
1129         mdt = strstr(mdt, "-MDT");
1130         if (mdt == NULL) /* 1.8 configs don't have "-MDT0000" at the end */
1131                 strcat(osdname, "-MDT0000");
1132         else
1133                 strcat(osdname, mdt);
1134         strcat(osdname, "-osd");
1135         CDEBUG(D_HA, "%s: connect to %s (%s)\n", obd->obd_name, osdname, src);
1136
1137         osp_init_rpc_lock(osp);
1138
1139         osp->opd_dt_dev.dd_lu_dev.ld_ops = &osp_lu_ops;
1140         osp->opd_dt_dev.dd_ops = &osp_dt_ops;
1141
1142         obd->obd_lu_dev = &osp->opd_dt_dev.dd_lu_dev;
1143
1144         rc = osp_connect_to_osd(env, osp, osdname);
1145         if (rc)
1146                 GOTO(out_fini, rc);
1147
1148         rc = ptlrpcd_addref();
1149         if (rc)
1150                 GOTO(out_disconnect, rc);
1151
1152         rc = client_obd_setup(obd, cfg);
1153         if (rc) {
1154                 CERROR("%s: can't setup obd: rc = %d\n", osp->opd_obd->obd_name,
1155                        rc);
1156                 GOTO(out_ref, rc);
1157         }
1158
1159         osp_tunables_init(osp);
1160
1161         rc = obd_fid_init(osp->opd_obd, NULL, osp->opd_connect_mdt ?
1162                           LUSTRE_SEQ_METADATA : LUSTRE_SEQ_DATA);
1163         if (rc) {
1164                 CERROR("%s: fid init error: rc = %d\n",
1165                        osp->opd_obd->obd_name, rc);
1166                 GOTO(out_proc, rc);
1167         }
1168
1169         if (!osp->opd_connect_mdt) {
1170                 /* Initialize last id from the storage - will be
1171                  * used in orphan cleanup. */
1172                 if (!osp->opd_storage->dd_rdonly) {
1173                         rc = osp_last_used_init(env, osp);
1174                         if (rc)
1175                                 GOTO(out_fid, rc);
1176                 }
1177
1178                 /* Initialize precreation thread, it handles new
1179                  * connections as well. */
1180                 rc = osp_init_precreate(osp);
1181                 if (rc)
1182                         GOTO(out_last_used, rc);
1183
1184                 /*
1185                  * Initialize synhronization mechanism taking
1186                  * care of propogating changes to OST in near
1187                  * transactional manner.
1188                  */
1189                 rc = osp_sync_init(env, osp);
1190                 if (rc < 0)
1191                         GOTO(out_precreat, rc);
1192         } else {
1193                 osp->opd_got_disconnected = 1;
1194                 rc = osp_update_init(osp);
1195                 if (rc != 0)
1196                         GOTO(out_fid, rc);
1197         }
1198
1199         rc = osp_init_statfs(osp);
1200         if (rc)
1201                 GOTO(out_precreat, rc);
1202
1203         ns_register_cancel(obd->obd_namespace, osp_cancel_weight);
1204
1205         /*
1206          * Initiate connect to OST
1207          */
1208         imp = obd->u.cli.cl_import;
1209
1210         rc = ptlrpc_init_import(imp);
1211         if (rc)
1212                 GOTO(out, rc);
1213         if (osdname)
1214                 OBD_FREE(osdname, MAX_OBD_NAME);
1215         RETURN(0);
1216
1217 out:
1218         if (!osp->opd_connect_mdt)
1219                 /* stop sync thread */
1220                 osp_sync_fini(osp);
1221 out_precreat:
1222         /* stop precreate thread */
1223         if (!osp->opd_connect_mdt)
1224                 osp_precreate_fini(osp);
1225         else
1226                 osp_update_fini(env, osp);
1227 out_last_used:
1228         if (!osp->opd_connect_mdt)
1229                 osp_last_used_fini(env, osp);
1230 out_fid:
1231         obd_fid_fini(osp->opd_obd);
1232 out_proc:
1233         osp_tunables_fini(osp);
1234         client_obd_cleanup(obd);
1235 out_ref:
1236         ptlrpcd_decref();
1237 out_disconnect:
1238         obd_disconnect(osp->opd_storage_exp);
1239 out_fini:
1240         if (osdname)
1241                 OBD_FREE(osdname, MAX_OBD_NAME);
1242         RETURN(rc);
1243 }
1244
1245 /**
1246  * Implementation of lu_device_type_operations::ldto_device_free
1247  *
1248  * Free the OSP device in memory.  No return value is needed for now,
1249  * so always return NULL to comply with the interface.
1250  *
1251  * \param[in] env       execution environment
1252  * \param[in] lu        lu_device of OSP
1253  *
1254  * \retval NULL         NULL unconditionally
1255  */
1256 static struct lu_device *osp_device_free(const struct lu_env *env,
1257                                          struct lu_device *lu)
1258 {
1259         struct osp_device *osp = lu2osp_dev(lu);
1260
1261         if (atomic_read(&lu->ld_ref) && lu->ld_site) {
1262                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
1263                 lu_site_print(env, lu->ld_site, &msgdata, lu_cdebug_printer);
1264         }
1265         dt_device_fini(&osp->opd_dt_dev);
1266         OBD_FREE_PTR(osp);
1267
1268         return NULL;
1269 }
1270
1271 /**
1272  * Implementation of lu_device_type_operations::ldto_device_alloc
1273  *
1274  * This function allocates and initializes OSP device in memory according to
1275  * the config log.
1276  *
1277  * \param[in] env       execution environment
1278  * \param[in] type      device type of OSP
1279  * \param[in] lcfg      config log
1280  *
1281  * \retval pointer              the pointer of allocated OSP if succeed.
1282  * \retval ERR_PTR(errno)       ERR_PTR(errno) if failed.
1283  */
1284 static struct lu_device *osp_device_alloc(const struct lu_env *env,
1285                                           struct lu_device_type *type,
1286                                           struct lustre_cfg *lcfg)
1287 {
1288         struct osp_device *osp;
1289         struct lu_device  *ld;
1290
1291         OBD_ALLOC_PTR(osp);
1292         if (osp == NULL) {
1293                 ld = ERR_PTR(-ENOMEM);
1294         } else {
1295                 int rc;
1296
1297                 ld = osp2lu_dev(osp);
1298                 dt_device_init(&osp->opd_dt_dev, type);
1299                 rc = osp_init0(env, osp, type, lcfg);
1300                 if (rc != 0) {
1301                         osp_device_free(env, ld);
1302                         ld = ERR_PTR(rc);
1303                 }
1304         }
1305         return ld;
1306 }
1307
1308 /**
1309  * Implementation of lu_device_type_operations::ldto_device_fini
1310  *
1311  * This function cleans up the OSP device, i.e. release and free those
1312  * attached items in osp_device.
1313  *
1314  * \param[in] env       execution environment
1315  * \param[in] ld        lu_device of OSP
1316  *
1317  * \retval NULL                 NULL if cleanup succeeded.
1318  * \retval ERR_PTR(errno)       ERR_PTR(errno) if cleanup failed.
1319  */
1320 static struct lu_device *osp_device_fini(const struct lu_env *env,
1321                                          struct lu_device *ld)
1322 {
1323         struct osp_device *osp = lu2osp_dev(ld);
1324         int                rc;
1325
1326         ENTRY;
1327
1328         if (osp->opd_async_requests != NULL) {
1329                 osp_update_request_destroy(env, osp->opd_async_requests);
1330                 osp->opd_async_requests = NULL;
1331         }
1332
1333         if (osp->opd_storage_exp) {
1334                 /* wait for the commit callbacks to complete */
1335                 wait_event(osp->opd_sync_waitq,
1336                           atomic_read(&osp->opd_commits_registered) == 0);
1337                 obd_disconnect(osp->opd_storage_exp);
1338         }
1339
1340         LASSERT(osp->opd_obd);
1341
1342         rc = client_obd_cleanup(osp->opd_obd);
1343         if (rc != 0) {
1344                 ptlrpcd_decref();
1345                 RETURN(ERR_PTR(rc));
1346         }
1347
1348         osp_tunables_fini(osp);
1349
1350         ptlrpcd_decref();
1351
1352         RETURN(NULL);
1353 }
1354
1355 /**
1356  * Implementation of obd_ops::o_reconnect
1357  *
1358  * This function is empty and does not need to do anything for now.
1359  */
1360 static int osp_reconnect(const struct lu_env *env,
1361                          struct obd_export *exp, struct obd_device *obd,
1362                          struct obd_uuid *cluuid,
1363                          struct obd_connect_data *data,
1364                          void *localdata)
1365 {
1366         return 0;
1367 }
1368
1369 /*
1370  * Implementation of obd_ops::o_connect
1371  *
1372  * Connect OSP to the remote target (MDT or OST). Allocate the
1373  * export and return it to the LOD, which calls this function
1374  * for each OSP to connect it to the remote target. This function
1375  * is currently only called once per OSP.
1376  *
1377  * \param[in] env       execution environment
1378  * \param[out] exp      export connected to OSP
1379  * \param[in] obd       OSP device
1380  * \param[in] cluuid    OSP device client uuid
1381  * \param[in] data      connect_data to be used to connect to the remote
1382  *                      target
1383  * \param[in] localdata necessary for the API interface, but not used in
1384  *                      this function
1385  *
1386  * \retval 0            0 if the connection succeeded.
1387  * \retval negative     negative errno if the connection failed.
1388  */
1389 static int osp_obd_connect(const struct lu_env *env, struct obd_export **exp,
1390                            struct obd_device *obd, struct obd_uuid *cluuid,
1391                            struct obd_connect_data *data, void *localdata)
1392 {
1393         struct osp_device       *osp = lu2osp_dev(obd->obd_lu_dev);
1394         struct obd_connect_data *ocd;
1395         struct obd_import       *imp;
1396         struct lustre_handle     conn;
1397         int                      rc;
1398
1399         ENTRY;
1400
1401         CDEBUG(D_CONFIG, "connect #%d\n", osp->opd_connects);
1402
1403         rc = class_connect(&conn, obd, cluuid);
1404         if (rc)
1405                 RETURN(rc);
1406
1407         *exp = class_conn2export(&conn);
1408         /* Why should there ever be more than 1 connect? */
1409         osp->opd_connects++;
1410         LASSERT(osp->opd_connects == 1);
1411
1412         osp->opd_exp = *exp;
1413
1414         imp = osp->opd_obd->u.cli.cl_import;
1415         imp->imp_dlm_handle = conn;
1416
1417         LASSERT(data != NULL);
1418         LASSERT(data->ocd_connect_flags & OBD_CONNECT_INDEX);
1419         ocd = &imp->imp_connect_data;
1420         *ocd = *data;
1421
1422         imp->imp_connect_flags_orig = ocd->ocd_connect_flags;
1423         imp->imp_connect_flags2_orig = ocd->ocd_connect_flags2;
1424
1425         ocd->ocd_version = LUSTRE_VERSION_CODE;
1426         ocd->ocd_index = data->ocd_index;
1427
1428         rc = ptlrpc_connect_import(imp);
1429         if (rc) {
1430                 CERROR("%s: can't connect obd: rc = %d\n", obd->obd_name, rc);
1431                 GOTO(out, rc);
1432         } else {
1433                 osp->opd_obd->u.cli.cl_seq->lcs_exp =
1434                                 class_export_get(osp->opd_exp);
1435         }
1436
1437         ptlrpc_pinger_add_import(imp);
1438 out:
1439         RETURN(rc);
1440 }
1441
1442 /**
1443  * Implementation of obd_ops::o_disconnect
1444  *
1445  * Disconnect the export for the OSP.  This is called by LOD to release the
1446  * OSP during cleanup (\see lod_del_device()). The OSP will be released after
1447  * the export is released.
1448  *
1449  * \param[in] exp       export to be disconnected.
1450  *
1451  * \retval 0            0 if disconnection succeed
1452  * \retval negative     negative errno if disconnection failed
1453  */
1454 static int osp_obd_disconnect(struct obd_export *exp)
1455 {
1456         struct obd_device *obd = exp->exp_obd;
1457         struct osp_device *osp = lu2osp_dev(obd->obd_lu_dev);
1458         int                rc;
1459         ENTRY;
1460
1461         /* Only disconnect the underlying layers on the final disconnect. */
1462         LASSERT(osp->opd_connects == 1);
1463         osp->opd_connects--;
1464
1465         rc = class_disconnect(exp);
1466         if (rc) {
1467                 CERROR("%s: class disconnect error: rc = %d\n",
1468                        obd->obd_name, rc);
1469                 RETURN(rc);
1470         }
1471
1472         /* destroy the device */
1473         class_manual_cleanup(obd);
1474
1475         RETURN(rc);
1476 }
1477
1478 /**
1479  * Implementation of obd_ops::o_statfs
1480  *
1481  * Send a RPC to the remote target to get statfs status. This is only used
1482  * in lprocfs helpers by obd_statfs.
1483  *
1484  * \param[in] env       execution environment
1485  * \param[in] exp       connection state from this OSP to the parent (LOD)
1486  *                      device
1487  * \param[out] osfs     hold the statfs result
1488  * \param[in] unused    Not used in this function for now
1489  * \param[in] flags     flags to indicate how OSP will issue the RPC
1490  *
1491  * \retval 0            0 if statfs succeeded.
1492  * \retval negative     negative errno if statfs failed.
1493  */
1494 static int osp_obd_statfs(const struct lu_env *env, struct obd_export *exp,
1495                           struct obd_statfs *osfs, time64_t unused, __u32 flags)
1496 {
1497         struct obd_statfs       *msfs;
1498         struct ptlrpc_request   *req;
1499         struct obd_import       *imp = NULL;
1500         int                      rc;
1501
1502         ENTRY;
1503
1504         /* Since the request might also come from lprocfs, so we need
1505          * sync this with client_disconnect_export Bug15684 */
1506         down_read(&exp->exp_obd->u.cli.cl_sem);
1507         if (exp->exp_obd->u.cli.cl_import)
1508                 imp = class_import_get(exp->exp_obd->u.cli.cl_import);
1509         up_read(&exp->exp_obd->u.cli.cl_sem);
1510         if (!imp)
1511                 RETURN(-ENODEV);
1512
1513         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
1514
1515         class_import_put(imp);
1516
1517         if (req == NULL)
1518                 RETURN(-ENOMEM);
1519
1520         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
1521         if (rc) {
1522                 ptlrpc_request_free(req);
1523                 RETURN(rc);
1524         }
1525         ptlrpc_request_set_replen(req);
1526         req->rq_request_portal = OST_CREATE_PORTAL;
1527         ptlrpc_at_set_req_timeout(req);
1528
1529         if (flags & OBD_STATFS_NODELAY) {
1530                 /* procfs requests not want stat in wait for avoid deadlock */
1531                 req->rq_no_resend = 1;
1532                 req->rq_no_delay = 1;
1533         }
1534
1535         rc = ptlrpc_queue_wait(req);
1536         if (rc)
1537                 GOTO(out, rc);
1538
1539         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1540         if (msfs == NULL)
1541                 GOTO(out, rc = -EPROTO);
1542
1543         *osfs = *msfs;
1544
1545         EXIT;
1546 out:
1547         ptlrpc_req_finished(req);
1548         return rc;
1549 }
1550
1551 /**
1552  * Implementation of obd_ops::o_import_event
1553  *
1554  * This function is called when some related import event happens. It will
1555  * mark the necessary flags according to the event and notify the necessary
1556  * threads (mainly precreate thread).
1557  *
1558  * \param[in] obd       OSP OBD device
1559  * \param[in] imp       import attached from OSP to remote (OST/MDT) service
1560  * \param[in] event     event related to remote service (IMP_EVENT_*)
1561  *
1562  * \retval 0            0 if the event handling succeeded.
1563  * \retval negative     negative errno if the event handling failed.
1564  */
1565 static int osp_import_event(struct obd_device *obd, struct obd_import *imp,
1566                             enum obd_import_event event)
1567 {
1568         struct osp_device *d = lu2osp_dev(obd->obd_lu_dev);
1569         int rc;
1570
1571         switch (event) {
1572         case IMP_EVENT_DISCON:
1573                 d->opd_got_disconnected = 1;
1574                 d->opd_imp_connected = 0;
1575                 if (d->opd_connect_mdt)
1576                         break;
1577
1578                 if (d->opd_pre != NULL) {
1579                         osp_pre_update_status(d, -ENODEV);
1580                         wake_up(&d->opd_pre_waitq);
1581                 }
1582
1583                 CDEBUG(D_HA, "got disconnected\n");
1584                 break;
1585         case IMP_EVENT_INACTIVE:
1586                 d->opd_imp_active = 0;
1587                 d->opd_imp_connected = 0;
1588                 d->opd_obd->obd_inactive = 1;
1589                 if (d->opd_connect_mdt)
1590                         break;
1591                 if (d->opd_pre != NULL) {
1592                         /* Import is invalid, we can`t get stripes so
1593                          * wakeup waiters */
1594                         rc = imp->imp_deactive ? -ESHUTDOWN : -ENODEV;
1595                         osp_pre_update_status(d, rc);
1596                         wake_up(&d->opd_pre_waitq);
1597                 }
1598
1599                 CDEBUG(D_HA, "got inactive\n");
1600                 break;
1601         case IMP_EVENT_ACTIVE:
1602                 d->opd_imp_active = 1;
1603
1604                 if (d->opd_got_disconnected)
1605                         d->opd_new_connection = 1;
1606                 d->opd_imp_connected = 1;
1607                 d->opd_imp_seen_connected = 1;
1608                 d->opd_obd->obd_inactive = 0;
1609                 wake_up(&d->opd_pre_waitq);
1610                 if (d->opd_connect_mdt)
1611                         break;
1612
1613                 osp_sync_check_for_work(d);
1614                 CDEBUG(D_HA, "got connected\n");
1615                 break;
1616         case IMP_EVENT_INVALIDATE:
1617                 if (d->opd_connect_mdt)
1618                         osp_invalidate_request(d);
1619
1620                 if (obd->obd_namespace == NULL)
1621                         break;
1622                 ldlm_namespace_cleanup(obd->obd_namespace, LDLM_FL_LOCAL_ONLY);
1623                 break;
1624         case IMP_EVENT_OCD:
1625         case IMP_EVENT_DEACTIVATE:
1626         case IMP_EVENT_ACTIVATE:
1627                 break;
1628         default:
1629                 CERROR("%s: unsupported import event: %#x\n",
1630                        obd->obd_name, event);
1631         }
1632         return 0;
1633 }
1634
1635 /**
1636  * Implementation of obd_ops: o_iocontrol
1637  *
1638  * This function is the ioctl handler for OSP. Note: lctl will access the OSP
1639  * directly by ioctl, instead of through the MDS stack.
1640  *
1641  * param[in] cmd        ioctl command.
1642  * param[in] exp        export of this OSP.
1643  * param[in] len        data length of \a karg.
1644  * param[in] karg       input argument which is packed as
1645  *                      obd_ioctl_data
1646  * param[out] uarg      pointer to userspace buffer (must access by
1647  *                      copy_to_user()).
1648  *
1649  * \retval 0            0 if the ioctl handling succeeded.
1650  * \retval negative     negative errno if the ioctl handling failed.
1651  */
1652 static int osp_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1653                          void *karg, void __user *uarg)
1654 {
1655         struct obd_device       *obd = exp->exp_obd;
1656         struct osp_device       *d;
1657         struct obd_ioctl_data   *data = karg;
1658         int                      rc = 0;
1659
1660         ENTRY;
1661
1662         LASSERT(obd->obd_lu_dev);
1663         d = lu2osp_dev(obd->obd_lu_dev);
1664         LASSERT(d->opd_dt_dev.dd_ops == &osp_dt_ops);
1665
1666         if (!try_module_get(THIS_MODULE)) {
1667                 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
1668                        module_name(THIS_MODULE));
1669                 return -EINVAL;
1670         }
1671
1672         switch (cmd) {
1673         case OBD_IOC_CLIENT_RECOVER:
1674                 rc = ptlrpc_recover_import(obd->u.cli.cl_import,
1675                                            data->ioc_inlbuf1, 0);
1676                 if (rc > 0)
1677                         rc = 0;
1678                 break;
1679         case IOC_OSC_SET_ACTIVE:
1680                 rc = ptlrpc_set_import_active(obd->u.cli.cl_import,
1681                                               data->ioc_offset);
1682                 break;
1683         default:
1684                 CERROR("%s: unrecognized ioctl %#x by %s\n", obd->obd_name,
1685                        cmd, current_comm());
1686                 rc = -ENOTTY;
1687         }
1688         module_put(THIS_MODULE);
1689         return rc;
1690 }
1691
1692
1693 /**
1694  * Implementation of obd_ops::o_get_info
1695  *
1696  * Retrieve information by key. Retrieval starts from the top layer
1697  * (MDT) of the MDS stack and traverses the stack by calling the
1698  * obd_get_info() method of the next sub-layer.
1699  *
1700  * \param[in] env       execution environment
1701  * \param[in] exp       export of this OSP
1702  * \param[in] keylen    length of \a key
1703  * \param[in] key       the key
1704  * \param[out] vallen   length of \a val
1705  * \param[out] val      holds the value returned by the key
1706  *
1707  * \retval 0            0 if getting information succeeded.
1708  * \retval negative     negative errno if getting information failed.
1709  */
1710 static int osp_obd_get_info(const struct lu_env *env, struct obd_export *exp,
1711                             __u32 keylen, void *key, __u32 *vallen, void *val)
1712 {
1713         int rc = -EINVAL;
1714
1715         if (KEY_IS(KEY_OSP_CONNECTED)) {
1716                 struct obd_device       *obd = exp->exp_obd;
1717                 struct osp_device       *osp;
1718
1719                 if (!obd->obd_set_up || obd->obd_stopping)
1720                         RETURN(-EAGAIN);
1721
1722                 osp = lu2osp_dev(obd->obd_lu_dev);
1723                 LASSERT(osp);
1724                 /*
1725                  * 1.8/2.0 behaviour is that OST being connected once at least
1726                  * is considered "healthy". and one "healthy" OST is enough to
1727                  * allow lustre clients to connect to MDS
1728                  */
1729                 RETURN(!osp->opd_imp_seen_connected);
1730         }
1731
1732         RETURN(rc);
1733 }
1734
1735 static int osp_obd_set_info_async(const struct lu_env *env,
1736                                   struct obd_export *exp,
1737                                   u32 keylen, void *key,
1738                                   u32 vallen, void *val,
1739                                   struct ptlrpc_request_set *set)
1740 {
1741         struct obd_device       *obd = exp->exp_obd;
1742         struct obd_import       *imp = obd->u.cli.cl_import;
1743         struct osp_device       *osp;
1744         struct ptlrpc_request   *req;
1745         char                    *tmp;
1746         int                      rc;
1747
1748         if (KEY_IS(KEY_SPTLRPC_CONF)) {
1749                 sptlrpc_conf_client_adapt(exp->exp_obd);
1750                 RETURN(0);
1751         }
1752
1753         LASSERT(set != NULL);
1754         if (!obd->obd_set_up || obd->obd_stopping)
1755                 RETURN(-EAGAIN);
1756         osp = lu2osp_dev(obd->obd_lu_dev);
1757
1758         req = ptlrpc_request_alloc(imp, &RQF_OBD_SET_INFO);
1759         if (req == NULL)
1760                 RETURN(-ENOMEM);
1761
1762         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
1763                              RCL_CLIENT, keylen);
1764         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL,
1765                              RCL_CLIENT, vallen);
1766         if (osp->opd_connect_mdt)
1767                 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SET_INFO);
1768         else
1769                 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SET_INFO);
1770         if (rc) {
1771                 ptlrpc_request_free(req);
1772                 RETURN(rc);
1773         }
1774
1775         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
1776         memcpy(tmp, key, keylen);
1777         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
1778         memcpy(tmp, val, vallen);
1779
1780         ptlrpc_request_set_replen(req);
1781         ptlrpc_set_add_req(set, req);
1782         ptlrpc_check_set(NULL, set);
1783
1784         RETURN(0);
1785 }
1786
1787 /**
1788  * Implementation of obd_ops: o_fid_alloc
1789  *
1790  * Allocate a FID. There are two cases in which OSP performs
1791  * FID allocation.
1792  *
1793  * 1. FID precreation for data objects, which is done in
1794  *    osp_precreate_fids() instead of this function.
1795  * 2. FID allocation for each sub-stripe of a striped directory.
1796  *    Similar to other FID clients, OSP requests the sequence
1797  *    from its corresponding remote MDT, which in turn requests
1798  *    sequences from the sequence controller (MDT0).
1799  *
1800  * \param[in] env       execution environment
1801  * \param[in] exp       export of the OSP
1802  * \param[out] fid      FID being allocated
1803  * \param[in] unused    necessary for the interface but unused.
1804  *
1805  * \retval 0            0 FID allocated successfully.
1806  * \retval 1            1 FID allocated successfully and new sequence
1807  *                      requested from seq meta server
1808  * \retval negative     negative errno if FID allocation failed.
1809  */
1810 static int osp_fid_alloc(const struct lu_env *env, struct obd_export *exp,
1811                          struct lu_fid *fid, struct md_op_data *unused)
1812 {
1813         struct client_obd       *cli = &exp->exp_obd->u.cli;
1814         struct osp_device       *osp = lu2osp_dev(exp->exp_obd->obd_lu_dev);
1815         struct lu_client_seq    *seq = cli->cl_seq;
1816         ENTRY;
1817
1818         LASSERT(osp->opd_obd->u.cli.cl_seq != NULL);
1819         /* Sigh, fid client is not ready yet */
1820         LASSERT(osp->opd_obd->u.cli.cl_seq->lcs_exp != NULL);
1821
1822         RETURN(seq_client_alloc_fid(env, seq, fid));
1823 }
1824
1825 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
1826 LU_KEY_INIT_FINI(osp, struct osp_thread_info);
1827 static void osp_key_exit(const struct lu_context *ctx,
1828                          struct lu_context_key *key, void *data)
1829 {
1830         struct osp_thread_info *info = data;
1831
1832         info->osi_attr.la_valid = 0;
1833 }
1834
1835 struct lu_context_key osp_thread_key = {
1836         .lct_tags = LCT_MD_THREAD,
1837         .lct_init = osp_key_init,
1838         .lct_fini = osp_key_fini,
1839         .lct_exit = osp_key_exit
1840 };
1841
1842 /* context key constructor/destructor: mdt_txn_key_init, mdt_txn_key_fini */
1843 LU_KEY_INIT_FINI(osp_txn, struct osp_txn_info);
1844
1845 struct lu_context_key osp_txn_key = {
1846         .lct_tags = LCT_OSP_THREAD,
1847         .lct_init = osp_txn_key_init,
1848         .lct_fini = osp_txn_key_fini
1849 };
1850 LU_TYPE_INIT_FINI(osp, &osp_thread_key, &osp_txn_key);
1851
1852 static struct lu_device_type_operations osp_device_type_ops = {
1853         .ldto_init           = osp_type_init,
1854         .ldto_fini           = osp_type_fini,
1855
1856         .ldto_start          = osp_type_start,
1857         .ldto_stop           = osp_type_stop,
1858
1859         .ldto_device_alloc   = osp_device_alloc,
1860         .ldto_device_free    = osp_device_free,
1861
1862         .ldto_device_fini    = osp_device_fini
1863 };
1864
1865 static struct lu_device_type osp_device_type = {
1866         .ldt_tags     = LU_DEVICE_DT,
1867         .ldt_name     = LUSTRE_OSP_NAME,
1868         .ldt_ops      = &osp_device_type_ops,
1869         .ldt_ctx_tags = LCT_MD_THREAD | LCT_DT_THREAD,
1870 };
1871
1872 static struct obd_ops osp_obd_device_ops = {
1873         .o_owner        = THIS_MODULE,
1874         .o_add_conn     = client_import_add_conn,
1875         .o_del_conn     = client_import_del_conn,
1876         .o_reconnect    = osp_reconnect,
1877         .o_connect      = osp_obd_connect,
1878         .o_disconnect   = osp_obd_disconnect,
1879         .o_get_info     = osp_obd_get_info,
1880         .o_set_info_async = osp_obd_set_info_async,
1881         .o_import_event = osp_import_event,
1882         .o_iocontrol    = osp_iocontrol,
1883         .o_statfs       = osp_obd_statfs,
1884         .o_fid_init     = client_fid_init,
1885         .o_fid_fini     = client_fid_fini,
1886         .o_fid_alloc    = osp_fid_alloc,
1887 };
1888
1889 /**
1890  * Initialize OSP module.
1891  *
1892  * Register device types OSP and Light Weight Proxy (LWP) (\see lwp_dev.c)
1893  * in obd_types (\see class_obd.c).  Initialize procfs for the
1894  * the OSP device.  Note: OSP was called OSC before Lustre 2.4,
1895  * so for compatibility it still uses the name "osc" in procfs.
1896  * This is called at module load time.
1897  *
1898  * \retval 0            0 if initialization succeeds.
1899  * \retval negative     negative errno if initialization failed.
1900  */
1901 static int __init osp_init(void)
1902 {
1903         struct obd_type *sym;
1904         int rc;
1905
1906         rc = lu_kmem_init(osp_caches);
1907         if (rc)
1908                 return rc;
1909
1910         rc = class_register_type(&osp_obd_device_ops, NULL, false, NULL,
1911                                  LUSTRE_OSP_NAME, &osp_device_type);
1912         if (rc != 0) {
1913                 lu_kmem_fini(osp_caches);
1914                 return rc;
1915         }
1916
1917         rc = class_register_type(&lwp_obd_device_ops, NULL, false, NULL,
1918                                  LUSTRE_LWP_NAME, &lwp_device_type);
1919         if (rc != 0) {
1920                 class_unregister_type(LUSTRE_OSP_NAME);
1921                 lu_kmem_fini(osp_caches);
1922                 return rc;
1923         }
1924
1925         /* create "osc" entry for compatibility purposes */
1926         sym = class_add_symlinks(LUSTRE_OSC_NAME, true);
1927         if (IS_ERR(sym)) {
1928                 rc = PTR_ERR(sym);
1929                 /* does real "osc" already exist ? */
1930                 if (rc == -EEXIST)
1931                         rc = 0;
1932         }
1933
1934         return rc;
1935 }
1936
1937 /**
1938  * Finalize OSP module.
1939  *
1940  * This callback is called when kernel unloads OSP module from memory, and
1941  * it will deregister OSP and LWP device type from obd_types (\see class_obd.c).
1942  */
1943 static void __exit osp_exit(void)
1944 {
1945         struct obd_type *sym = class_search_type(LUSTRE_OSC_NAME);
1946
1947         /* if this was never fully initialized by the osc layer
1948          * then we are responsible for freeing this obd_type
1949          */
1950         if (sym) {
1951                 /* final put if we manage this obd type */
1952                 if (sym->typ_sym_filter)
1953                         kobject_put(&sym->typ_kobj);
1954                 /* put reference taken by class_search_type */
1955                 kobject_put(&sym->typ_kobj);
1956         }
1957
1958         class_unregister_type(LUSTRE_LWP_NAME);
1959         class_unregister_type(LUSTRE_OSP_NAME);
1960         lu_kmem_fini(osp_caches);
1961 }
1962
1963 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
1964 MODULE_DESCRIPTION("Lustre OSD Storage Proxy ("LUSTRE_OSP_NAME")");
1965 MODULE_VERSION(LUSTRE_VERSION_STRING);
1966 MODULE_LICENSE("GPL");
1967
1968 module_init(osp_init);
1969 module_exit(osp_exit);