Whamcloud - gitweb
b=20500
[fs/lustre-release.git] / lustre / osc / osc_dev.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Implementation of cl_device, cl_req for OSC layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_OSC
42
43 /* class_name2obd() */
44 #include <obd_class.h>
45
46 #include "osc_cl_internal.h"
47
48 /** \addtogroup osc 
49  * @{ 
50  */
51
52 cfs_mem_cache_t *osc_page_kmem;
53 cfs_mem_cache_t *osc_lock_kmem;
54 cfs_mem_cache_t *osc_object_kmem;
55 cfs_mem_cache_t *osc_thread_kmem;
56 cfs_mem_cache_t *osc_session_kmem;
57 cfs_mem_cache_t *osc_req_kmem;
58
59 struct lu_kmem_descr osc_caches[] = {
60         {
61                 .ckd_cache = &osc_page_kmem,
62                 .ckd_name  = "osc_page_kmem",
63                 .ckd_size  = sizeof (struct osc_page)
64         },
65         {
66                 .ckd_cache = &osc_lock_kmem,
67                 .ckd_name  = "osc_lock_kmem",
68                 .ckd_size  = sizeof (struct osc_lock)
69         },
70         {
71                 .ckd_cache = &osc_object_kmem,
72                 .ckd_name  = "osc_object_kmem",
73                 .ckd_size  = sizeof (struct osc_object)
74         },
75         {
76                 .ckd_cache = &osc_thread_kmem,
77                 .ckd_name  = "osc_thread_kmem",
78                 .ckd_size  = sizeof (struct osc_thread_info)
79         },
80         {
81                 .ckd_cache = &osc_session_kmem,
82                 .ckd_name  = "osc_session_kmem",
83                 .ckd_size  = sizeof (struct osc_session)
84         },
85         {
86                 .ckd_cache = &osc_req_kmem,
87                 .ckd_name  = "osc_req_kmem",
88                 .ckd_size  = sizeof (struct osc_req)
89         },
90         {
91                 .ckd_cache = NULL
92         }
93 };
94
95 struct lock_class_key osc_ast_guard_class;
96
97 /*****************************************************************************
98  *
99  * Type conversions.
100  *
101  */
102
103 static struct lu_device *osc2lu_dev(struct osc_device *osc)
104 {
105         return &osc->od_cl.cd_lu_dev;
106 }
107
108 /*****************************************************************************
109  *
110  * Osc device and device type functions.
111  *
112  */
113
114 static void *osc_key_init(const struct lu_context *ctx,
115                          struct lu_context_key *key)
116 {
117         struct osc_thread_info *info;
118
119         OBD_SLAB_ALLOC_PTR_GFP(info, osc_thread_kmem, CFS_ALLOC_IO);
120         if (info == NULL)
121                 info = ERR_PTR(-ENOMEM);
122         return info;
123 }
124
125 static void osc_key_fini(const struct lu_context *ctx,
126                          struct lu_context_key *key, void *data)
127 {
128         struct osc_thread_info *info = data;
129         OBD_SLAB_FREE_PTR(info, osc_thread_kmem);
130 }
131
132 struct lu_context_key osc_key = {
133         .lct_tags = LCT_CL_THREAD,
134         .lct_init = osc_key_init,
135         .lct_fini = osc_key_fini
136 };
137
138 static void *osc_session_init(const struct lu_context *ctx,
139                               struct lu_context_key *key)
140 {
141         struct osc_session *info;
142
143         OBD_SLAB_ALLOC_PTR_GFP(info, osc_session_kmem, CFS_ALLOC_IO);
144         if (info == NULL)
145                 info = ERR_PTR(-ENOMEM);
146         return info;
147 }
148
149 static void osc_session_fini(const struct lu_context *ctx,
150                              struct lu_context_key *key, void *data)
151 {
152         struct osc_session *info = data;
153         OBD_SLAB_FREE_PTR(info, osc_session_kmem);
154 }
155
156 struct lu_context_key osc_session_key = {
157         .lct_tags = LCT_SESSION,
158         .lct_init = osc_session_init,
159         .lct_fini = osc_session_fini
160 };
161
162 /* type constructor/destructor: osc_type_{init,fini,start,stop}(). */
163 LU_TYPE_INIT_FINI(osc, &osc_key, &osc_session_key);
164
165 static int osc_cl_process_config(const struct lu_env *env,
166                                  struct lu_device *d, struct lustre_cfg *cfg)
167 {
168         ENTRY;
169         RETURN(osc_process_config_base(d->ld_obd, cfg));
170 }
171
172 static const struct lu_device_operations osc_lu_ops = {
173         .ldo_object_alloc      = osc_object_alloc,
174         .ldo_process_config    = osc_cl_process_config,
175         .ldo_recovery_complete = NULL
176 };
177
178 static const struct cl_device_operations osc_cl_ops = {
179         .cdo_req_init = osc_req_init
180 };
181
182 static int osc_device_init(const struct lu_env *env, struct lu_device *d,
183                            const char *name, struct lu_device *next)
184 {
185         RETURN(0);
186 }
187
188 static struct lu_device *osc_device_fini(const struct lu_env *env,
189                                          struct lu_device *d)
190 {
191         return 0;
192 }
193
194 static struct lu_device *osc_device_free(const struct lu_env *env,
195                                          struct lu_device *d)
196 {
197         struct osc_device *od = lu2osc_dev(d);
198
199         cl_device_fini(lu2cl_dev(d));
200         OBD_FREE_PTR(od);
201         return NULL;
202 }
203
204 static struct lu_device *osc_device_alloc(const struct lu_env *env,
205                                           struct lu_device_type *t,
206                                           struct lustre_cfg *cfg)
207 {
208         struct lu_device *d;
209         struct osc_device *od;
210         struct obd_device *obd;
211         int rc;
212
213         OBD_ALLOC_PTR(od);
214         if (od == NULL)
215                 RETURN(ERR_PTR(-ENOMEM));
216
217         cl_device_init(&od->od_cl, t);
218         d = osc2lu_dev(od);
219         d->ld_ops = &osc_lu_ops;
220         od->od_cl.cd_ops = &osc_cl_ops;
221
222         /* Setup OSC OBD */
223         obd = class_name2obd(lustre_cfg_string(cfg, 0));
224         LASSERT(obd != NULL);
225         rc = osc_setup(obd, cfg);
226         if (rc) {
227                 osc_device_free(env, d);
228                 RETURN(ERR_PTR(rc));
229         }
230         od->od_exp = obd->obd_self_export;
231         RETURN(d);
232 }
233
234 static const struct lu_device_type_operations osc_device_type_ops = {
235         .ldto_init = osc_type_init,
236         .ldto_fini = osc_type_fini,
237
238         .ldto_start = osc_type_start,
239         .ldto_stop  = osc_type_stop,
240
241         .ldto_device_alloc = osc_device_alloc,
242         .ldto_device_free  = osc_device_free,
243
244         .ldto_device_init    = osc_device_init,
245         .ldto_device_fini    = osc_device_fini
246 };
247
248 struct lu_device_type osc_device_type = {
249         .ldt_tags     = LU_DEVICE_CL,
250         .ldt_name     = LUSTRE_OSC_NAME,
251         .ldt_ops      = &osc_device_type_ops,
252         .ldt_ctx_tags = LCT_CL_THREAD
253 };
254
255 /** @} osc */