1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
29 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * Implementation of cl_device and cl_device_type for LOVSUB layer.
38 * Author: Nikita Danilov <nikita.danilov@sun.com>
41 #define DEBUG_SUBSYSTEM S_LOV
43 #include "lov_cl_internal.h"
49 /*****************************************************************************
51 * Lovsub transfer operations.
55 static void lovsub_req_completion(const struct lu_env *env,
56 const struct cl_req_slice *slice, int ioret)
58 struct lovsub_req *lsr;
61 lsr = cl2lovsub_req(slice);
62 OBD_SLAB_FREE_PTR(lsr, lovsub_req_kmem);
67 * Implementation of struct cl_req_operations::cro_attr_set() for lovsub
68 * layer. Lov and lovsub are responsible only for struct obdo::o_stripe_idx
69 * field, which is filled there.
71 static void lovsub_req_attr_set(const struct lu_env *env,
72 const struct cl_req_slice *slice,
73 const struct cl_object *obj,
74 struct cl_req_attr *attr, obd_valid flags)
76 struct lovsub_object *subobj;
79 subobj = cl2lovsub(obj);
81 * There is no OBD_MD_* flag for obdo::o_stripe_idx, so set it
82 * unconditionally. It never changes anyway.
84 attr->cra_oa->o_stripe_idx = subobj->lso_index;
88 static const struct cl_req_operations lovsub_req_ops = {
89 .cro_attr_set = lovsub_req_attr_set,
90 .cro_completion = lovsub_req_completion
93 /*****************************************************************************
95 * Lov-sub device and device type functions.
99 static int lovsub_device_init(const struct lu_env *env, struct lu_device *d,
100 const char *name, struct lu_device *next)
102 struct lovsub_device *lsd = lu2lovsub_dev(d);
103 struct lu_device_type *ldt;
107 next->ld_site = d->ld_site;
109 LASSERT(ldt != NULL);
110 rc = ldt->ldt_ops->ldto_device_init(env, next, ldt->ldt_name, NULL);
112 next->ld_site = NULL;
117 lu_ref_add(&next->ld_reference, "lu-stack", &lu_site_init);
118 lsd->acid_next = lu2cl_dev(next);
122 static struct lu_device *lovsub_device_fini(const struct lu_env *env,
125 struct lu_device *next;
126 struct lovsub_device *lsd;
129 lsd = lu2lovsub_dev(d);
130 next = cl2lu_dev(lsd->acid_next);
131 lsd->acid_super = NULL;
132 lsd->acid_next = NULL;
136 static struct lu_device *lovsub_device_free(const struct lu_env *env,
139 struct lovsub_device *lsd = lu2lovsub_dev(d);
140 struct lu_device *next = cl2lu_dev(lsd->acid_next);
142 cl_device_fini(lu2cl_dev(d));
147 static int lovsub_req_init(const struct lu_env *env, struct cl_device *dev,
150 struct lovsub_req *lsr;
153 OBD_SLAB_ALLOC_PTR_GFP(lsr, lovsub_req_kmem, CFS_ALLOC_IO);
155 cl_req_slice_add(req, &lsr->lsrq_cl, dev, &lovsub_req_ops);
162 static const struct lu_device_operations lovsub_lu_ops = {
163 .ldo_object_alloc = lovsub_object_alloc,
164 .ldo_process_config = NULL,
165 .ldo_recovery_complete = NULL
168 static const struct cl_device_operations lovsub_cl_ops = {
169 .cdo_req_init = lovsub_req_init
172 static struct lu_device *lovsub_device_alloc(const struct lu_env *env,
173 struct lu_device_type *t,
174 struct lustre_cfg *cfg)
177 struct lovsub_device *lsd;
183 result = cl_device_init(&lsd->acid_cl, t);
185 d = lovsub2lu_dev(lsd);
186 d->ld_ops = &lovsub_lu_ops;
187 lsd->acid_cl.cd_ops = &lovsub_cl_ops;
191 d = ERR_PTR(-ENOMEM);
195 static const struct lu_device_type_operations lovsub_device_type_ops = {
196 .ldto_device_alloc = lovsub_device_alloc,
197 .ldto_device_free = lovsub_device_free,
199 .ldto_device_init = lovsub_device_init,
200 .ldto_device_fini = lovsub_device_fini
203 #define LUSTRE_LOVSUB_NAME "lovsub"
205 struct lu_device_type lovsub_device_type = {
206 .ldt_tags = LU_DEVICE_CL,
207 .ldt_name = LUSTRE_LOVSUB_NAME,
208 .ldt_ops = &lovsub_device_type_ops,
209 .ldt_ctx_tags = LCT_CL_THREAD