Whamcloud - gitweb
LU-1347 build: remove the vim/emacs modelines
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * Implementation of cl_device and cl_device_type for LOVSUB layer.
35  *
36  *   Author: Nikita Danilov <nikita.danilov@sun.com>
37  */
38
39 #define DEBUG_SUBSYSTEM S_LOV
40
41 #include "lov_cl_internal.h"
42
43 /** \addtogroup lov
44  *  @{
45  */
46
47 /*****************************************************************************
48  *
49  * Lovsub transfer operations.
50  *
51  */
52
53 static void lovsub_req_completion(const struct lu_env *env,
54                                   const struct cl_req_slice *slice, int ioret)
55 {
56         struct lovsub_req *lsr;
57
58         ENTRY;
59         lsr = cl2lovsub_req(slice);
60         OBD_SLAB_FREE_PTR(lsr, lovsub_req_kmem);
61         EXIT;
62 }
63
64 /**
65  * Implementation of struct cl_req_operations::cro_attr_set() for lovsub
66  * layer. Lov and lovsub are responsible only for struct obdo::o_stripe_idx
67  * field, which is filled there.
68  */
69 static void lovsub_req_attr_set(const struct lu_env *env,
70                                 const struct cl_req_slice *slice,
71                                 const struct cl_object *obj,
72                                 struct cl_req_attr *attr, obd_valid flags)
73 {
74         struct lovsub_object *subobj;
75
76         ENTRY;
77         subobj = cl2lovsub(obj);
78         /*
79          * There is no OBD_MD_* flag for obdo::o_stripe_idx, so set it
80          * unconditionally. It never changes anyway.
81          */
82         attr->cra_oa->o_stripe_idx = subobj->lso_index;
83         EXIT;
84 }
85
86 static const struct cl_req_operations lovsub_req_ops = {
87         .cro_attr_set   = lovsub_req_attr_set,
88         .cro_completion = lovsub_req_completion
89 };
90
91 /*****************************************************************************
92  *
93  * Lov-sub device and device type functions.
94  *
95  */
96
97 static int lovsub_device_init(const struct lu_env *env, struct lu_device *d,
98                               const char *name, struct lu_device *next)
99 {
100         struct lovsub_device  *lsd = lu2lovsub_dev(d);
101         struct lu_device_type *ldt;
102         int rc;
103
104         ENTRY;
105         next->ld_site = d->ld_site;
106         ldt = next->ld_type;
107         LASSERT(ldt != NULL);
108         rc = ldt->ldt_ops->ldto_device_init(env, next, ldt->ldt_name, NULL);
109         if (rc) {
110                 next->ld_site = NULL;
111                 RETURN(rc);
112         }
113
114         lu_device_get(next);
115         lu_ref_add(&next->ld_reference, "lu-stack", &lu_site_init);
116         lsd->acid_next = lu2cl_dev(next);
117         RETURN(rc);
118 }
119
120 static struct lu_device *lovsub_device_fini(const struct lu_env *env,
121                                             struct lu_device *d)
122 {
123         struct lu_device *next;
124         struct lovsub_device *lsd;
125
126         ENTRY;
127         lsd = lu2lovsub_dev(d);
128         next = cl2lu_dev(lsd->acid_next);
129         lsd->acid_super = NULL;
130         lsd->acid_next = NULL;
131         RETURN(next);
132 }
133
134 static struct lu_device *lovsub_device_free(const struct lu_env *env,
135                                             struct lu_device *d)
136 {
137         struct lovsub_device *lsd  = lu2lovsub_dev(d);
138         struct lu_device     *next = cl2lu_dev(lsd->acid_next);
139
140         cl_device_fini(lu2cl_dev(d));
141         OBD_FREE_PTR(lsd);
142         return next;
143 }
144
145 static int lovsub_req_init(const struct lu_env *env, struct cl_device *dev,
146                            struct cl_req *req)
147 {
148         struct lovsub_req *lsr;
149         int result;
150
151         OBD_SLAB_ALLOC_PTR_GFP(lsr, lovsub_req_kmem, CFS_ALLOC_IO);
152         if (lsr != NULL) {
153                 cl_req_slice_add(req, &lsr->lsrq_cl, dev, &lovsub_req_ops);
154                 result = 0;
155         } else
156                 result = -ENOMEM;
157         return result;
158 }
159
160 static const struct lu_device_operations lovsub_lu_ops = {
161         .ldo_object_alloc      = lovsub_object_alloc,
162         .ldo_process_config    = NULL,
163         .ldo_recovery_complete = NULL
164 };
165
166 static const struct cl_device_operations lovsub_cl_ops = {
167         .cdo_req_init = lovsub_req_init
168 };
169
170 static struct lu_device *lovsub_device_alloc(const struct lu_env *env,
171                                              struct lu_device_type *t,
172                                              struct lustre_cfg *cfg)
173 {
174         struct lu_device     *d;
175         struct lovsub_device *lsd;
176
177         OBD_ALLOC_PTR(lsd);
178         if (lsd != NULL) {
179                 int result;
180
181                 result = cl_device_init(&lsd->acid_cl, t);
182                 if (result == 0) {
183                         d = lovsub2lu_dev(lsd);
184                         d->ld_ops         = &lovsub_lu_ops;
185                         lsd->acid_cl.cd_ops = &lovsub_cl_ops;
186                 } else
187                         d = ERR_PTR(result);
188         } else
189                 d = ERR_PTR(-ENOMEM);
190         return d;
191 }
192
193 static const struct lu_device_type_operations lovsub_device_type_ops = {
194         .ldto_device_alloc = lovsub_device_alloc,
195         .ldto_device_free  = lovsub_device_free,
196
197         .ldto_device_init    = lovsub_device_init,
198         .ldto_device_fini    = lovsub_device_fini
199 };
200
201 #define LUSTRE_LOVSUB_NAME         "lovsub"
202
203 struct lu_device_type lovsub_device_type = {
204         .ldt_tags     = LU_DEVICE_CL,
205         .ldt_name     = LUSTRE_LOVSUB_NAME,
206         .ldt_ops      = &lovsub_device_type_ops,
207         .ldt_ctx_tags = LCT_CL_THREAD
208 };
209
210
211 /** @} lov */
212