Whamcloud - gitweb
LU-8066 obd: cleanup server sysfs symlinks handling
[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 l_wait_info      lwi = { 0 };
505         struct task_struct      *task;
506
507         ENTRY;
508
509         LASSERT(osp->opd_connect_mdt);
510
511         if (osp->opd_storage->dd_rdonly)
512                 RETURN(0);
513
514         OBD_ALLOC_PTR(osp->opd_update);
515         if (osp->opd_update == NULL)
516                 RETURN(-ENOMEM);
517
518         init_waitqueue_head(&osp->opd_update_thread.t_ctl_waitq);
519         init_waitqueue_head(&osp->opd_update->ou_waitq);
520         spin_lock_init(&osp->opd_update->ou_lock);
521         INIT_LIST_HEAD(&osp->opd_update->ou_list);
522         osp->opd_update->ou_rpc_version = 1;
523         osp->opd_update->ou_version = 1;
524         osp->opd_update->ou_generation = 0;
525
526         /* start thread handling sending updates to the remote MDT */
527         task = kthread_run(osp_send_update_thread, osp,
528                            "osp_up%u-%u", osp->opd_index, osp->opd_group);
529         if (IS_ERR(task)) {
530                 int rc = PTR_ERR(task);
531
532                 OBD_FREE_PTR(osp->opd_update);
533                 osp->opd_update = NULL;
534                 CERROR("%s: can't start precreate thread: rc = %d\n",
535                        osp->opd_obd->obd_name, rc);
536                 RETURN(rc);
537         }
538
539         l_wait_event(osp->opd_update_thread.t_ctl_waitq,
540                      osp_send_update_thread_running(osp) ||
541                      osp_send_update_thread_stopped(osp), &lwi);
542
543         RETURN(0);
544 }
545
546 /**
547  * Finialize osp_update structure in OSP device
548  *
549  * Stop the OSP update sending thread, then delete the left
550  * osp thandle in the sending list.
551  *
552  * \param [in] osp      OSP device.
553  */
554 static void osp_update_fini(const struct lu_env *env, struct osp_device *osp)
555 {
556         struct osp_update_request *our;
557         struct osp_update_request *tmp;
558         struct osp_updates *ou = osp->opd_update;
559
560         if (ou == NULL)
561                 return;
562
563         osp->opd_update_thread.t_flags = SVC_STOPPING;
564         wake_up(&ou->ou_waitq);
565
566         wait_event(osp->opd_update_thread.t_ctl_waitq,
567                    osp->opd_update_thread.t_flags & SVC_STOPPED);
568
569         /* Remove the left osp thandle from the list */
570         spin_lock(&ou->ou_lock);
571         list_for_each_entry_safe(our, tmp, &ou->ou_list,
572                                  our_list) {
573                 list_del_init(&our->our_list);
574                 LASSERT(our->our_th != NULL);
575                 osp_trans_callback(env, our->our_th, -EIO);
576                 /* our will be destroyed in osp_thandle_put() */
577                 osp_thandle_put(env, our->our_th);
578         }
579         spin_unlock(&ou->ou_lock);
580
581         OBD_FREE_PTR(ou);
582         osp->opd_update = NULL;
583 }
584
585 /**
586  * Cleanup OSP, which includes disconnect import, cleanup unlink log, stop
587  * precreate threads etc.
588  *
589  * \param[in] env       execution environment.
590  * \param[in] d         OSP device being disconnected.
591  *
592  * \retval 0            0 if cleanup succeed
593  * \retval negative     negative errno if cleanup failed
594  */
595 static int osp_shutdown(const struct lu_env *env, struct osp_device *d)
596 {
597         int                      rc = 0;
598         ENTRY;
599
600         LASSERT(env);
601
602         rc = osp_disconnect(d);
603
604         osp_statfs_fini(d);
605
606         if (!d->opd_connect_mdt) {
607                 /* stop sync thread */
608                 osp_sync_fini(d);
609
610                 /* stop precreate thread */
611                 osp_precreate_fini(d);
612
613                 /* release last_used file */
614                 osp_last_used_fini(env, d);
615         }
616
617         obd_fid_fini(d->opd_obd);
618
619         RETURN(rc);
620 }
621
622 /**
623  * Implementation of osp_lu_ops::ldo_process_config
624  *
625  * This function processes config log records in OSP layer. It is usually
626  * called from the top layer of MDT stack, and goes through the stack by calling
627  * ldo_process_config of next layer.
628  *
629  * \param[in] env       execution environment
630  * \param[in] dev       lu_device of OSP
631  * \param[in] lcfg      config log
632  *
633  * \retval 0            0 if the config log record is executed correctly.
634  * \retval negative     negative errno if the record execution fails.
635  */
636 static int osp_process_config(const struct lu_env *env,
637                               struct lu_device *dev, struct lustre_cfg *lcfg)
638 {
639         struct osp_device *d = lu2osp_dev(dev);
640         struct dt_device *dt = lu2dt_dev(dev);
641         struct obd_device *obd = d->opd_obd;
642         ssize_t count;
643         int rc;
644
645         ENTRY;
646
647         switch (lcfg->lcfg_command) {
648         case LCFG_PRE_CLEANUP:
649                 rc = osp_disconnect(d);
650                 osp_update_fini(env, d);
651                 if (obd->obd_namespace != NULL)
652                         ldlm_namespace_free_prior(obd->obd_namespace, NULL, 1);
653                 break;
654         case LCFG_CLEANUP:
655                 lu_dev_del_linkage(dev->ld_site, dev);
656                 rc = osp_shutdown(env, d);
657                 break;
658         case LCFG_PARAM:
659                 count = class_modify_config(lcfg, d->opd_connect_mdt ?
660                                                   PARAM_OSP : PARAM_OSC,
661                                             &dt->dd_kobj);
662                 if (count < 0) {
663                         /* class_modify_config() haven't found matching
664                          * parameter and returned an error so that layer(s)
665                          * below could use that. But OSP is the bottom, so
666                          * just ignore it
667                          */
668                         CERROR("%s: unknown param %s\n",
669                                (char *)lustre_cfg_string(lcfg, 0),
670                                (char *)lustre_cfg_string(lcfg, 1));
671                 }
672                 rc = 0;
673                 break;
674         default:
675                 CERROR("%s: unknown command %u\n",
676                        (char *)lustre_cfg_string(lcfg, 0), lcfg->lcfg_command);
677                 rc = 0;
678                 break;
679         }
680
681         RETURN(rc);
682 }
683
684 /**
685  * Implementation of osp_lu_ops::ldo_recovery_complete
686  *
687  * This function is called after recovery is finished, and OSP layer
688  * will wake up precreate thread here.
689  *
690  * \param[in] env       execution environment
691  * \param[in] dev       lu_device of OSP
692  *
693  * \retval 0            0 unconditionally
694  */
695 static int osp_recovery_complete(const struct lu_env *env,
696                                  struct lu_device *dev)
697 {
698         struct osp_device       *osp = lu2osp_dev(dev);
699
700         ENTRY;
701         osp->opd_recovery_completed = 1;
702
703         if (!osp->opd_connect_mdt && osp->opd_pre != NULL)
704                 wake_up(&osp->opd_pre_waitq);
705
706         RETURN(0);
707 }
708
709 const struct lu_device_operations osp_lu_ops = {
710         .ldo_object_alloc       = osp_object_alloc,
711         .ldo_process_config     = osp_process_config,
712         .ldo_recovery_complete  = osp_recovery_complete,
713 };
714
715 /**
716  * Implementation of dt_device_operations::dt_statfs
717  *
718  * This function provides statfs status (for precreation) from
719  * corresponding OST. Note: this function only retrieves the status
720  * from the OSP device, and the real statfs RPC happens inside
721  * precreate thread (\see osp_statfs_update). Note: OSP for MDT does
722  * not need to retrieve statfs data for now.
723  *
724  * \param[in] env       execution environment.
725  * \param[in] dev       dt_device of OSP.
726  * \param[out] sfs      holds the retrieved statfs data.
727  *
728  * \retval 0            0 statfs data was retrieved successfully or
729  *                      retrieval was not needed
730  * \retval negative     negative errno if get statfs failed.
731  */
732 static int osp_statfs(const struct lu_env *env, struct dt_device *dev,
733                       struct obd_statfs *sfs)
734 {
735         struct osp_device *d = dt2osp_dev(dev);
736         struct obd_import *imp = d->opd_obd->u.cli.cl_import;
737
738         ENTRY;
739
740         if (imp->imp_state == LUSTRE_IMP_CLOSED)
741                 RETURN(-ESHUTDOWN);
742
743         if (unlikely(d->opd_imp_active == 0))
744                 RETURN(-ENOTCONN);
745
746         /* return recently updated data */
747         *sfs = d->opd_statfs;
748
749         if (d->opd_pre == NULL)
750                 RETURN(0);
751
752         /*
753          * layer above osp (usually lod) can use ffree to estimate
754          * how many objects are available for immediate creation
755          */
756         spin_lock(&d->opd_pre_lock);
757         sfs->os_fprecreated = osp_fid_diff(&d->opd_pre_last_created_fid,
758                                            &d->opd_pre_used_fid);
759         sfs->os_fprecreated -= d->opd_pre_reserved;
760         LASSERTF(sfs->os_fprecreated <= OST_MAX_PRECREATE * 2,
761                  "last_created "DFID", next_fid "DFID", reserved %llu\n",
762                  PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_pre_used_fid),
763                  d->opd_pre_reserved);
764         spin_unlock(&d->opd_pre_lock);
765
766         CDEBUG(D_OTHER, "%s: %llu blocks, %llu free, %llu avail, "
767                "%llu files, %llu free files\n", d->opd_obd->obd_name,
768                sfs->os_blocks, sfs->os_bfree, sfs->os_bavail,
769                sfs->os_files, sfs->os_ffree);
770         RETURN(0);
771 }
772
773 static int osp_sync_timeout(void *data)
774 {
775         return 1;
776 }
777
778 /**
779  * Implementation of dt_device_operations::dt_sync
780  *
781  * This function synchronizes the OSP cache to the remote target. It wakes
782  * up unlink log threads and sends out unlink records to the remote OST.
783  *
784  * \param[in] env       execution environment
785  * \param[in] dev       dt_device of OSP
786  *
787  * \retval 0            0 if synchronization succeeds
788  * \retval negative     negative errno if synchronization fails
789  */
790 static int osp_sync(const struct lu_env *env, struct dt_device *dev)
791 {
792         struct osp_device *d = dt2osp_dev(dev);
793         struct l_wait_info lwi = { 0 };
794         time64_t start = ktime_get_seconds();
795         int recs, rc = 0;
796         u64 old;
797
798         ENTRY;
799
800         /* No Sync between MDTs yet. */
801         if (d->opd_connect_mdt)
802                 RETURN(0);
803
804         recs = atomic_read(&d->opd_sync_changes);
805         old = atomic64_read(&d->opd_sync_processed_recs);
806
807         osp_sync_force(env, dt2osp_dev(dev));
808
809         if (unlikely(d->opd_imp_active == 0))
810                 RETURN(-ENOTCONN);
811
812         down_write(&d->opd_async_updates_rwsem);
813
814         CDEBUG(D_OTHER, "%s: async updates %d\n", d->opd_obd->obd_name,
815                atomic_read(&d->opd_async_updates_count));
816
817         /* make sure the connection is fine */
818         lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout), osp_sync_timeout, d);
819         rc = l_wait_event(d->opd_sync_barrier_waitq,
820                           atomic_read(&d->opd_async_updates_count) == 0,
821                           &lwi);
822         up_write(&d->opd_async_updates_rwsem);
823         if (rc != 0)
824                 GOTO(out, rc);
825
826         CDEBUG(D_CACHE, "%s: processed %llu\n", d->opd_obd->obd_name,
827                (unsigned long long)atomic64_read(&d->opd_sync_processed_recs));
828
829         while (atomic64_read(&d->opd_sync_processed_recs) < old + recs) {
830                 __u64 last = atomic64_read(&d->opd_sync_processed_recs);
831                 /* make sure the connection is fine */
832                 lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout),
833                                   osp_sync_timeout, d);
834                 l_wait_event(d->opd_sync_barrier_waitq,
835                              atomic64_read(&d->opd_sync_processed_recs)
836                              >= old + recs, &lwi);
837
838                 if (atomic64_read(&d->opd_sync_processed_recs) >= old + recs)
839                         break;
840
841                 if (atomic64_read(&d->opd_sync_processed_recs) != last) {
842                         /* some progress have been made,
843                          * keep trying... */
844                         continue;
845                 }
846
847                 /* no changes and expired, something is wrong */
848                 GOTO(out, rc = -ETIMEDOUT);
849         }
850
851         /* block new processing (barrier>0 - few callers are possible */
852         atomic_inc(&d->opd_sync_barrier);
853
854         CDEBUG(D_CACHE, "%s: %u in flight\n", d->opd_obd->obd_name,
855                atomic_read(&d->opd_sync_rpcs_in_flight));
856
857         /* wait till all-in-flight are replied, so executed by the target */
858         /* XXX: this is used by LFSCK at the moment, which doesn't require
859          *      all the changes to be committed, but in general it'd be
860          *      better to wait till commit */
861         while (atomic_read(&d->opd_sync_rpcs_in_flight) > 0) {
862                 old = atomic_read(&d->opd_sync_rpcs_in_flight);
863
864                 lwi = LWI_TIMEOUT(cfs_time_seconds(obd_timeout),
865                                   osp_sync_timeout, d);
866                 l_wait_event(d->opd_sync_barrier_waitq,
867                              atomic_read(&d->opd_sync_rpcs_in_flight) == 0,
868                              &lwi);
869
870                 if (atomic_read(&d->opd_sync_rpcs_in_flight) == 0)
871                         break;
872
873                 if (atomic_read(&d->opd_sync_rpcs_in_flight) != old) {
874                         /* some progress have been made */
875                         continue;
876                 }
877
878                 /* no changes and expired, something is wrong */
879                 GOTO(out, rc = -ETIMEDOUT);
880         }
881
882 out:
883         /* resume normal processing (barrier=0) */
884         atomic_dec(&d->opd_sync_barrier);
885         osp_sync_check_for_work(d);
886
887         CDEBUG(D_CACHE, "%s: done in %lld: rc = %d\n", d->opd_obd->obd_name,
888                ktime_get_seconds() - start, rc);
889
890         RETURN(rc);
891 }
892
893 const struct dt_device_operations osp_dt_ops = {
894         .dt_statfs       = osp_statfs,
895         .dt_sync         = osp_sync,
896         .dt_trans_create = osp_trans_create,
897         .dt_trans_start  = osp_trans_start,
898         .dt_trans_stop   = osp_trans_stop,
899         .dt_trans_cb_add   = osp_trans_cb_add,
900 };
901
902 /**
903  * Connect OSP to local OSD.
904  *
905  * Locate the local OSD referenced by \a nextdev and connect to it. Sometimes,
906  * OSP needs to access the local OSD to store some information. For example,
907  * during precreate, it needs to update last used OID and sequence file
908  * (LAST_SEQ) in local OSD.
909  *
910  * \param[in] env       execution environment
911  * \param[in] osp       OSP device
912  * \param[in] nextdev   the name of local OSD
913  *
914  * \retval 0            0 connection succeeded
915  * \retval negative     negative errno connection failed
916  */
917 static int osp_connect_to_osd(const struct lu_env *env, struct osp_device *osp,
918                               const char *nextdev)
919 {
920         struct obd_connect_data *data = NULL;
921         struct obd_device       *obd;
922         int                      rc;
923
924         ENTRY;
925
926         LASSERT(osp->opd_storage_exp == NULL);
927
928         OBD_ALLOC_PTR(data);
929         if (data == NULL)
930                 RETURN(-ENOMEM);
931
932         obd = class_name2obd(nextdev);
933         if (obd == NULL) {
934                 CERROR("%s: can't locate next device: %s\n",
935                        osp->opd_obd->obd_name, nextdev);
936                 GOTO(out, rc = -ENOTCONN);
937         }
938
939         rc = obd_connect(env, &osp->opd_storage_exp, obd, &obd->obd_uuid, data,
940                          NULL);
941         if (rc) {
942                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
943                        osp->opd_obd->obd_name, nextdev, rc);
944                 GOTO(out, rc);
945         }
946
947         osp->opd_dt_dev.dd_lu_dev.ld_site =
948                 osp->opd_storage_exp->exp_obd->obd_lu_dev->ld_site;
949         LASSERT(osp->opd_dt_dev.dd_lu_dev.ld_site);
950         osp->opd_storage = lu2dt_dev(osp->opd_storage_exp->exp_obd->obd_lu_dev);
951
952 out:
953         OBD_FREE_PTR(data);
954         RETURN(rc);
955 }
956
957 /**
958  * Determine if the lock needs to be cancelled
959  *
960  * Determine if the unused lock should be cancelled before replay, see
961  * (ldlm_cancel_no_wait_policy()). Currently, only inode bits lock exists
962  * between MDTs.
963  *
964  * \param[in] lock      lock to be checked.
965  *
966  * \retval              1 if the lock needs to be cancelled before replay.
967  * \retval              0 if the lock does not need to be cancelled before
968  *                      replay.
969  */
970 static int osp_cancel_weight(struct ldlm_lock *lock)
971 {
972         if (lock->l_resource->lr_type != LDLM_IBITS)
973                 RETURN(0);
974
975         RETURN(1);
976 }
977
978 /**
979  * Initialize OSP device according to the parameters in the configuration
980  * log \a cfg.
981  *
982  * Reconstruct the local device name from the configuration profile, and
983  * initialize necessary threads and structures according to the OSP type
984  * (MDT or OST).
985  *
986  * Since there is no record in the MDT configuration for the local disk
987  * device, we have to extract this from elsewhere in the profile.
988  * The only information we get at setup is from the OSC records:
989  * setup 0:{fsname}-OSTxxxx-osc[-MDTxxxx] 1:lustre-OST0000_UUID 2:NID
990  *
991  * Note: configs generated by Lustre 1.8 are missing the -MDTxxxx part,
992  * so, we need to reconstruct the name of the underlying OSD from this:
993  * {fsname}-{svname}-osd, for example "lustre-MDT0000-osd".
994  *
995  * \param[in] env       execution environment
996  * \param[in] osp       OSP device
997  * \param[in] ldt       lu device type of OSP
998  * \param[in] cfg       configuration log
999  *
1000  * \retval 0            0 if OSP initialization succeeded.
1001  * \retval negative     negative errno if OSP initialization failed.
1002  */
1003 static int osp_init0(const struct lu_env *env, struct osp_device *osp,
1004                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
1005 {
1006         struct obd_device       *obd;
1007         struct obd_import       *imp;
1008         char                    *src, *tgt, *mdt, *osdname = NULL;
1009         int                     rc;
1010         long                    idx;
1011
1012         ENTRY;
1013
1014         mutex_init(&osp->opd_async_requests_mutex);
1015         INIT_LIST_HEAD(&osp->opd_async_updates);
1016         init_rwsem(&osp->opd_async_updates_rwsem);
1017         atomic_set(&osp->opd_async_updates_count, 0);
1018
1019         obd = class_name2obd(lustre_cfg_string(cfg, 0));
1020         if (obd == NULL) {
1021                 CERROR("Cannot find obd with name %s\n",
1022                        lustre_cfg_string(cfg, 0));
1023                 RETURN(-ENODEV);
1024         }
1025         osp->opd_obd = obd;
1026
1027         src = lustre_cfg_string(cfg, 0);
1028         if (src == NULL)
1029                 RETURN(-EINVAL);
1030
1031         tgt = strrchr(src, '-');
1032         if (tgt == NULL) {
1033                 CERROR("%s: invalid target name %s: rc = %d\n",
1034                        osp->opd_obd->obd_name, lustre_cfg_string(cfg, 0),
1035                        -EINVAL);
1036                 RETURN(-EINVAL);
1037         }
1038
1039         if (strncmp(tgt, "-osc", 4) == 0) {
1040                 /* Old OSC name fsname-OSTXXXX-osc */
1041                 for (tgt--; tgt > src && *tgt != '-'; tgt--)
1042                         ;
1043                 if (tgt == src) {
1044                         CERROR("%s: invalid target name %s: rc = %d\n",
1045                                osp->opd_obd->obd_name,
1046                                lustre_cfg_string(cfg, 0), -EINVAL);
1047                         RETURN(-EINVAL);
1048                 }
1049
1050                 if (strncmp(tgt, "-OST", 4) != 0) {
1051                         CERROR("%s: invalid target name %s: rc = %d\n",
1052                                osp->opd_obd->obd_name,
1053                                lustre_cfg_string(cfg, 0), -EINVAL);
1054                         RETURN(-EINVAL);
1055                 }
1056
1057                 idx = simple_strtol(tgt + 4, &mdt, 16);
1058                 if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
1059                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1060                                osp->opd_obd->obd_name, src, -EINVAL);
1061                         RETURN(-EINVAL);
1062                 }
1063                 osp->opd_index = idx;
1064                 osp->opd_group = 0;
1065                 idx = tgt - src;
1066         } else {
1067                 /* New OSC name fsname-OSTXXXX-osc-MDTXXXX */
1068                 if (strncmp(tgt, "-MDT", 4) != 0 &&
1069                     strncmp(tgt, "-OST", 4) != 0) {
1070                         CERROR("%s: invalid target name %s: rc = %d\n",
1071                                osp->opd_obd->obd_name,
1072                                lustre_cfg_string(cfg, 0), -EINVAL);
1073                         RETURN(-EINVAL);
1074                 }
1075
1076                 idx = simple_strtol(tgt + 4, &mdt, 16);
1077                 if (*mdt != '\0' || idx > INT_MAX || idx < 0) {
1078                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1079                                osp->opd_obd->obd_name, src, -EINVAL);
1080                         RETURN(-EINVAL);
1081                 }
1082
1083                 /* Get MDT index from the name and set it to opd_group,
1084                  * which will be used by OSP to connect with OST */
1085                 osp->opd_group = idx;
1086                 if (tgt - src <= 12) {
1087                         CERROR("%s: invalid mdt index from %s: rc =%d\n",
1088                                osp->opd_obd->obd_name,
1089                                lustre_cfg_string(cfg, 0), -EINVAL);
1090                         RETURN(-EINVAL);
1091                 }
1092
1093                 if (strncmp(tgt - 12, "-MDT", 4) == 0)
1094                         osp->opd_connect_mdt = 1;
1095
1096                 idx = simple_strtol(tgt - 8, &mdt, 16);
1097                 if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
1098                         CERROR("%s: invalid OST index in '%s': rc =%d\n",
1099                                osp->opd_obd->obd_name, src, -EINVAL);
1100                         RETURN(-EINVAL);
1101                 }
1102
1103                 osp->opd_index = idx;
1104                 idx = tgt - src - 12;
1105         }
1106         /* check the fsname length, and after this everything else will fit */
1107         if (idx > MTI_NAME_MAXLEN) {
1108                 CERROR("%s: fsname too long in '%s': rc = %d\n",
1109                        osp->opd_obd->obd_name, src, -EINVAL);
1110                 RETURN(-EINVAL);
1111         }
1112
1113         OBD_ALLOC(osdname, MAX_OBD_NAME);
1114         if (osdname == NULL)
1115                 RETURN(-ENOMEM);
1116
1117         memcpy(osdname, src, idx); /* copy just the fsname part */
1118         osdname[idx] = '\0';
1119
1120         mdt = strstr(mdt, "-MDT");
1121         if (mdt == NULL) /* 1.8 configs don't have "-MDT0000" at the end */
1122                 strcat(osdname, "-MDT0000");
1123         else
1124                 strcat(osdname, mdt);
1125         strcat(osdname, "-osd");
1126         CDEBUG(D_HA, "%s: connect to %s (%s)\n", obd->obd_name, osdname, src);
1127
1128         osp_init_rpc_lock(osp);
1129
1130         osp->opd_dt_dev.dd_lu_dev.ld_ops = &osp_lu_ops;
1131         osp->opd_dt_dev.dd_ops = &osp_dt_ops;
1132
1133         obd->obd_lu_dev = &osp->opd_dt_dev.dd_lu_dev;
1134
1135         rc = osp_connect_to_osd(env, osp, osdname);
1136         if (rc)
1137                 GOTO(out_fini, rc);
1138
1139         rc = ptlrpcd_addref();
1140         if (rc)
1141                 GOTO(out_disconnect, rc);
1142
1143         rc = client_obd_setup(obd, cfg);
1144         if (rc) {
1145                 CERROR("%s: can't setup obd: rc = %d\n", osp->opd_obd->obd_name,
1146                        rc);
1147                 GOTO(out_ref, rc);
1148         }
1149
1150         osp_tunables_init(osp);
1151
1152         rc = obd_fid_init(osp->opd_obd, NULL, osp->opd_connect_mdt ?
1153                           LUSTRE_SEQ_METADATA : LUSTRE_SEQ_DATA);
1154         if (rc) {
1155                 CERROR("%s: fid init error: rc = %d\n",
1156                        osp->opd_obd->obd_name, rc);
1157                 GOTO(out_proc, rc);
1158         }
1159
1160         if (!osp->opd_connect_mdt) {
1161                 /* Initialize last id from the storage - will be
1162                  * used in orphan cleanup. */
1163                 if (!osp->opd_storage->dd_rdonly) {
1164                         rc = osp_last_used_init(env, osp);
1165                         if (rc)
1166                                 GOTO(out_fid, rc);
1167                 }
1168
1169                 /* Initialize precreation thread, it handles new
1170                  * connections as well. */
1171                 rc = osp_init_precreate(osp);
1172                 if (rc)
1173                         GOTO(out_last_used, rc);
1174
1175                 /*
1176                  * Initialize synhronization mechanism taking
1177                  * care of propogating changes to OST in near
1178                  * transactional manner.
1179                  */
1180                 rc = osp_sync_init(env, osp);
1181                 if (rc < 0)
1182                         GOTO(out_precreat, rc);
1183         } else {
1184                 osp->opd_got_disconnected = 1;
1185                 rc = osp_update_init(osp);
1186                 if (rc != 0)
1187                         GOTO(out_fid, rc);
1188         }
1189
1190         rc = osp_init_statfs(osp);
1191         if (rc)
1192                 GOTO(out_precreat, rc);
1193
1194         ns_register_cancel(obd->obd_namespace, osp_cancel_weight);
1195
1196         /*
1197          * Initiate connect to OST
1198          */
1199         imp = obd->u.cli.cl_import;
1200
1201         rc = ptlrpc_init_import(imp);
1202         if (rc)
1203                 GOTO(out, rc);
1204         if (osdname)
1205                 OBD_FREE(osdname, MAX_OBD_NAME);
1206         RETURN(0);
1207
1208 out:
1209         if (!osp->opd_connect_mdt)
1210                 /* stop sync thread */
1211                 osp_sync_fini(osp);
1212 out_precreat:
1213         /* stop precreate thread */
1214         if (!osp->opd_connect_mdt)
1215                 osp_precreate_fini(osp);
1216         else
1217                 osp_update_fini(env, osp);
1218 out_last_used:
1219         if (!osp->opd_connect_mdt)
1220                 osp_last_used_fini(env, osp);
1221 out_fid:
1222         obd_fid_fini(osp->opd_obd);
1223 out_proc:
1224         osp_tunables_fini(osp);
1225         client_obd_cleanup(obd);
1226 out_ref:
1227         ptlrpcd_decref();
1228 out_disconnect:
1229         obd_disconnect(osp->opd_storage_exp);
1230 out_fini:
1231         if (osdname)
1232                 OBD_FREE(osdname, MAX_OBD_NAME);
1233         RETURN(rc);
1234 }
1235
1236 /**
1237  * Implementation of lu_device_type_operations::ldto_device_free
1238  *
1239  * Free the OSP device in memory.  No return value is needed for now,
1240  * so always return NULL to comply with the interface.
1241  *
1242  * \param[in] env       execution environment
1243  * \param[in] lu        lu_device of OSP
1244  *
1245  * \retval NULL         NULL unconditionally
1246  */
1247 static struct lu_device *osp_device_free(const struct lu_env *env,
1248                                          struct lu_device *lu)
1249 {
1250         struct osp_device *osp = lu2osp_dev(lu);
1251
1252         if (atomic_read(&lu->ld_ref) && lu->ld_site) {
1253                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
1254                 lu_site_print(env, lu->ld_site, &msgdata, lu_cdebug_printer);
1255         }
1256         dt_device_fini(&osp->opd_dt_dev);
1257         OBD_FREE_PTR(osp);
1258
1259         return NULL;
1260 }
1261
1262 /**
1263  * Implementation of lu_device_type_operations::ldto_device_alloc
1264  *
1265  * This function allocates and initializes OSP device in memory according to
1266  * the config log.
1267  *
1268  * \param[in] env       execution environment
1269  * \param[in] type      device type of OSP
1270  * \param[in] lcfg      config log
1271  *
1272  * \retval pointer              the pointer of allocated OSP if succeed.
1273  * \retval ERR_PTR(errno)       ERR_PTR(errno) if failed.
1274  */
1275 static struct lu_device *osp_device_alloc(const struct lu_env *env,
1276                                           struct lu_device_type *type,
1277                                           struct lustre_cfg *lcfg)
1278 {
1279         struct osp_device *osp;
1280         struct lu_device  *ld;
1281
1282         OBD_ALLOC_PTR(osp);
1283         if (osp == NULL) {
1284                 ld = ERR_PTR(-ENOMEM);
1285         } else {
1286                 int rc;
1287
1288                 ld = osp2lu_dev(osp);
1289                 dt_device_init(&osp->opd_dt_dev, type);
1290                 rc = osp_init0(env, osp, type, lcfg);
1291                 if (rc != 0) {
1292                         osp_device_free(env, ld);
1293                         ld = ERR_PTR(rc);
1294                 }
1295         }
1296         return ld;
1297 }
1298
1299 /**
1300  * Implementation of lu_device_type_operations::ldto_device_fini
1301  *
1302  * This function cleans up the OSP device, i.e. release and free those
1303  * attached items in osp_device.
1304  *
1305  * \param[in] env       execution environment
1306  * \param[in] ld        lu_device of OSP
1307  *
1308  * \retval NULL                 NULL if cleanup succeeded.
1309  * \retval ERR_PTR(errno)       ERR_PTR(errno) if cleanup failed.
1310  */
1311 static struct lu_device *osp_device_fini(const struct lu_env *env,
1312                                          struct lu_device *ld)
1313 {
1314         struct osp_device *osp = lu2osp_dev(ld);
1315         int                rc;
1316
1317         ENTRY;
1318
1319         if (osp->opd_async_requests != NULL) {
1320                 osp_update_request_destroy(env, osp->opd_async_requests);
1321                 osp->opd_async_requests = NULL;
1322         }
1323
1324         if (osp->opd_storage_exp) {
1325                 /* wait for the commit callbacks to complete */
1326                 wait_event(osp->opd_sync_waitq,
1327                           atomic_read(&osp->opd_commits_registered) == 0);
1328                 obd_disconnect(osp->opd_storage_exp);
1329         }
1330
1331         LASSERT(osp->opd_obd);
1332         osp_tunables_fini(osp);
1333
1334         rc = client_obd_cleanup(osp->opd_obd);
1335         if (rc != 0) {
1336                 ptlrpcd_decref();
1337                 RETURN(ERR_PTR(rc));
1338         }
1339
1340         ptlrpcd_decref();
1341
1342         RETURN(NULL);
1343 }
1344
1345 /**
1346  * Implementation of obd_ops::o_reconnect
1347  *
1348  * This function is empty and does not need to do anything for now.
1349  */
1350 static int osp_reconnect(const struct lu_env *env,
1351                          struct obd_export *exp, struct obd_device *obd,
1352                          struct obd_uuid *cluuid,
1353                          struct obd_connect_data *data,
1354                          void *localdata)
1355 {
1356         return 0;
1357 }
1358
1359 /*
1360  * Implementation of obd_ops::o_connect
1361  *
1362  * Connect OSP to the remote target (MDT or OST). Allocate the
1363  * export and return it to the LOD, which calls this function
1364  * for each OSP to connect it to the remote target. This function
1365  * is currently only called once per OSP.
1366  *
1367  * \param[in] env       execution environment
1368  * \param[out] exp      export connected to OSP
1369  * \param[in] obd       OSP device
1370  * \param[in] cluuid    OSP device client uuid
1371  * \param[in] data      connect_data to be used to connect to the remote
1372  *                      target
1373  * \param[in] localdata necessary for the API interface, but not used in
1374  *                      this function
1375  *
1376  * \retval 0            0 if the connection succeeded.
1377  * \retval negative     negative errno if the connection failed.
1378  */
1379 static int osp_obd_connect(const struct lu_env *env, struct obd_export **exp,
1380                            struct obd_device *obd, struct obd_uuid *cluuid,
1381                            struct obd_connect_data *data, void *localdata)
1382 {
1383         struct osp_device       *osp = lu2osp_dev(obd->obd_lu_dev);
1384         struct obd_connect_data *ocd;
1385         struct obd_import       *imp;
1386         struct lustre_handle     conn;
1387         int                      rc;
1388
1389         ENTRY;
1390
1391         CDEBUG(D_CONFIG, "connect #%d\n", osp->opd_connects);
1392
1393         rc = class_connect(&conn, obd, cluuid);
1394         if (rc)
1395                 RETURN(rc);
1396
1397         *exp = class_conn2export(&conn);
1398         /* Why should there ever be more than 1 connect? */
1399         osp->opd_connects++;
1400         LASSERT(osp->opd_connects == 1);
1401
1402         osp->opd_exp = *exp;
1403
1404         imp = osp->opd_obd->u.cli.cl_import;
1405         imp->imp_dlm_handle = conn;
1406
1407         LASSERT(data != NULL);
1408         LASSERT(data->ocd_connect_flags & OBD_CONNECT_INDEX);
1409         ocd = &imp->imp_connect_data;
1410         *ocd = *data;
1411
1412         imp->imp_connect_flags_orig = ocd->ocd_connect_flags;
1413         imp->imp_connect_flags2_orig = ocd->ocd_connect_flags2;
1414
1415         ocd->ocd_version = LUSTRE_VERSION_CODE;
1416         ocd->ocd_index = data->ocd_index;
1417
1418         rc = ptlrpc_connect_import(imp);
1419         if (rc) {
1420                 CERROR("%s: can't connect obd: rc = %d\n", obd->obd_name, rc);
1421                 GOTO(out, rc);
1422         } else {
1423                 osp->opd_obd->u.cli.cl_seq->lcs_exp =
1424                                 class_export_get(osp->opd_exp);
1425         }
1426
1427         ptlrpc_pinger_add_import(imp);
1428 out:
1429         RETURN(rc);
1430 }
1431
1432 /**
1433  * Implementation of obd_ops::o_disconnect
1434  *
1435  * Disconnect the export for the OSP.  This is called by LOD to release the
1436  * OSP during cleanup (\see lod_del_device()). The OSP will be released after
1437  * the export is released.
1438  *
1439  * \param[in] exp       export to be disconnected.
1440  *
1441  * \retval 0            0 if disconnection succeed
1442  * \retval negative     negative errno if disconnection failed
1443  */
1444 static int osp_obd_disconnect(struct obd_export *exp)
1445 {
1446         struct obd_device *obd = exp->exp_obd;
1447         struct osp_device *osp = lu2osp_dev(obd->obd_lu_dev);
1448         int                rc;
1449         ENTRY;
1450
1451         /* Only disconnect the underlying layers on the final disconnect. */
1452         LASSERT(osp->opd_connects == 1);
1453         osp->opd_connects--;
1454
1455         rc = class_disconnect(exp);
1456         if (rc) {
1457                 CERROR("%s: class disconnect error: rc = %d\n",
1458                        obd->obd_name, rc);
1459                 RETURN(rc);
1460         }
1461
1462         /* destroy the device */
1463         class_manual_cleanup(obd);
1464
1465         RETURN(rc);
1466 }
1467
1468 /**
1469  * Implementation of obd_ops::o_statfs
1470  *
1471  * Send a RPC to the remote target to get statfs status. This is only used
1472  * in lprocfs helpers by obd_statfs.
1473  *
1474  * \param[in] env       execution environment
1475  * \param[in] exp       connection state from this OSP to the parent (LOD)
1476  *                      device
1477  * \param[out] osfs     hold the statfs result
1478  * \param[in] unused    Not used in this function for now
1479  * \param[in] flags     flags to indicate how OSP will issue the RPC
1480  *
1481  * \retval 0            0 if statfs succeeded.
1482  * \retval negative     negative errno if statfs failed.
1483  */
1484 static int osp_obd_statfs(const struct lu_env *env, struct obd_export *exp,
1485                           struct obd_statfs *osfs, time64_t unused, __u32 flags)
1486 {
1487         struct obd_statfs       *msfs;
1488         struct ptlrpc_request   *req;
1489         struct obd_import       *imp = NULL;
1490         int                      rc;
1491
1492         ENTRY;
1493
1494         /* Since the request might also come from lprocfs, so we need
1495          * sync this with client_disconnect_export Bug15684 */
1496         down_read(&exp->exp_obd->u.cli.cl_sem);
1497         if (exp->exp_obd->u.cli.cl_import)
1498                 imp = class_import_get(exp->exp_obd->u.cli.cl_import);
1499         up_read(&exp->exp_obd->u.cli.cl_sem);
1500         if (!imp)
1501                 RETURN(-ENODEV);
1502
1503         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
1504
1505         class_import_put(imp);
1506
1507         if (req == NULL)
1508                 RETURN(-ENOMEM);
1509
1510         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
1511         if (rc) {
1512                 ptlrpc_request_free(req);
1513                 RETURN(rc);
1514         }
1515         ptlrpc_request_set_replen(req);
1516         req->rq_request_portal = OST_CREATE_PORTAL;
1517         ptlrpc_at_set_req_timeout(req);
1518
1519         if (flags & OBD_STATFS_NODELAY) {
1520                 /* procfs requests not want stat in wait for avoid deadlock */
1521                 req->rq_no_resend = 1;
1522                 req->rq_no_delay = 1;
1523         }
1524
1525         rc = ptlrpc_queue_wait(req);
1526         if (rc)
1527                 GOTO(out, rc);
1528
1529         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1530         if (msfs == NULL)
1531                 GOTO(out, rc = -EPROTO);
1532
1533         *osfs = *msfs;
1534
1535         EXIT;
1536 out:
1537         ptlrpc_req_finished(req);
1538         return rc;
1539 }
1540
1541 /**
1542  * Implementation of obd_ops::o_import_event
1543  *
1544  * This function is called when some related import event happens. It will
1545  * mark the necessary flags according to the event and notify the necessary
1546  * threads (mainly precreate thread).
1547  *
1548  * \param[in] obd       OSP OBD device
1549  * \param[in] imp       import attached from OSP to remote (OST/MDT) service
1550  * \param[in] event     event related to remote service (IMP_EVENT_*)
1551  *
1552  * \retval 0            0 if the event handling succeeded.
1553  * \retval negative     negative errno if the event handling failed.
1554  */
1555 static int osp_import_event(struct obd_device *obd, struct obd_import *imp,
1556                             enum obd_import_event event)
1557 {
1558         struct osp_device *d = lu2osp_dev(obd->obd_lu_dev);
1559         int rc;
1560
1561         switch (event) {
1562         case IMP_EVENT_DISCON:
1563                 d->opd_got_disconnected = 1;
1564                 d->opd_imp_connected = 0;
1565                 if (d->opd_connect_mdt)
1566                         break;
1567
1568                 if (d->opd_pre != NULL) {
1569                         osp_pre_update_status(d, -ENODEV);
1570                         wake_up(&d->opd_pre_waitq);
1571                 }
1572
1573                 CDEBUG(D_HA, "got disconnected\n");
1574                 break;
1575         case IMP_EVENT_INACTIVE:
1576                 d->opd_imp_active = 0;
1577                 d->opd_imp_connected = 0;
1578                 d->opd_obd->obd_inactive = 1;
1579                 if (d->opd_connect_mdt)
1580                         break;
1581                 if (d->opd_pre != NULL) {
1582                         /* Import is invalid, we can`t get stripes so
1583                          * wakeup waiters */
1584                         rc = imp->imp_deactive ? -ESHUTDOWN : -ENODEV;
1585                         osp_pre_update_status(d, rc);
1586                         wake_up(&d->opd_pre_waitq);
1587                 }
1588
1589                 CDEBUG(D_HA, "got inactive\n");
1590                 break;
1591         case IMP_EVENT_ACTIVE:
1592                 d->opd_imp_active = 1;
1593
1594                 if (d->opd_got_disconnected)
1595                         d->opd_new_connection = 1;
1596                 d->opd_imp_connected = 1;
1597                 d->opd_imp_seen_connected = 1;
1598                 d->opd_obd->obd_inactive = 0;
1599                 wake_up(&d->opd_pre_waitq);
1600                 if (d->opd_connect_mdt)
1601                         break;
1602
1603                 osp_sync_check_for_work(d);
1604                 CDEBUG(D_HA, "got connected\n");
1605                 break;
1606         case IMP_EVENT_INVALIDATE:
1607                 if (d->opd_connect_mdt)
1608                         osp_invalidate_request(d);
1609
1610                 if (obd->obd_namespace == NULL)
1611                         break;
1612                 ldlm_namespace_cleanup(obd->obd_namespace, LDLM_FL_LOCAL_ONLY);
1613                 break;
1614         case IMP_EVENT_OCD:
1615         case IMP_EVENT_DEACTIVATE:
1616         case IMP_EVENT_ACTIVATE:
1617                 break;
1618         default:
1619                 CERROR("%s: unsupported import event: %#x\n",
1620                        obd->obd_name, event);
1621         }
1622         return 0;
1623 }
1624
1625 /**
1626  * Implementation of obd_ops: o_iocontrol
1627  *
1628  * This function is the ioctl handler for OSP. Note: lctl will access the OSP
1629  * directly by ioctl, instead of through the MDS stack.
1630  *
1631  * param[in] cmd        ioctl command.
1632  * param[in] exp        export of this OSP.
1633  * param[in] len        data length of \a karg.
1634  * param[in] karg       input argument which is packed as
1635  *                      obd_ioctl_data
1636  * param[out] uarg      pointer to userspace buffer (must access by
1637  *                      copy_to_user()).
1638  *
1639  * \retval 0            0 if the ioctl handling succeeded.
1640  * \retval negative     negative errno if the ioctl handling failed.
1641  */
1642 static int osp_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1643                          void *karg, void __user *uarg)
1644 {
1645         struct obd_device       *obd = exp->exp_obd;
1646         struct osp_device       *d;
1647         struct obd_ioctl_data   *data = karg;
1648         int                      rc = 0;
1649
1650         ENTRY;
1651
1652         LASSERT(obd->obd_lu_dev);
1653         d = lu2osp_dev(obd->obd_lu_dev);
1654         LASSERT(d->opd_dt_dev.dd_ops == &osp_dt_ops);
1655
1656         if (!try_module_get(THIS_MODULE)) {
1657                 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
1658                        module_name(THIS_MODULE));
1659                 return -EINVAL;
1660         }
1661
1662         switch (cmd) {
1663         case OBD_IOC_CLIENT_RECOVER:
1664                 rc = ptlrpc_recover_import(obd->u.cli.cl_import,
1665                                            data->ioc_inlbuf1, 0);
1666                 if (rc > 0)
1667                         rc = 0;
1668                 break;
1669         case IOC_OSC_SET_ACTIVE:
1670                 rc = ptlrpc_set_import_active(obd->u.cli.cl_import,
1671                                               data->ioc_offset);
1672                 break;
1673         default:
1674                 CERROR("%s: unrecognized ioctl %#x by %s\n", obd->obd_name,
1675                        cmd, current_comm());
1676                 rc = -ENOTTY;
1677         }
1678         module_put(THIS_MODULE);
1679         return rc;
1680 }
1681
1682
1683 /**
1684  * Implementation of obd_ops::o_get_info
1685  *
1686  * Retrieve information by key. Retrieval starts from the top layer
1687  * (MDT) of the MDS stack and traverses the stack by calling the
1688  * obd_get_info() method of the next sub-layer.
1689  *
1690  * \param[in] env       execution environment
1691  * \param[in] exp       export of this OSP
1692  * \param[in] keylen    length of \a key
1693  * \param[in] key       the key
1694  * \param[out] vallen   length of \a val
1695  * \param[out] val      holds the value returned by the key
1696  *
1697  * \retval 0            0 if getting information succeeded.
1698  * \retval negative     negative errno if getting information failed.
1699  */
1700 static int osp_obd_get_info(const struct lu_env *env, struct obd_export *exp,
1701                             __u32 keylen, void *key, __u32 *vallen, void *val)
1702 {
1703         int rc = -EINVAL;
1704
1705         if (KEY_IS(KEY_OSP_CONNECTED)) {
1706                 struct obd_device       *obd = exp->exp_obd;
1707                 struct osp_device       *osp;
1708
1709                 if (!obd->obd_set_up || obd->obd_stopping)
1710                         RETURN(-EAGAIN);
1711
1712                 osp = lu2osp_dev(obd->obd_lu_dev);
1713                 LASSERT(osp);
1714                 /*
1715                  * 1.8/2.0 behaviour is that OST being connected once at least
1716                  * is considered "healthy". and one "healthy" OST is enough to
1717                  * allow lustre clients to connect to MDS
1718                  */
1719                 RETURN(!osp->opd_imp_seen_connected);
1720         }
1721
1722         RETURN(rc);
1723 }
1724
1725 static int osp_obd_set_info_async(const struct lu_env *env,
1726                                   struct obd_export *exp,
1727                                   u32 keylen, void *key,
1728                                   u32 vallen, void *val,
1729                                   struct ptlrpc_request_set *set)
1730 {
1731         struct obd_device       *obd = exp->exp_obd;
1732         struct obd_import       *imp = obd->u.cli.cl_import;
1733         struct osp_device       *osp;
1734         struct ptlrpc_request   *req;
1735         char                    *tmp;
1736         int                      rc;
1737
1738         if (KEY_IS(KEY_SPTLRPC_CONF)) {
1739                 sptlrpc_conf_client_adapt(exp->exp_obd);
1740                 RETURN(0);
1741         }
1742
1743         LASSERT(set != NULL);
1744         if (!obd->obd_set_up || obd->obd_stopping)
1745                 RETURN(-EAGAIN);
1746         osp = lu2osp_dev(obd->obd_lu_dev);
1747
1748         req = ptlrpc_request_alloc(imp, &RQF_OBD_SET_INFO);
1749         if (req == NULL)
1750                 RETURN(-ENOMEM);
1751
1752         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
1753                              RCL_CLIENT, keylen);
1754         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL,
1755                              RCL_CLIENT, vallen);
1756         if (osp->opd_connect_mdt)
1757                 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SET_INFO);
1758         else
1759                 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SET_INFO);
1760         if (rc) {
1761                 ptlrpc_request_free(req);
1762                 RETURN(rc);
1763         }
1764
1765         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
1766         memcpy(tmp, key, keylen);
1767         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
1768         memcpy(tmp, val, vallen);
1769
1770         ptlrpc_request_set_replen(req);
1771         ptlrpc_set_add_req(set, req);
1772         ptlrpc_check_set(NULL, set);
1773
1774         RETURN(0);
1775 }
1776
1777 /**
1778  * Implementation of obd_ops: o_fid_alloc
1779  *
1780  * Allocate a FID. There are two cases in which OSP performs
1781  * FID allocation.
1782  *
1783  * 1. FID precreation for data objects, which is done in
1784  *    osp_precreate_fids() instead of this function.
1785  * 2. FID allocation for each sub-stripe of a striped directory.
1786  *    Similar to other FID clients, OSP requests the sequence
1787  *    from its corresponding remote MDT, which in turn requests
1788  *    sequences from the sequence controller (MDT0).
1789  *
1790  * \param[in] env       execution environment
1791  * \param[in] exp       export of the OSP
1792  * \param[out] fid      FID being allocated
1793  * \param[in] unused    necessary for the interface but unused.
1794  *
1795  * \retval 0            0 FID allocated successfully.
1796  * \retval 1            1 FID allocated successfully and new sequence
1797  *                      requested from seq meta server
1798  * \retval negative     negative errno if FID allocation failed.
1799  */
1800 static int osp_fid_alloc(const struct lu_env *env, struct obd_export *exp,
1801                          struct lu_fid *fid, struct md_op_data *unused)
1802 {
1803         struct client_obd       *cli = &exp->exp_obd->u.cli;
1804         struct osp_device       *osp = lu2osp_dev(exp->exp_obd->obd_lu_dev);
1805         struct lu_client_seq    *seq = cli->cl_seq;
1806         ENTRY;
1807
1808         LASSERT(osp->opd_obd->u.cli.cl_seq != NULL);
1809         /* Sigh, fid client is not ready yet */
1810         LASSERT(osp->opd_obd->u.cli.cl_seq->lcs_exp != NULL);
1811
1812         RETURN(seq_client_alloc_fid(env, seq, fid));
1813 }
1814
1815 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
1816 LU_KEY_INIT_FINI(osp, struct osp_thread_info);
1817 static void osp_key_exit(const struct lu_context *ctx,
1818                          struct lu_context_key *key, void *data)
1819 {
1820         struct osp_thread_info *info = data;
1821
1822         info->osi_attr.la_valid = 0;
1823 }
1824
1825 struct lu_context_key osp_thread_key = {
1826         .lct_tags = LCT_MD_THREAD,
1827         .lct_init = osp_key_init,
1828         .lct_fini = osp_key_fini,
1829         .lct_exit = osp_key_exit
1830 };
1831
1832 /* context key constructor/destructor: mdt_txn_key_init, mdt_txn_key_fini */
1833 LU_KEY_INIT_FINI(osp_txn, struct osp_txn_info);
1834
1835 struct lu_context_key osp_txn_key = {
1836         .lct_tags = LCT_OSP_THREAD,
1837         .lct_init = osp_txn_key_init,
1838         .lct_fini = osp_txn_key_fini
1839 };
1840 LU_TYPE_INIT_FINI(osp, &osp_thread_key, &osp_txn_key);
1841
1842 static struct lu_device_type_operations osp_device_type_ops = {
1843         .ldto_init           = osp_type_init,
1844         .ldto_fini           = osp_type_fini,
1845
1846         .ldto_start          = osp_type_start,
1847         .ldto_stop           = osp_type_stop,
1848
1849         .ldto_device_alloc   = osp_device_alloc,
1850         .ldto_device_free    = osp_device_free,
1851
1852         .ldto_device_fini    = osp_device_fini
1853 };
1854
1855 static struct lu_device_type osp_device_type = {
1856         .ldt_tags     = LU_DEVICE_DT,
1857         .ldt_name     = LUSTRE_OSP_NAME,
1858         .ldt_ops      = &osp_device_type_ops,
1859         .ldt_ctx_tags = LCT_MD_THREAD | LCT_DT_THREAD,
1860 };
1861
1862 static struct obd_ops osp_obd_device_ops = {
1863         .o_owner        = THIS_MODULE,
1864         .o_add_conn     = client_import_add_conn,
1865         .o_del_conn     = client_import_del_conn,
1866         .o_reconnect    = osp_reconnect,
1867         .o_connect      = osp_obd_connect,
1868         .o_disconnect   = osp_obd_disconnect,
1869         .o_get_info     = osp_obd_get_info,
1870         .o_set_info_async = osp_obd_set_info_async,
1871         .o_import_event = osp_import_event,
1872         .o_iocontrol    = osp_iocontrol,
1873         .o_statfs       = osp_obd_statfs,
1874         .o_fid_init     = client_fid_init,
1875         .o_fid_fini     = client_fid_fini,
1876         .o_fid_alloc    = osp_fid_alloc,
1877 };
1878
1879 static struct obd_type *sym;
1880
1881 /**
1882  * Initialize OSP module.
1883  *
1884  * Register device types OSP and Light Weight Proxy (LWP) (\see lwp_dev.c)
1885  * in obd_types (\see class_obd.c).  Initialize procfs for the
1886  * the OSP device.  Note: OSP was called OSC before Lustre 2.4,
1887  * so for compatibility it still uses the name "osc" in procfs.
1888  * This is called at module load time.
1889  *
1890  * \retval 0            0 if initialization succeeds.
1891  * \retval negative     negative errno if initialization failed.
1892  */
1893 static int __init osp_init(void)
1894 {
1895         int rc;
1896
1897         rc = lu_kmem_init(osp_caches);
1898         if (rc)
1899                 return rc;
1900
1901         rc = class_register_type(&osp_obd_device_ops, NULL, false, NULL,
1902                                  LUSTRE_OSP_NAME, &osp_device_type);
1903         if (rc != 0) {
1904                 lu_kmem_fini(osp_caches);
1905                 return rc;
1906         }
1907
1908         rc = class_register_type(&lwp_obd_device_ops, NULL, false, NULL,
1909                                  LUSTRE_LWP_NAME, &lwp_device_type);
1910         if (rc != 0) {
1911                 class_unregister_type(LUSTRE_OSP_NAME);
1912                 lu_kmem_fini(osp_caches);
1913                 return rc;
1914         }
1915
1916         /* create "osc" entry for compatibility purposes */
1917         sym = class_add_symlinks(LUSTRE_OSC_NAME, false);
1918         if (IS_ERR(sym)) {
1919                 rc = PTR_ERR(sym);
1920                 /* does real "osc" already exist ? */
1921                 if (rc == -EEXIST)
1922                         rc = 0;
1923         }
1924
1925         return rc;
1926 }
1927
1928 /**
1929  * Finalize OSP module.
1930  *
1931  * This callback is called when kernel unloads OSP module from memory, and
1932  * it will deregister OSP and LWP device type from obd_types (\see class_obd.c).
1933  */
1934 static void __exit osp_exit(void)
1935 {
1936         if (!IS_ERR_OR_NULL(sym)) {
1937                 ldebugfs_remove(&sym->typ_debugfs_entry);
1938                 kobject_put(&sym->typ_kobj);
1939         }
1940         class_unregister_type(LUSTRE_LWP_NAME);
1941         class_unregister_type(LUSTRE_OSP_NAME);
1942         lu_kmem_fini(osp_caches);
1943 }
1944
1945 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
1946 MODULE_DESCRIPTION("Lustre OSD Storage Proxy ("LUSTRE_OSP_NAME")");
1947 MODULE_VERSION(LUSTRE_VERSION_STRING);
1948 MODULE_LICENSE("GPL");
1949
1950 module_init(osp_init);
1951 module_exit(osp_exit);