Whamcloud - gitweb
LU-17662 osd-zfs: Support for ZFS 2.2.3
[fs/lustre-release.git] / lustre / lov / lovsub_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) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2013, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * Implementation of cl_device and cl_device_type for LOVSUB layer.
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  */
35
36 #define DEBUG_SUBSYSTEM S_LOV
37
38 #include "lov_cl_internal.h"
39
40 /** \addtogroup lov
41  *  @{
42  */
43
44 /**
45  * Lov-sub device and device type functions.
46  */
47 static int lovsub_device_init(const struct lu_env *env, struct lu_device *d,
48                               const char *name, struct lu_device *next)
49 {
50         struct lovsub_device  *lsd = lu2lovsub_dev(d);
51         struct lu_device_type *ldt;
52         int rc;
53
54         ENTRY;
55         next->ld_site = d->ld_site;
56         ldt = next->ld_type;
57         LASSERT(ldt != NULL);
58         rc = ldt->ldt_ops->ldto_device_init(env, next, ldt->ldt_name, NULL);
59         if (rc) {
60                 next->ld_site = NULL;
61                 RETURN(rc);
62         }
63
64         lu_device_get(next);
65         lu_ref_add(&next->ld_reference, "lu-stack", &lu_site_init);
66         lsd->acid_next = lu2cl_dev(next);
67         RETURN(rc);
68 }
69
70 static struct lu_device *lovsub_device_fini(const struct lu_env *env,
71                                             struct lu_device *d)
72 {
73         struct lu_device *next;
74         struct lovsub_device *lsd;
75
76         ENTRY;
77         lsd = lu2lovsub_dev(d);
78         next = cl2lu_dev(lsd->acid_next);
79         lsd->acid_next = NULL;
80         RETURN(next);
81 }
82
83 static struct lu_device *lovsub_device_free(const struct lu_env *env,
84                                             struct lu_device *d)
85 {
86         struct lovsub_device *lsd = lu2lovsub_dev(d);
87         struct lu_device *next = cl2lu_dev(lsd->acid_next);
88
89         lu_site_print(env, d->ld_site, &d->ld_ref, D_ERROR, lu_cdebug_printer);
90         cl_device_fini(lu2cl_dev(d));
91         OBD_FREE_PTR(lsd);
92         return next;
93 }
94
95 static const struct lu_device_operations lovsub_lu_ops = {
96         .ldo_object_alloc      = lovsub_object_alloc,
97         .ldo_process_config    = NULL,
98         .ldo_recovery_complete = NULL
99 };
100
101 static struct lu_device *lovsub_device_alloc(const struct lu_env *env,
102                                              struct lu_device_type *t,
103                                              struct lustre_cfg *cfg)
104 {
105         struct lu_device *d;
106         struct lovsub_device *lsd;
107
108         OBD_ALLOC_PTR(lsd);
109         if (lsd) {
110                 int result;
111
112                 result = cl_device_init(&lsd->acid_cl, t);
113                 if (result == 0) {
114                         d = lovsub2lu_dev(lsd);
115                         d->ld_ops         = &lovsub_lu_ops;
116                 } else
117                         d = ERR_PTR(result);
118         } else
119                 d = ERR_PTR(-ENOMEM);
120         return d;
121 }
122
123 static const struct lu_device_type_operations lovsub_device_type_ops = {
124         .ldto_device_alloc = lovsub_device_alloc,
125         .ldto_device_free = lovsub_device_free,
126
127         .ldto_device_init = lovsub_device_init,
128         .ldto_device_fini = lovsub_device_fini
129 };
130
131 #define LUSTRE_LOVSUB_NAME         "lovsub"
132
133 struct lu_device_type lovsub_device_type = {
134         .ldt_tags     = LU_DEVICE_CL,
135         .ldt_name     = LUSTRE_LOVSUB_NAME,
136         .ldt_ops      = &lovsub_device_type_ops,
137         .ldt_ctx_tags = LCT_CL_THREAD
138 };
139
140
141 /** @} lov */
142