4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2012, 2015, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * Implementation of cl_device, for OSC layer.
34 * Author: Nikita Danilov <nikita.danilov@sun.com>
37 #define DEBUG_SUBSYSTEM S_OSC
39 /* class_name2obd() */
40 #include <obd_class.h>
41 #include <lustre_osc.h>
43 #include "osc_internal.h"
49 struct kmem_cache *osc_lock_kmem;
50 struct kmem_cache *osc_object_kmem;
51 struct kmem_cache *osc_thread_kmem;
52 struct kmem_cache *osc_session_kmem;
53 struct kmem_cache *osc_extent_kmem;
54 struct kmem_cache *osc_quota_kmem;
56 struct lu_kmem_descr osc_caches[] = {
58 .ckd_cache = &osc_lock_kmem,
59 .ckd_name = "osc_lock_kmem",
60 .ckd_size = sizeof (struct osc_lock)
63 .ckd_cache = &osc_object_kmem,
64 .ckd_name = "osc_object_kmem",
65 .ckd_size = sizeof (struct osc_object)
68 .ckd_cache = &osc_thread_kmem,
69 .ckd_name = "osc_thread_kmem",
70 .ckd_size = sizeof (struct osc_thread_info)
73 .ckd_cache = &osc_session_kmem,
74 .ckd_name = "osc_session_kmem",
75 .ckd_size = sizeof (struct osc_session)
78 .ckd_cache = &osc_extent_kmem,
79 .ckd_name = "osc_extent_kmem",
80 .ckd_size = sizeof (struct osc_extent)
83 .ckd_cache = &osc_quota_kmem,
84 .ckd_name = "osc_quota_kmem",
85 .ckd_size = sizeof(struct osc_quota_info)
92 /*****************************************************************************
94 * Osc device and device type functions.
98 static void *osc_key_init(const struct lu_context *ctx,
99 struct lu_context_key *key)
101 struct osc_thread_info *info;
103 OBD_SLAB_ALLOC_PTR_GFP(info, osc_thread_kmem, GFP_NOFS);
105 info = ERR_PTR(-ENOMEM);
109 static void osc_key_fini(const struct lu_context *ctx,
110 struct lu_context_key *key, void *data)
112 struct osc_thread_info *info = data;
114 lu_buf_free(&info->oti_ladvise_buf);
115 OBD_SLAB_FREE_PTR(info, osc_thread_kmem);
118 struct lu_context_key osc_key = {
119 .lct_tags = LCT_CL_THREAD,
120 .lct_init = osc_key_init,
121 .lct_fini = osc_key_fini
124 static void *osc_session_init(const struct lu_context *ctx,
125 struct lu_context_key *key)
127 struct osc_session *info;
129 OBD_SLAB_ALLOC_PTR_GFP(info, osc_session_kmem, GFP_NOFS);
131 info = ERR_PTR(-ENOMEM);
135 static void osc_session_fini(const struct lu_context *ctx,
136 struct lu_context_key *key, void *data)
138 struct osc_session *info = data;
139 OBD_SLAB_FREE_PTR(info, osc_session_kmem);
142 struct lu_context_key osc_session_key = {
143 .lct_tags = LCT_SESSION,
144 .lct_init = osc_session_init,
145 .lct_fini = osc_session_fini
148 /* type constructor/destructor: osc_type_{init,fini,start,stop}(). */
149 LU_TYPE_INIT_FINI(osc, &osc_key, &osc_session_key);
151 static int osc_cl_process_config(const struct lu_env *env,
152 struct lu_device *d, struct lustre_cfg *cfg)
155 RETURN(osc_process_config_base(d->ld_obd, cfg));
158 static const struct lu_device_operations osc_lu_ops = {
159 .ldo_object_alloc = osc_object_alloc,
160 .ldo_process_config = osc_cl_process_config,
161 .ldo_recovery_complete = NULL
164 static int osc_device_init(const struct lu_env *env, struct lu_device *d,
165 const char *name, struct lu_device *next)
170 static struct lu_device *osc_device_fini(const struct lu_env *env,
176 static struct lu_device *osc_device_free(const struct lu_env *env,
179 struct osc_device *od = lu2osc_dev(d);
181 cl_device_fini(lu2cl_dev(d));
186 static struct lu_device *osc_device_alloc(const struct lu_env *env,
187 struct lu_device_type *t,
188 struct lustre_cfg *cfg)
191 struct osc_device *od;
192 struct obd_device *obd;
197 RETURN(ERR_PTR(-ENOMEM));
199 cl_device_init(&od->od_cl, t);
201 d->ld_ops = &osc_lu_ops;
204 obd = class_name2obd(lustre_cfg_string(cfg, 0));
205 LASSERT(obd != NULL);
206 rc = osc_setup(obd, cfg);
208 osc_device_free(env, d);
211 od->od_exp = obd->obd_self_export;
215 static const struct lu_device_type_operations osc_device_type_ops = {
216 .ldto_init = osc_type_init,
217 .ldto_fini = osc_type_fini,
219 .ldto_start = osc_type_start,
220 .ldto_stop = osc_type_stop,
222 .ldto_device_alloc = osc_device_alloc,
223 .ldto_device_free = osc_device_free,
225 .ldto_device_init = osc_device_init,
226 .ldto_device_fini = osc_device_fini
229 struct lu_device_type osc_device_type = {
230 .ldt_tags = LU_DEVICE_CL,
231 .ldt_name = LUSTRE_OSC_NAME,
232 .ldt_ops = &osc_device_type_ops,
233 .ldt_ctx_tags = LCT_CL_THREAD