Whamcloud - gitweb
LU-10224 obd: free obd_svc_stats when all users are gone
[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, 2016, 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         /* object will be released in device cleanup path */
262         if (osi->osi_attr.la_size >=
263             sizeof(osi->osi_id) * (osp->opd_index + 1)) {
264                 osp_objid_buf_prep(&osi->osi_lb, &osi->osi_off, &osi->osi_id,
265                                    osp->opd_index);
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 = osi->osi_id;
273         }
274
275         if (rc == -EFAULT) { /* fresh LAST_ID */
276                 osi->osi_id = 0;
277                 fid->f_oid = 0;
278                 osp_objid_buf_prep(&osi->osi_lb, &osi->osi_off, &osi->osi_id,
279                                    osp->opd_index);
280                 rc = osp_write_local_file(env, osp, dto, &osi->osi_lb,
281                                           osi->osi_off);
282                 if (rc != 0)
283                         GOTO(out, rc);
284         }
285         osp->opd_last_used_oid_file = dto;
286         RETURN(0);
287 out:
288         /* object will be released in device cleanup path */
289         CERROR("%s: can't initialize lov_objid: rc = %d\n",
290                osp->opd_obd->obd_name, rc);
291         dt_object_put(env, dto);
292         osp->opd_last_used_oid_file = NULL;
293         RETURN(rc);
294 }
295
296 /**
297  * Initialize last sequence object.
298  *
299  * This function initializes the LAST_SEQ file in the local OSD, which stores
300  * the current last used sequence of data objects. The MDT will use the last
301  * sequence and last id (\see osp_init_last_objid()) to synchronize the
302  * precreate object cache with OSTs.
303  *
304  * \param[in] env       execution environment
305  * \param[in] osp       OSP device
306  *
307  * \retval 0            0 if initialization succeed
308  * \retval negative     negative errno if initialization failed
309  */
310 static int osp_init_last_seq(const struct lu_env *env, struct osp_device *osp)
311 {
312         struct osp_thread_info  *osi = osp_env_info(env);
313         struct lu_fid           *fid = &osp->opd_last_used_fid;
314         struct dt_object        *dto;
315         int                     rc = -EFAULT;
316         ENTRY;
317
318         dto = osp_find_or_create_local_file(env, osp, &osi->osi_attr,
319                                             MDD_LOV_OBJ_OSEQ);
320         if (IS_ERR(dto))
321                 RETURN(PTR_ERR(dto));
322
323         /* object will be released in device cleanup path */
324         if (osi->osi_attr.la_size >=
325             sizeof(osi->osi_id) * (osp->opd_index + 1)) {
326                 osp_objseq_buf_prep(&osi->osi_lb, &osi->osi_off, &fid->f_seq,
327                                    osp->opd_index);
328                 rc = dt_record_read(env, dto, &osi->osi_lb, &osi->osi_off);
329                 if (rc != 0 && rc != -EFAULT)
330                         GOTO(out, rc);
331                 if (fid_is_idif(fid))
332                         fid->f_seq = fid_idif_seq(osi->osi_id, osp->opd_index);
333         }
334
335         if (rc == -EFAULT) { /* fresh OSP */
336                 fid->f_seq = 0;
337                 osp_objseq_buf_prep(&osi->osi_lb, &osi->osi_off, &fid->f_seq,
338                                     osp->opd_index);
339                 rc = osp_write_local_file(env, osp, dto, &osi->osi_lb,
340                                           osi->osi_off);
341                 if (rc != 0)
342                         GOTO(out, rc);
343         }
344         osp->opd_last_used_seq_file = dto;
345         RETURN(0);
346 out:
347         /* object will be released in device cleanup path */
348         CERROR("%s: can't initialize lov_seq: rc = %d\n",
349                osp->opd_obd->obd_name, rc);
350         dt_object_put(env, dto);
351         osp->opd_last_used_seq_file = NULL;
352         RETURN(rc);
353 }
354
355 /**
356  * Initialize last OID and sequence object.
357  *
358  * If the MDT is just upgraded to 2.4 from the lower version, where the
359  * LAST_SEQ file does not exist, the file will be created and IDIF sequence
360  * will be written into the file.
361  *
362  * \param[in] env       execution environment
363  * \param[in] osp       OSP device
364  *
365  * \retval 0            0 if initialization succeed
366  * \retval negative     negative error if initialization failed
367  */
368 static int osp_last_used_init(const struct lu_env *env, struct osp_device *osp)
369 {
370         struct osp_thread_info *osi = osp_env_info(env);
371         int                  rc;
372         ENTRY;
373
374         fid_zero(&osp->opd_last_used_fid);
375         rc = osp_init_last_objid(env, osp);
376         if (rc < 0) {
377                 CERROR("%s: Can not get ids %d from old objid!\n",
378                        osp->opd_obd->obd_name, rc);
379                 RETURN(rc);
380         }
381
382         rc = osp_init_last_seq(env, osp);
383         if (rc < 0) {
384                 CERROR("%s: Can not get sequence %d from old objseq!\n",
385                        osp->opd_obd->obd_name, rc);
386                 GOTO(out, rc);
387         }
388
389         if (fid_oid(&osp->opd_last_used_fid) != 0 &&
390             fid_seq(&osp->opd_last_used_fid) == 0) {
391                 /* Just upgrade from the old version,
392                  * set the seq to be IDIF */
393                 osp->opd_last_used_fid.f_seq =
394                    fid_idif_seq(fid_oid(&osp->opd_last_used_fid),
395                                 osp->opd_index);
396                 osp_objseq_buf_prep(&osi->osi_lb, &osi->osi_off,
397                                     &osp->opd_last_used_fid.f_seq,
398                                     osp->opd_index);
399                 rc = osp_write_local_file(env, osp, osp->opd_last_used_seq_file,
400                                           &osi->osi_lb, osi->osi_off);
401                 if (rc) {
402                         CERROR("%s : Can not write seq file: rc = %d\n",
403                                osp->opd_obd->obd_name, rc);
404                         GOTO(out, rc);
405                 }
406         }
407
408         if (!fid_is_zero(&osp->opd_last_used_fid) &&
409                  !fid_is_sane(&osp->opd_last_used_fid)) {
410                 CERROR("%s: Got invalid FID "DFID"\n", osp->opd_obd->obd_name,
411                         PFID(&osp->opd_last_used_fid));
412                 GOTO(out, rc = -EINVAL);
413         }
414
415         CDEBUG(D_INFO, "%s: Init last used fid "DFID"\n",
416                osp->opd_obd->obd_name, PFID(&osp->opd_last_used_fid));
417 out:
418         if (rc != 0) {
419                 if (osp->opd_last_used_oid_file != NULL) {
420                         dt_object_put(env, osp->opd_last_used_oid_file);
421                         osp->opd_last_used_oid_file = NULL;
422                 }
423                 if (osp->opd_last_used_seq_file != NULL) {
424                         dt_object_put(env, osp->opd_last_used_seq_file);
425                         osp->opd_last_used_seq_file = NULL;
426                 }
427         }
428
429         RETURN(rc);
430 }
431
432 /**
433  * Release the last sequence and OID file objects in OSP device.
434  *
435  * \param[in] env       execution environment
436  * \param[in] osp       OSP device
437  */
438 static void osp_last_used_fini(const struct lu_env *env, struct osp_device *osp)
439 {
440         /* release last_used file */
441         if (osp->opd_last_used_oid_file != NULL) {
442                 dt_object_put(env, osp->opd_last_used_oid_file);
443                 osp->opd_last_used_oid_file = NULL;
444         }
445
446         if (osp->opd_last_used_seq_file != NULL) {
447                 dt_object_put(env, osp->opd_last_used_seq_file);
448                 osp->opd_last_used_seq_file = NULL;
449         }
450 }
451
452 /**
453  * Disconnects the connection between OSP and its correspondent MDT or OST, and
454  * the import will be marked as inactive. It will only be called during OSP
455  * cleanup process.
456  *
457  * \param[in] d         OSP device being disconnected
458  *
459  * \retval 0            0 if disconnection succeed
460  * \retval negative     negative errno if disconnection failed
461  */
462 static int osp_disconnect(struct osp_device *d)
463 {
464         struct obd_device *obd = d->opd_obd;
465         struct obd_import *imp;
466         int rc = 0;
467
468         imp = obd->u.cli.cl_import;
469
470         /* Mark import deactivated now, so we don't try to reconnect if any
471          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
472          * fully deactivate the import, or that would drop all requests. */
473         LASSERT(imp != NULL);
474         spin_lock(&imp->imp_lock);
475         imp->imp_deactive = 1;
476         spin_unlock(&imp->imp_lock);
477
478         ptlrpc_deactivate_import(imp);
479
480         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
481          * delete it regardless.  (It's safe to delete an import that was
482          * never added.) */
483         (void)ptlrpc_pinger_del_import(imp);
484
485         rc = ptlrpc_disconnect_import(imp, 0);
486         if (rc != 0)
487                 CERROR("%s: can't disconnect: rc = %d\n", obd->obd_name, rc);
488
489         ptlrpc_invalidate_import(imp);
490
491         RETURN(rc);
492 }
493
494 /**
495  * Initialize the osp_update structure in OSP device
496  *
497  * Allocate osp update structure and start update thread.
498  *
499  * \param[in] osp       OSP device
500  *
501  * \retval              0 if initialization succeeds.
502  * \retval              negative errno if initialization fails.
503  */
504 static int osp_update_init(struct osp_device *osp)
505 {
506         struct l_wait_info      lwi = { 0 };
507         struct task_struct      *task;
508
509         ENTRY;
510
511         LASSERT(osp->opd_connect_mdt);
512
513         if (osp->opd_storage->dd_rdonly)
514                 RETURN(0);
515
516         OBD_ALLOC_PTR(osp->opd_update);
517         if (osp->opd_update == NULL)
518                 RETURN(-ENOMEM);
519
520         init_waitqueue_head(&osp->opd_update_thread.t_ctl_waitq);
521         init_waitqueue_head(&osp->opd_update->ou_waitq);
522         spin_lock_init(&osp->opd_update->ou_lock);
523         INIT_LIST_HEAD(&osp->opd_update->ou_list);
524         osp->opd_update->ou_rpc_version = 1;
525         osp->opd_update->ou_version = 1;
526         osp->opd_update->ou_generation = 0;
527
528         /* start thread handling sending updates to the remote MDT */
529         task = kthread_run(osp_send_update_thread, osp,
530                            "osp_up%u-%u", osp->opd_index, osp->opd_group);
531         if (IS_ERR(task)) {
532                 int rc = PTR_ERR(task);
533
534                 OBD_FREE_PTR(osp->opd_update);
535                 osp->opd_update = NULL;
536                 CERROR("%s: can't start precreate thread: rc = %d\n",
537                        osp->opd_obd->obd_name, rc);
538                 RETURN(rc);
539         }
540
541         l_wait_event(osp->opd_update_thread.t_ctl_waitq,
542                      osp_send_update_thread_running(osp) ||
543                      osp_send_update_thread_stopped(osp), &lwi);
544
545         RETURN(0);
546 }
547
548 /**
549  * Finialize osp_update structure in OSP device
550  *
551  * Stop the OSP update sending thread, then delete the left
552  * osp thandle in the sending list.
553  *
554  * \param [in] osp      OSP device.
555  */
556 static void osp_update_fini(const struct lu_env *env, struct osp_device *osp)
557 {
558         struct osp_update_request *our;
559         struct osp_update_request *tmp;
560         struct osp_updates *ou = osp->opd_update;
561
562         if (ou == NULL)
563                 return;
564
565         osp->opd_update_thread.t_flags = SVC_STOPPING;
566         wake_up(&ou->ou_waitq);
567
568         wait_event(osp->opd_update_thread.t_ctl_waitq,
569                    osp->opd_update_thread.t_flags & SVC_STOPPED);
570
571         /* Remove the left osp thandle from the list */
572         spin_lock(&ou->ou_lock);
573         list_for_each_entry_safe(our, tmp, &ou->ou_list,
574                                  our_list) {
575                 list_del_init(&our->our_list);
576                 LASSERT(our->our_th != NULL);
577                 osp_trans_callback(env, our->our_th, -EIO);
578                 /* our will be destroyed in osp_thandle_put() */
579                 osp_thandle_put(env, our->our_th);
580         }
581         spin_unlock(&ou->ou_lock);
582
583         OBD_FREE_PTR(ou);
584         osp->opd_update = NULL;
585 }
586
587 /**
588  * Cleanup OSP, which includes disconnect import, cleanup unlink log, stop
589  * precreate threads etc.
590  *
591  * \param[in] env       execution environment.
592  * \param[in] d         OSP device being disconnected.
593  *
594  * \retval 0            0 if cleanup succeed
595  * \retval negative     negative errno if cleanup failed
596  */
597 static int osp_shutdown(const struct lu_env *env, struct osp_device *d)
598 {
599         int                      rc = 0;
600         ENTRY;
601
602         LASSERT(env);
603
604         rc = osp_disconnect(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 obd_device               *obd = d->opd_obd;
641         int                              rc;
642
643         ENTRY;
644
645         switch (lcfg->lcfg_command) {
646         case LCFG_PRE_CLEANUP:
647                 rc = osp_disconnect(d);
648                 osp_update_fini(env, d);
649                 if (obd->obd_namespace != NULL)
650                         ldlm_namespace_free_prior(obd->obd_namespace, NULL, 1);
651                 break;
652         case LCFG_CLEANUP:
653                 lu_dev_del_linkage(dev->ld_site, dev);
654                 rc = osp_shutdown(env, d);
655                 break;
656         case LCFG_PARAM:
657                 LASSERT(obd);
658                 rc = class_process_proc_param(d->opd_connect_mdt ?
659                                               PARAM_OSP : PARAM_OSC,
660                                               obd->obd_vars, lcfg, obd);
661                 if (rc > 0)
662                         rc = 0;
663                 if (rc == -ENOSYS) {
664                         /* class_process_proc_param() haven't found matching
665                          * parameter and returned ENOSYS so that layer(s)
666                          * below could use that. But OSP is the bottom, so
667                          * just ignore it */
668                         CERROR("%s: unknown param %s\n",
669                                (char *)lustre_cfg_string(lcfg, 0),
670                                (char *)lustre_cfg_string(lcfg, 1));
671                         rc = 0;
672                 }
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         if (d->opd_pre == NULL)
747                 RETURN(0);
748
749         /* return recently updated data */
750         *sfs = d->opd_statfs;
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         LASSERTF(fid_seq(&d->opd_pre_last_created_fid) ==
758                  fid_seq(&d->opd_pre_used_fid),
759                  "last_created "DFID", next_fid "DFID"\n",
760                  PFID(&d->opd_pre_last_created_fid),
761                  PFID(&d->opd_pre_used_fid));
762         sfs->os_fprecreated = fid_oid(&d->opd_pre_last_created_fid) -
763                               fid_oid(&d->opd_pre_used_fid);
764         sfs->os_fprecreated -= d->opd_pre_reserved;
765         LASSERTF(sfs->os_fprecreated <= OST_MAX_PRECREATE * 2,
766                  "last_created "DFID", next_fid "DFID", reserved %llu\n",
767                  PFID(&d->opd_pre_last_created_fid), PFID(&d->opd_pre_used_fid),
768                  d->opd_pre_reserved);
769         spin_unlock(&d->opd_pre_lock);
770
771         CDEBUG(D_OTHER, "%s: %llu blocks, %llu free, %llu avail, "
772                "%llu files, %llu free files\n", d->opd_obd->obd_name,
773                sfs->os_blocks, sfs->os_bfree, sfs->os_bavail,
774                sfs->os_files, sfs->os_ffree);
775         RETURN(0);
776 }
777
778 static int osp_sync_timeout(void *data)
779 {
780         return 1;
781 }
782
783 /**
784  * Implementation of dt_device_operations::dt_sync
785  *
786  * This function synchronizes the OSP cache to the remote target. It wakes
787  * up unlink log threads and sends out unlink records to the remote OST.
788  *
789  * \param[in] env       execution environment
790  * \param[in] dev       dt_device of OSP
791  *
792  * \retval 0            0 if synchronization succeeds
793  * \retval negative     negative errno if synchronization fails
794  */
795 static int osp_sync(const struct lu_env *env, struct dt_device *dev)
796 {
797         struct osp_device *d = dt2osp_dev(dev);
798         cfs_time_t         expire;
799         struct l_wait_info lwi = { 0 };
800         int recs, rc = 0;
801         unsigned long start = cfs_time_current();
802         __u64 old;
803
804         ENTRY;
805
806         /* No Sync between MDTs yet. */
807         if (d->opd_connect_mdt)
808                 RETURN(0);
809
810         recs = atomic_read(&d->opd_sync_changes);
811         old = atomic64_read(&d->opd_sync_processed_recs);
812
813         osp_sync_force(env, dt2osp_dev(dev));
814
815         if (unlikely(d->opd_imp_active == 0))
816                 RETURN(-ENOTCONN);
817
818         down_write(&d->opd_async_updates_rwsem);
819
820         CDEBUG(D_OTHER, "%s: async updates %d\n", d->opd_obd->obd_name,
821                atomic_read(&d->opd_async_updates_count));
822
823         /* make sure the connection is fine */
824         expire = cfs_time_shift(obd_timeout);
825         lwi = LWI_TIMEOUT(expire - cfs_time_current(), osp_sync_timeout, d);
826         rc = l_wait_event(d->opd_sync_barrier_waitq,
827                           atomic_read(&d->opd_async_updates_count) == 0,
828                           &lwi);
829         up_write(&d->opd_async_updates_rwsem);
830         if (rc != 0)
831                 GOTO(out, rc);
832
833         CDEBUG(D_CACHE, "%s: processed %lu\n", d->opd_obd->obd_name,
834                atomic64_read(&d->opd_sync_processed_recs));
835
836         while (atomic64_read(&d->opd_sync_processed_recs) < old + recs) {
837                 __u64 last = atomic64_read(&d->opd_sync_processed_recs);
838                 /* make sure the connection is fine */
839                 expire = cfs_time_shift(obd_timeout);
840                 lwi = LWI_TIMEOUT(expire - cfs_time_current(),
841                                   osp_sync_timeout, d);
842                 l_wait_event(d->opd_sync_barrier_waitq,
843                              atomic64_read(&d->opd_sync_processed_recs)
844                              >= old + recs, &lwi);
845
846                 if (atomic64_read(&d->opd_sync_processed_recs) >= old + recs)
847                         break;
848
849                 if (atomic64_read(&d->opd_sync_processed_recs) != last) {
850                         /* some progress have been made,
851                          * keep trying... */
852                         continue;
853                 }
854
855                 /* no changes and expired, something is wrong */
856                 GOTO(out, rc = -ETIMEDOUT);
857         }
858
859         /* block new processing (barrier>0 - few callers are possible */
860         atomic_inc(&d->opd_sync_barrier);
861
862         CDEBUG(D_CACHE, "%s: %u in flight\n", d->opd_obd->obd_name,
863                atomic_read(&d->opd_sync_rpcs_in_flight));
864
865         /* wait till all-in-flight are replied, so executed by the target */
866         /* XXX: this is used by LFSCK at the moment, which doesn't require
867          *      all the changes to be committed, but in general it'd be
868          *      better to wait till commit */
869         while (atomic_read(&d->opd_sync_rpcs_in_flight) > 0) {
870                 old = atomic_read(&d->opd_sync_rpcs_in_flight);
871
872                 expire = cfs_time_shift(obd_timeout);
873                 lwi = LWI_TIMEOUT(expire - cfs_time_current(),
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 %lu: rc = %d\n", d->opd_obd->obd_name,
897                cfs_time_current() - 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         class_uuid_t            uuid;
1018         char                    *src, *tgt, *mdt, *osdname = NULL;
1019         int                     rc;
1020         long                    idx;
1021
1022         ENTRY;
1023
1024         mutex_init(&osp->opd_async_requests_mutex);
1025         INIT_LIST_HEAD(&osp->opd_async_updates);
1026         init_rwsem(&osp->opd_async_updates_rwsem);
1027         atomic_set(&osp->opd_async_updates_count, 0);
1028
1029         obd = class_name2obd(lustre_cfg_string(cfg, 0));
1030         if (obd == NULL) {
1031                 CERROR("Cannot find obd with name %s\n",
1032                        lustre_cfg_string(cfg, 0));
1033                 RETURN(-ENODEV);
1034         }
1035         osp->opd_obd = obd;
1036
1037         src = lustre_cfg_string(cfg, 0);
1038         if (src == NULL)
1039                 RETURN(-EINVAL);
1040
1041         tgt = strrchr(src, '-');
1042         if (tgt == NULL) {
1043                 CERROR("%s: invalid target name %s: rc = %d\n",
1044                        osp->opd_obd->obd_name, lustre_cfg_string(cfg, 0),
1045                        -EINVAL);
1046                 RETURN(-EINVAL);
1047         }
1048
1049         if (strncmp(tgt, "-osc", 4) == 0) {
1050                 /* Old OSC name fsname-OSTXXXX-osc */
1051                 for (tgt--; tgt > src && *tgt != '-'; tgt--)
1052                         ;
1053                 if (tgt == src) {
1054                         CERROR("%s: invalid target name %s: rc = %d\n",
1055                                osp->opd_obd->obd_name,
1056                                lustre_cfg_string(cfg, 0), -EINVAL);
1057                         RETURN(-EINVAL);
1058                 }
1059
1060                 if (strncmp(tgt, "-OST", 4) != 0) {
1061                         CERROR("%s: invalid target name %s: rc = %d\n",
1062                                osp->opd_obd->obd_name,
1063                                lustre_cfg_string(cfg, 0), -EINVAL);
1064                         RETURN(-EINVAL);
1065                 }
1066
1067                 idx = simple_strtol(tgt + 4, &mdt, 16);
1068                 if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
1069                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1070                                osp->opd_obd->obd_name, src, -EINVAL);
1071                         RETURN(-EINVAL);
1072                 }
1073                 osp->opd_index = idx;
1074                 osp->opd_group = 0;
1075                 idx = tgt - src;
1076         } else {
1077                 /* New OSC name fsname-OSTXXXX-osc-MDTXXXX */
1078                 if (strncmp(tgt, "-MDT", 4) != 0 &&
1079                     strncmp(tgt, "-OST", 4) != 0) {
1080                         CERROR("%s: invalid target name %s: rc = %d\n",
1081                                osp->opd_obd->obd_name,
1082                                lustre_cfg_string(cfg, 0), -EINVAL);
1083                         RETURN(-EINVAL);
1084                 }
1085
1086                 idx = simple_strtol(tgt + 4, &mdt, 16);
1087                 if (*mdt != '\0' || idx > INT_MAX || idx < 0) {
1088                         CERROR("%s: invalid OST index in '%s': rc = %d\n",
1089                                osp->opd_obd->obd_name, src, -EINVAL);
1090                         RETURN(-EINVAL);
1091                 }
1092
1093                 /* Get MDT index from the name and set it to opd_group,
1094                  * which will be used by OSP to connect with OST */
1095                 osp->opd_group = idx;
1096                 if (tgt - src <= 12) {
1097                         CERROR("%s: invalid mdt index from %s: rc =%d\n",
1098                                osp->opd_obd->obd_name,
1099                                lustre_cfg_string(cfg, 0), -EINVAL);
1100                         RETURN(-EINVAL);
1101                 }
1102
1103                 if (strncmp(tgt - 12, "-MDT", 4) == 0)
1104                         osp->opd_connect_mdt = 1;
1105
1106                 idx = simple_strtol(tgt - 8, &mdt, 16);
1107                 if (mdt[0] != '-' || idx > INT_MAX || idx < 0) {
1108                         CERROR("%s: invalid OST index in '%s': rc =%d\n",
1109                                osp->opd_obd->obd_name, src, -EINVAL);
1110                         RETURN(-EINVAL);
1111                 }
1112
1113                 osp->opd_index = idx;
1114                 idx = tgt - src - 12;
1115         }
1116         /* check the fsname length, and after this everything else will fit */
1117         if (idx > MTI_NAME_MAXLEN) {
1118                 CERROR("%s: fsname too long in '%s': rc = %d\n",
1119                        osp->opd_obd->obd_name, src, -EINVAL);
1120                 RETURN(-EINVAL);
1121         }
1122
1123         OBD_ALLOC(osdname, MAX_OBD_NAME);
1124         if (osdname == NULL)
1125                 RETURN(-ENOMEM);
1126
1127         memcpy(osdname, src, idx); /* copy just the fsname part */
1128         osdname[idx] = '\0';
1129
1130         mdt = strstr(mdt, "-MDT");
1131         if (mdt == NULL) /* 1.8 configs don't have "-MDT0000" at the end */
1132                 strcat(osdname, "-MDT0000");
1133         else
1134                 strcat(osdname, mdt);
1135         strcat(osdname, "-osd");
1136         CDEBUG(D_HA, "%s: connect to %s (%s)\n", obd->obd_name, osdname, src);
1137
1138         if (osp->opd_connect_mdt) {
1139                 struct client_obd *cli = &osp->opd_obd->u.cli;
1140
1141                 OBD_ALLOC(cli->cl_rpc_lock, sizeof(*cli->cl_rpc_lock));
1142                 if (!cli->cl_rpc_lock)
1143                         GOTO(out_fini, rc = -ENOMEM);
1144                 osp_init_rpc_lock(cli->cl_rpc_lock);
1145         }
1146
1147         osp->opd_dt_dev.dd_lu_dev.ld_ops = &osp_lu_ops;
1148         osp->opd_dt_dev.dd_ops = &osp_dt_ops;
1149
1150         obd->obd_lu_dev = &osp->opd_dt_dev.dd_lu_dev;
1151
1152         rc = osp_connect_to_osd(env, osp, osdname);
1153         if (rc)
1154                 GOTO(out_fini, rc);
1155
1156         rc = ptlrpcd_addref();
1157         if (rc)
1158                 GOTO(out_disconnect, rc);
1159
1160         rc = client_obd_setup(obd, cfg);
1161         if (rc) {
1162                 CERROR("%s: can't setup obd: rc = %d\n", osp->opd_obd->obd_name,
1163                        rc);
1164                 GOTO(out_ref, rc);
1165         }
1166
1167         osp_lprocfs_init(osp);
1168
1169         rc = obd_fid_init(osp->opd_obd, NULL, osp->opd_connect_mdt ?
1170                           LUSTRE_SEQ_METADATA : LUSTRE_SEQ_DATA);
1171         if (rc) {
1172                 CERROR("%s: fid init error: rc = %d\n",
1173                        osp->opd_obd->obd_name, rc);
1174                 GOTO(out_proc, rc);
1175         }
1176
1177         if (!osp->opd_connect_mdt) {
1178                 /* Initialize last id from the storage - will be
1179                  * used in orphan cleanup. */
1180                 if (!osp->opd_storage->dd_rdonly) {
1181                         rc = osp_last_used_init(env, osp);
1182                         if (rc)
1183                                 GOTO(out_fid, rc);
1184                 }
1185
1186                 /* Initialize precreation thread, it handles new
1187                  * connections as well. */
1188                 rc = osp_init_precreate(osp);
1189                 if (rc)
1190                         GOTO(out_last_used, rc);
1191
1192                 /*
1193                  * Initialize synhronization mechanism taking
1194                  * care of propogating changes to OST in near
1195                  * transactional manner.
1196                  */
1197                 rc = osp_sync_init(env, osp);
1198                 if (rc < 0)
1199                         GOTO(out_precreat, rc);
1200         } else {
1201                 rc = osp_update_init(osp);
1202                 if (rc != 0)
1203                         GOTO(out_fid, rc);
1204         }
1205
1206         ns_register_cancel(obd->obd_namespace, osp_cancel_weight);
1207
1208         /*
1209          * Initiate connect to OST
1210          */
1211         ll_generate_random_uuid(uuid);
1212         class_uuid_unparse(uuid, &osp->opd_cluuid);
1213
1214         imp = obd->u.cli.cl_import;
1215
1216         rc = ptlrpc_init_import(imp);
1217         if (rc)
1218                 GOTO(out, rc);
1219         if (osdname)
1220                 OBD_FREE(osdname, MAX_OBD_NAME);
1221         RETURN(0);
1222
1223 out:
1224         if (!osp->opd_connect_mdt)
1225                 /* stop sync thread */
1226                 osp_sync_fini(osp);
1227 out_precreat:
1228         /* stop precreate thread */
1229         if (!osp->opd_connect_mdt)
1230                 osp_precreate_fini(osp);
1231         else
1232                 osp_update_fini(env, osp);
1233 out_last_used:
1234         if (!osp->opd_connect_mdt)
1235                 osp_last_used_fini(env, osp);
1236 out_fid:
1237         obd_fid_fini(osp->opd_obd);
1238 out_proc:
1239         ptlrpc_lprocfs_unregister_obd(obd);
1240         if (osp->opd_symlink)
1241                 lprocfs_remove(&osp->opd_symlink);
1242         client_obd_cleanup(obd);
1243 out_ref:
1244         ptlrpcd_decref();
1245 out_disconnect:
1246         if (osp->opd_connect_mdt) {
1247                 struct client_obd *cli = &osp->opd_obd->u.cli;
1248                 if (cli->cl_rpc_lock != NULL) {
1249                         OBD_FREE_PTR(cli->cl_rpc_lock);
1250                         cli->cl_rpc_lock = NULL;
1251                 }
1252         }
1253         obd_disconnect(osp->opd_storage_exp);
1254 out_fini:
1255         if (osdname)
1256                 OBD_FREE(osdname, MAX_OBD_NAME);
1257         RETURN(rc);
1258 }
1259
1260 /**
1261  * Implementation of lu_device_type_operations::ldto_device_free
1262  *
1263  * Free the OSP device in memory.  No return value is needed for now,
1264  * so always return NULL to comply with the interface.
1265  *
1266  * \param[in] env       execution environment
1267  * \param[in] lu        lu_device of OSP
1268  *
1269  * \retval NULL         NULL unconditionally
1270  */
1271 static struct lu_device *osp_device_free(const struct lu_env *env,
1272                                          struct lu_device *lu)
1273 {
1274         struct osp_device *osp = lu2osp_dev(lu);
1275
1276         if (atomic_read(&lu->ld_ref) && lu->ld_site) {
1277                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
1278                 lu_site_print(env, lu->ld_site, &msgdata, lu_cdebug_printer);
1279         }
1280         dt_device_fini(&osp->opd_dt_dev);
1281         OBD_FREE_PTR(osp);
1282
1283         return NULL;
1284 }
1285
1286 /**
1287  * Implementation of lu_device_type_operations::ldto_device_alloc
1288  *
1289  * This function allocates and initializes OSP device in memory according to
1290  * the config log.
1291  *
1292  * \param[in] env       execution environment
1293  * \param[in] type      device type of OSP
1294  * \param[in] lcfg      config log
1295  *
1296  * \retval pointer              the pointer of allocated OSP if succeed.
1297  * \retval ERR_PTR(errno)       ERR_PTR(errno) if failed.
1298  */
1299 static struct lu_device *osp_device_alloc(const struct lu_env *env,
1300                                           struct lu_device_type *type,
1301                                           struct lustre_cfg *lcfg)
1302 {
1303         struct osp_device *osp;
1304         struct lu_device  *ld;
1305
1306         OBD_ALLOC_PTR(osp);
1307         if (osp == NULL) {
1308                 ld = ERR_PTR(-ENOMEM);
1309         } else {
1310                 int rc;
1311
1312                 ld = osp2lu_dev(osp);
1313                 dt_device_init(&osp->opd_dt_dev, type);
1314                 rc = osp_init0(env, osp, type, lcfg);
1315                 if (rc != 0) {
1316                         osp_device_free(env, ld);
1317                         ld = ERR_PTR(rc);
1318                 }
1319         }
1320         return ld;
1321 }
1322
1323 /**
1324  * Implementation of lu_device_type_operations::ldto_device_fini
1325  *
1326  * This function cleans up the OSP device, i.e. release and free those
1327  * attached items in osp_device.
1328  *
1329  * \param[in] env       execution environment
1330  * \param[in] ld        lu_device of OSP
1331  *
1332  * \retval NULL                 NULL if cleanup succeeded.
1333  * \retval ERR_PTR(errno)       ERR_PTR(errno) if cleanup failed.
1334  */
1335 static struct lu_device *osp_device_fini(const struct lu_env *env,
1336                                          struct lu_device *ld)
1337 {
1338         struct osp_device *osp = lu2osp_dev(ld);
1339         int                rc;
1340
1341         ENTRY;
1342
1343         if (osp->opd_async_requests != NULL) {
1344                 osp_update_request_destroy(env, osp->opd_async_requests);
1345                 osp->opd_async_requests = NULL;
1346         }
1347
1348         if (osp->opd_storage_exp) {
1349                 /* wait for the commit callbacks to complete */
1350                 wait_event(osp->opd_sync_waitq,
1351                           atomic_read(&osp->opd_commits_registered) == 0);
1352                 obd_disconnect(osp->opd_storage_exp);
1353         }
1354
1355         if (osp->opd_symlink)
1356                 lprocfs_remove(&osp->opd_symlink);
1357
1358         LASSERT(osp->opd_obd);
1359         ptlrpc_lprocfs_unregister_obd(osp->opd_obd);
1360
1361         if (osp->opd_connect_mdt) {
1362                 struct client_obd *cli = &osp->opd_obd->u.cli;
1363                 if (cli->cl_rpc_lock != NULL) {
1364                         OBD_FREE_PTR(cli->cl_rpc_lock);
1365                         cli->cl_rpc_lock = NULL;
1366                 }
1367         }
1368
1369         rc = client_obd_cleanup(osp->opd_obd);
1370         if (rc != 0) {
1371                 ptlrpcd_decref();
1372                 RETURN(ERR_PTR(rc));
1373         }
1374
1375         ptlrpcd_decref();
1376
1377         RETURN(NULL);
1378 }
1379
1380 /**
1381  * Implementation of obd_ops::o_reconnect
1382  *
1383  * This function is empty and does not need to do anything for now.
1384  */
1385 static int osp_reconnect(const struct lu_env *env,
1386                          struct obd_export *exp, struct obd_device *obd,
1387                          struct obd_uuid *cluuid,
1388                          struct obd_connect_data *data,
1389                          void *localdata)
1390 {
1391         return 0;
1392 }
1393
1394 /*
1395  * Implementation of obd_ops::o_connect
1396  *
1397  * Connect OSP to the remote target (MDT or OST). Allocate the
1398  * export and return it to the LOD, which calls this function
1399  * for each OSP to connect it to the remote target. This function
1400  * is currently only called once per OSP.
1401  *
1402  * \param[in] env       execution environment
1403  * \param[out] exp      export connected to OSP
1404  * \param[in] obd       OSP device
1405  * \param[in] cluuid    OSP device client uuid
1406  * \param[in] data      connect_data to be used to connect to the remote
1407  *                      target
1408  * \param[in] localdata necessary for the API interface, but not used in
1409  *                      this function
1410  *
1411  * \retval 0            0 if the connection succeeded.
1412  * \retval negative     negative errno if the connection failed.
1413  */
1414 static int osp_obd_connect(const struct lu_env *env, struct obd_export **exp,
1415                            struct obd_device *obd, struct obd_uuid *cluuid,
1416                            struct obd_connect_data *data, void *localdata)
1417 {
1418         struct osp_device       *osp = lu2osp_dev(obd->obd_lu_dev);
1419         struct obd_connect_data *ocd;
1420         struct obd_import       *imp;
1421         struct lustre_handle     conn;
1422         int                      rc;
1423
1424         ENTRY;
1425
1426         CDEBUG(D_CONFIG, "connect #%d\n", osp->opd_connects);
1427
1428         rc = class_connect(&conn, obd, cluuid);
1429         if (rc)
1430                 RETURN(rc);
1431
1432         *exp = class_conn2export(&conn);
1433         /* Why should there ever be more than 1 connect? */
1434         osp->opd_connects++;
1435         LASSERT(osp->opd_connects == 1);
1436
1437         osp->opd_exp = *exp;
1438
1439         imp = osp->opd_obd->u.cli.cl_import;
1440         imp->imp_dlm_handle = conn;
1441
1442         LASSERT(data != NULL);
1443         LASSERT(data->ocd_connect_flags & OBD_CONNECT_INDEX);
1444         ocd = &imp->imp_connect_data;
1445         *ocd = *data;
1446
1447         imp->imp_connect_flags_orig = ocd->ocd_connect_flags;
1448         imp->imp_connect_flags2_orig = ocd->ocd_connect_flags2;
1449
1450         ocd->ocd_version = LUSTRE_VERSION_CODE;
1451         ocd->ocd_index = data->ocd_index;
1452
1453         rc = ptlrpc_connect_import(imp);
1454         if (rc) {
1455                 CERROR("%s: can't connect obd: rc = %d\n", obd->obd_name, rc);
1456                 GOTO(out, rc);
1457         } else {
1458                 osp->opd_obd->u.cli.cl_seq->lcs_exp =
1459                                 class_export_get(osp->opd_exp);
1460         }
1461
1462         ptlrpc_pinger_add_import(imp);
1463 out:
1464         RETURN(rc);
1465 }
1466
1467 /**
1468  * Implementation of obd_ops::o_disconnect
1469  *
1470  * Disconnect the export for the OSP.  This is called by LOD to release the
1471  * OSP during cleanup (\see lod_del_device()). The OSP will be released after
1472  * the export is released.
1473  *
1474  * \param[in] exp       export to be disconnected.
1475  *
1476  * \retval 0            0 if disconnection succeed
1477  * \retval negative     negative errno if disconnection failed
1478  */
1479 static int osp_obd_disconnect(struct obd_export *exp)
1480 {
1481         struct obd_device *obd = exp->exp_obd;
1482         struct osp_device *osp = lu2osp_dev(obd->obd_lu_dev);
1483         int                rc;
1484         ENTRY;
1485
1486         /* Only disconnect the underlying layers on the final disconnect. */
1487         LASSERT(osp->opd_connects == 1);
1488         osp->opd_connects--;
1489
1490         rc = class_disconnect(exp);
1491         if (rc) {
1492                 CERROR("%s: class disconnect error: rc = %d\n",
1493                        obd->obd_name, rc);
1494                 RETURN(rc);
1495         }
1496
1497         /* destroy the device */
1498         class_manual_cleanup(obd);
1499
1500         RETURN(rc);
1501 }
1502
1503 /**
1504  * Implementation of obd_ops::o_statfs
1505  *
1506  * Send a RPC to the remote target to get statfs status. This is only used
1507  * in lprocfs helpers by obd_statfs.
1508  *
1509  * \param[in] env       execution environment
1510  * \param[in] exp       connection state from this OSP to the parent (LOD)
1511  *                      device
1512  * \param[out] osfs     hold the statfs result
1513  * \param[in] unused    Not used in this function for now
1514  * \param[in] flags     flags to indicate how OSP will issue the RPC
1515  *
1516  * \retval 0            0 if statfs succeeded.
1517  * \retval negative     negative errno if statfs failed.
1518  */
1519 static int osp_obd_statfs(const struct lu_env *env, struct obd_export *exp,
1520                           struct obd_statfs *osfs, __u64 unused, __u32 flags)
1521 {
1522         struct obd_statfs       *msfs;
1523         struct ptlrpc_request   *req;
1524         struct obd_import       *imp = NULL;
1525         int                      rc;
1526
1527         ENTRY;
1528
1529         /* Since the request might also come from lprocfs, so we need
1530          * sync this with client_disconnect_export Bug15684 */
1531         down_read(&exp->exp_obd->u.cli.cl_sem);
1532         if (exp->exp_obd->u.cli.cl_import)
1533                 imp = class_import_get(exp->exp_obd->u.cli.cl_import);
1534         up_read(&exp->exp_obd->u.cli.cl_sem);
1535         if (!imp)
1536                 RETURN(-ENODEV);
1537
1538         req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
1539
1540         class_import_put(imp);
1541
1542         if (req == NULL)
1543                 RETURN(-ENOMEM);
1544
1545         rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
1546         if (rc) {
1547                 ptlrpc_request_free(req);
1548                 RETURN(rc);
1549         }
1550         ptlrpc_request_set_replen(req);
1551         req->rq_request_portal = OST_CREATE_PORTAL;
1552         ptlrpc_at_set_req_timeout(req);
1553
1554         if (flags & OBD_STATFS_NODELAY) {
1555                 /* procfs requests not want stat in wait for avoid deadlock */
1556                 req->rq_no_resend = 1;
1557                 req->rq_no_delay = 1;
1558         }
1559
1560         rc = ptlrpc_queue_wait(req);
1561         if (rc)
1562                 GOTO(out, rc);
1563
1564         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1565         if (msfs == NULL)
1566                 GOTO(out, rc = -EPROTO);
1567
1568         *osfs = *msfs;
1569
1570         EXIT;
1571 out:
1572         ptlrpc_req_finished(req);
1573         return rc;
1574 }
1575
1576 /**
1577  * Implementation of obd_ops::o_import_event
1578  *
1579  * This function is called when some related import event happens. It will
1580  * mark the necessary flags according to the event and notify the necessary
1581  * threads (mainly precreate thread).
1582  *
1583  * \param[in] obd       OSP OBD device
1584  * \param[in] imp       import attached from OSP to remote (OST/MDT) service
1585  * \param[in] event     event related to remote service (IMP_EVENT_*)
1586  *
1587  * \retval 0            0 if the event handling succeeded.
1588  * \retval negative     negative errno if the event handling failed.
1589  */
1590 static int osp_import_event(struct obd_device *obd, struct obd_import *imp,
1591                             enum obd_import_event event)
1592 {
1593         struct osp_device *d = lu2osp_dev(obd->obd_lu_dev);
1594         int rc;
1595
1596         switch (event) {
1597         case IMP_EVENT_DISCON:
1598                 d->opd_got_disconnected = 1;
1599                 d->opd_imp_connected = 0;
1600                 if (d->opd_connect_mdt)
1601                         break;
1602
1603                 if (d->opd_pre != NULL) {
1604                         osp_pre_update_status(d, -ENODEV);
1605                         wake_up(&d->opd_pre_waitq);
1606                 }
1607
1608                 CDEBUG(D_HA, "got disconnected\n");
1609                 break;
1610         case IMP_EVENT_INACTIVE:
1611                 d->opd_imp_active = 0;
1612                 d->opd_imp_connected = 0;
1613                 d->opd_obd->obd_inactive = 1;
1614                 if (d->opd_connect_mdt)
1615                         break;
1616                 if (d->opd_pre != NULL) {
1617                         /* Import is invalid, we can`t get stripes so
1618                          * wakeup waiters */
1619                         rc = imp->imp_deactive ? -ESHUTDOWN : -ENODEV;
1620                         osp_pre_update_status(d, rc);
1621                         wake_up(&d->opd_pre_waitq);
1622                 }
1623
1624                 CDEBUG(D_HA, "got inactive\n");
1625                 break;
1626         case IMP_EVENT_ACTIVE:
1627                 d->opd_imp_active = 1;
1628
1629                 if (d->opd_got_disconnected)
1630                         d->opd_new_connection = 1;
1631                 d->opd_imp_connected = 1;
1632                 d->opd_imp_seen_connected = 1;
1633                 d->opd_obd->obd_inactive = 0;
1634                 if (d->opd_connect_mdt)
1635                         break;
1636
1637                 if (d->opd_pre != NULL)
1638                         wake_up(&d->opd_pre_waitq);
1639
1640                 osp_sync_check_for_work(d);
1641                 CDEBUG(D_HA, "got connected\n");
1642                 break;
1643         case IMP_EVENT_INVALIDATE:
1644                 if (d->opd_connect_mdt)
1645                         osp_invalidate_request(d);
1646
1647                 if (obd->obd_namespace == NULL)
1648                         break;
1649                 ldlm_namespace_cleanup(obd->obd_namespace, LDLM_FL_LOCAL_ONLY);
1650                 break;
1651         case IMP_EVENT_OCD:
1652         case IMP_EVENT_DEACTIVATE:
1653         case IMP_EVENT_ACTIVATE:
1654                 break;
1655         default:
1656                 CERROR("%s: unsupported import event: %#x\n",
1657                        obd->obd_name, event);
1658         }
1659         return 0;
1660 }
1661
1662 /**
1663  * Implementation of obd_ops: o_iocontrol
1664  *
1665  * This function is the ioctl handler for OSP. Note: lctl will access the OSP
1666  * directly by ioctl, instead of through the MDS stack.
1667  *
1668  * param[in] cmd        ioctl command.
1669  * param[in] exp        export of this OSP.
1670  * param[in] len        data length of \a karg.
1671  * param[in] karg       input argument which is packed as
1672  *                      obd_ioctl_data
1673  * param[out] uarg      pointer to userspace buffer (must access by
1674  *                      copy_to_user()).
1675  *
1676  * \retval 0            0 if the ioctl handling succeeded.
1677  * \retval negative     negative errno if the ioctl handling failed.
1678  */
1679 static int osp_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1680                          void *karg, void __user *uarg)
1681 {
1682         struct obd_device       *obd = exp->exp_obd;
1683         struct osp_device       *d;
1684         struct obd_ioctl_data   *data = karg;
1685         int                      rc = 0;
1686
1687         ENTRY;
1688
1689         LASSERT(obd->obd_lu_dev);
1690         d = lu2osp_dev(obd->obd_lu_dev);
1691         LASSERT(d->opd_dt_dev.dd_ops == &osp_dt_ops);
1692
1693         if (!try_module_get(THIS_MODULE)) {
1694                 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
1695                        module_name(THIS_MODULE));
1696                 return -EINVAL;
1697         }
1698
1699         switch (cmd) {
1700         case OBD_IOC_CLIENT_RECOVER:
1701                 rc = ptlrpc_recover_import(obd->u.cli.cl_import,
1702                                            data->ioc_inlbuf1, 0);
1703                 if (rc > 0)
1704                         rc = 0;
1705                 break;
1706         case IOC_OSC_SET_ACTIVE:
1707                 rc = ptlrpc_set_import_active(obd->u.cli.cl_import,
1708                                               data->ioc_offset);
1709                 break;
1710         case OBD_IOC_PING_TARGET:
1711                 rc = ptlrpc_obd_ping(obd);
1712                 break;
1713         default:
1714                 CERROR("%s: unrecognized ioctl %#x by %s\n", obd->obd_name,
1715                        cmd, current_comm());
1716                 rc = -ENOTTY;
1717         }
1718         module_put(THIS_MODULE);
1719         return rc;
1720 }
1721
1722
1723 /**
1724  * Implementation of obd_ops::o_get_info
1725  *
1726  * Retrieve information by key. Retrieval starts from the top layer
1727  * (MDT) of the MDS stack and traverses the stack by calling the
1728  * obd_get_info() method of the next sub-layer.
1729  *
1730  * \param[in] env       execution environment
1731  * \param[in] exp       export of this OSP
1732  * \param[in] keylen    length of \a key
1733  * \param[in] key       the key
1734  * \param[out] vallen   length of \a val
1735  * \param[out] val      holds the value returned by the key
1736  *
1737  * \retval 0            0 if getting information succeeded.
1738  * \retval negative     negative errno if getting information failed.
1739  */
1740 static int osp_obd_get_info(const struct lu_env *env, struct obd_export *exp,
1741                             __u32 keylen, void *key, __u32 *vallen, void *val)
1742 {
1743         int rc = -EINVAL;
1744
1745         if (KEY_IS(KEY_OSP_CONNECTED)) {
1746                 struct obd_device       *obd = exp->exp_obd;
1747                 struct osp_device       *osp;
1748
1749                 if (!obd->obd_set_up || obd->obd_stopping)
1750                         RETURN(-EAGAIN);
1751
1752                 osp = lu2osp_dev(obd->obd_lu_dev);
1753                 LASSERT(osp);
1754                 /*
1755                  * 1.8/2.0 behaviour is that OST being connected once at least
1756                  * is considered "healthy". and one "healthy" OST is enough to
1757                  * allow lustre clients to connect to MDS
1758                  */
1759                 RETURN(!osp->opd_imp_seen_connected);
1760         }
1761
1762         RETURN(rc);
1763 }
1764
1765 static int osp_obd_set_info_async(const struct lu_env *env,
1766                                   struct obd_export *exp,
1767                                   u32 keylen, void *key,
1768                                   u32 vallen, void *val,
1769                                   struct ptlrpc_request_set *set)
1770 {
1771         struct obd_device       *obd = exp->exp_obd;
1772         struct obd_import       *imp = obd->u.cli.cl_import;
1773         struct osp_device       *osp;
1774         struct ptlrpc_request   *req;
1775         char                    *tmp;
1776         int                      rc;
1777
1778         if (KEY_IS(KEY_SPTLRPC_CONF)) {
1779                 sptlrpc_conf_client_adapt(exp->exp_obd);
1780                 RETURN(0);
1781         }
1782
1783         LASSERT(set != NULL);
1784         if (!obd->obd_set_up || obd->obd_stopping)
1785                 RETURN(-EAGAIN);
1786         osp = lu2osp_dev(obd->obd_lu_dev);
1787
1788         req = ptlrpc_request_alloc(imp, &RQF_OBD_SET_INFO);
1789         if (req == NULL)
1790                 RETURN(-ENOMEM);
1791
1792         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
1793                              RCL_CLIENT, keylen);
1794         req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL,
1795                              RCL_CLIENT, vallen);
1796         if (osp->opd_connect_mdt)
1797                 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SET_INFO);
1798         else
1799                 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SET_INFO);
1800         if (rc) {
1801                 ptlrpc_request_free(req);
1802                 RETURN(rc);
1803         }
1804
1805         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
1806         memcpy(tmp, key, keylen);
1807         tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_VAL);
1808         memcpy(tmp, val, vallen);
1809
1810         ptlrpc_request_set_replen(req);
1811         ptlrpc_set_add_req(set, req);
1812         ptlrpc_check_set(NULL, set);
1813
1814         RETURN(0);
1815 }
1816
1817 /**
1818  * Implementation of obd_ops: o_fid_alloc
1819  *
1820  * Allocate a FID. There are two cases in which OSP performs
1821  * FID allocation.
1822  *
1823  * 1. FID precreation for data objects, which is done in
1824  *    osp_precreate_fids() instead of this function.
1825  * 2. FID allocation for each sub-stripe of a striped directory.
1826  *    Similar to other FID clients, OSP requests the sequence
1827  *    from its corresponding remote MDT, which in turn requests
1828  *    sequences from the sequence controller (MDT0).
1829  *
1830  * \param[in] env       execution environment
1831  * \param[in] exp       export of the OSP
1832  * \param[out] fid      FID being allocated
1833  * \param[in] unused    necessary for the interface but unused.
1834  *
1835  * \retval 0            0 FID allocated successfully.
1836  * \retval 1            1 FID allocated successfully and new sequence
1837  *                      requested from seq meta server
1838  * \retval negative     negative errno if FID allocation failed.
1839  */
1840 static int osp_fid_alloc(const struct lu_env *env, struct obd_export *exp,
1841                          struct lu_fid *fid, struct md_op_data *unused)
1842 {
1843         struct client_obd       *cli = &exp->exp_obd->u.cli;
1844         struct osp_device       *osp = lu2osp_dev(exp->exp_obd->obd_lu_dev);
1845         struct lu_client_seq    *seq = cli->cl_seq;
1846         ENTRY;
1847
1848         LASSERT(osp->opd_obd->u.cli.cl_seq != NULL);
1849         /* Sigh, fid client is not ready yet */
1850         LASSERT(osp->opd_obd->u.cli.cl_seq->lcs_exp != NULL);
1851
1852         RETURN(seq_client_alloc_fid(env, seq, fid));
1853 }
1854
1855 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
1856 LU_KEY_INIT_FINI(osp, struct osp_thread_info);
1857 static void osp_key_exit(const struct lu_context *ctx,
1858                          struct lu_context_key *key, void *data)
1859 {
1860         struct osp_thread_info *info = data;
1861
1862         info->osi_attr.la_valid = 0;
1863 }
1864
1865 struct lu_context_key osp_thread_key = {
1866         .lct_tags = LCT_MD_THREAD,
1867         .lct_init = osp_key_init,
1868         .lct_fini = osp_key_fini,
1869         .lct_exit = osp_key_exit
1870 };
1871
1872 /* context key constructor/destructor: mdt_txn_key_init, mdt_txn_key_fini */
1873 LU_KEY_INIT_FINI(osp_txn, struct osp_txn_info);
1874
1875 struct lu_context_key osp_txn_key = {
1876         .lct_tags = LCT_OSP_THREAD,
1877         .lct_init = osp_txn_key_init,
1878         .lct_fini = osp_txn_key_fini
1879 };
1880 LU_TYPE_INIT_FINI(osp, &osp_thread_key, &osp_txn_key);
1881
1882 static struct lu_device_type_operations osp_device_type_ops = {
1883         .ldto_init           = osp_type_init,
1884         .ldto_fini           = osp_type_fini,
1885
1886         .ldto_start          = osp_type_start,
1887         .ldto_stop           = osp_type_stop,
1888
1889         .ldto_device_alloc   = osp_device_alloc,
1890         .ldto_device_free    = osp_device_free,
1891
1892         .ldto_device_fini    = osp_device_fini
1893 };
1894
1895 static struct lu_device_type osp_device_type = {
1896         .ldt_tags     = LU_DEVICE_DT,
1897         .ldt_name     = LUSTRE_OSP_NAME,
1898         .ldt_ops      = &osp_device_type_ops,
1899         .ldt_ctx_tags = LCT_MD_THREAD | LCT_DT_THREAD,
1900 };
1901
1902 static struct obd_ops osp_obd_device_ops = {
1903         .o_owner        = THIS_MODULE,
1904         .o_add_conn     = client_import_add_conn,
1905         .o_del_conn     = client_import_del_conn,
1906         .o_reconnect    = osp_reconnect,
1907         .o_connect      = osp_obd_connect,
1908         .o_disconnect   = osp_obd_disconnect,
1909         .o_get_info     = osp_obd_get_info,
1910         .o_set_info_async = osp_obd_set_info_async,
1911         .o_import_event = osp_import_event,
1912         .o_iocontrol    = osp_iocontrol,
1913         .o_statfs       = osp_obd_statfs,
1914         .o_fid_init     = client_fid_init,
1915         .o_fid_fini     = client_fid_fini,
1916         .o_fid_alloc    = osp_fid_alloc,
1917 };
1918
1919 struct llog_operations osp_mds_ost_orig_logops;
1920
1921 /**
1922  * Initialize OSP module.
1923  *
1924  * Register device types OSP and Light Weight Proxy (LWP) (\see lwp_dev.c)
1925  * in obd_types (\see class_obd.c).  Initialize procfs for the
1926  * the OSP device.  Note: OSP was called OSC before Lustre 2.4,
1927  * so for compatibility it still uses the name "osc" in procfs.
1928  * This is called at module load time.
1929  *
1930  * \retval 0            0 if initialization succeeds.
1931  * \retval negative     negative errno if initialization failed.
1932  */
1933 static int __init osp_init(void)
1934 {
1935         struct obd_type *type;
1936         int rc;
1937
1938         rc = lu_kmem_init(osp_caches);
1939         if (rc)
1940                 return rc;
1941
1942
1943         rc = class_register_type(&osp_obd_device_ops, NULL, true, NULL,
1944                                  LUSTRE_OSP_NAME, &osp_device_type);
1945         if (rc != 0) {
1946                 lu_kmem_fini(osp_caches);
1947                 return rc;
1948         }
1949
1950         rc = class_register_type(&lwp_obd_device_ops, NULL, true, NULL,
1951                                  LUSTRE_LWP_NAME, &lwp_device_type);
1952         if (rc != 0) {
1953                 class_unregister_type(LUSTRE_OSP_NAME);
1954                 lu_kmem_fini(osp_caches);
1955                 return rc;
1956         }
1957
1958         /* Note: add_rec/delcare_add_rec will be only used by catalogs */
1959         osp_mds_ost_orig_logops = llog_osd_ops;
1960         osp_mds_ost_orig_logops.lop_add = llog_cat_add_rec;
1961         osp_mds_ost_orig_logops.lop_declare_add = llog_cat_declare_add_rec;
1962
1963         /* create "osc" entry in procfs for compatibility purposes */
1964         type = class_search_type(LUSTRE_OSC_NAME);
1965         if (type != NULL && type->typ_procroot != NULL)
1966                 return rc;
1967
1968         type = class_search_type(LUSTRE_OSP_NAME);
1969         type->typ_procsym = lprocfs_register("osc", proc_lustre_root,
1970                                              NULL, NULL);
1971         if (IS_ERR(type->typ_procsym)) {
1972                 CERROR("osp: can't create compat entry \"osc\": %d\n",
1973                        (int) PTR_ERR(type->typ_procsym));
1974                 type->typ_procsym = NULL;
1975         }
1976         return rc;
1977 }
1978
1979 /**
1980  * Finalize OSP module.
1981  *
1982  * This callback is called when kernel unloads OSP module from memory, and
1983  * it will deregister OSP and LWP device type from obd_types (\see class_obd.c).
1984  */
1985 static void __exit osp_exit(void)
1986 {
1987         class_unregister_type(LUSTRE_LWP_NAME);
1988         class_unregister_type(LUSTRE_OSP_NAME);
1989         lu_kmem_fini(osp_caches);
1990 }
1991
1992 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
1993 MODULE_DESCRIPTION("Lustre OSD Storage Proxy ("LUSTRE_OSP_NAME")");
1994 MODULE_VERSION(LUSTRE_VERSION_STRING);
1995 MODULE_LICENSE("GPL");
1996
1997 module_init(osp_init);
1998 module_exit(osp_exit);