]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/lustre/lustre/lov/lov_dev.c
Linux 3.12-rc6
[karo-tx-linux.git] / drivers / staging / lustre / lustre / lov / lov_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  * Copyright (c) 2012, Intel Corporation.
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 and cl_device_type for LOV layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_LOV
42
43 /* class_name2obd() */
44 #include <obd_class.h>
45
46 #include "lov_cl_internal.h"
47
48 struct kmem_cache *lov_lock_kmem;
49 struct kmem_cache *lov_object_kmem;
50 struct kmem_cache *lov_thread_kmem;
51 struct kmem_cache *lov_session_kmem;
52 struct kmem_cache *lov_req_kmem;
53
54 struct kmem_cache *lovsub_lock_kmem;
55 struct kmem_cache *lovsub_object_kmem;
56 struct kmem_cache *lovsub_req_kmem;
57
58 struct kmem_cache *lov_lock_link_kmem;
59
60 /** Lock class of lov_device::ld_mutex. */
61 struct lock_class_key cl_lov_device_mutex_class;
62
63 struct lu_kmem_descr lov_caches[] = {
64         {
65                 .ckd_cache = &lov_lock_kmem,
66                 .ckd_name  = "lov_lock_kmem",
67                 .ckd_size  = sizeof (struct lov_lock)
68         },
69         {
70                 .ckd_cache = &lov_object_kmem,
71                 .ckd_name  = "lov_object_kmem",
72                 .ckd_size  = sizeof (struct lov_object)
73         },
74         {
75                 .ckd_cache = &lov_thread_kmem,
76                 .ckd_name  = "lov_thread_kmem",
77                 .ckd_size  = sizeof (struct lov_thread_info)
78         },
79         {
80                 .ckd_cache = &lov_session_kmem,
81                 .ckd_name  = "lov_session_kmem",
82                 .ckd_size  = sizeof (struct lov_session)
83         },
84         {
85                 .ckd_cache = &lov_req_kmem,
86                 .ckd_name  = "lov_req_kmem",
87                 .ckd_size  = sizeof (struct lov_req)
88         },
89         {
90                 .ckd_cache = &lovsub_lock_kmem,
91                 .ckd_name  = "lovsub_lock_kmem",
92                 .ckd_size  = sizeof (struct lovsub_lock)
93         },
94         {
95                 .ckd_cache = &lovsub_object_kmem,
96                 .ckd_name  = "lovsub_object_kmem",
97                 .ckd_size  = sizeof (struct lovsub_object)
98         },
99         {
100                 .ckd_cache = &lovsub_req_kmem,
101                 .ckd_name  = "lovsub_req_kmem",
102                 .ckd_size  = sizeof (struct lovsub_req)
103         },
104         {
105                 .ckd_cache = &lov_lock_link_kmem,
106                 .ckd_name  = "lov_lock_link_kmem",
107                 .ckd_size  = sizeof (struct lov_lock_link)
108         },
109         {
110                 .ckd_cache = NULL
111         }
112 };
113
114 /*****************************************************************************
115  *
116  * Lov transfer operations.
117  *
118  */
119
120 static void lov_req_completion(const struct lu_env *env,
121                                const struct cl_req_slice *slice, int ioret)
122 {
123         struct lov_req *lr;
124
125         lr = cl2lov_req(slice);
126         OBD_SLAB_FREE_PTR(lr, lov_req_kmem);
127 }
128
129 static const struct cl_req_operations lov_req_ops = {
130         .cro_completion = lov_req_completion
131 };
132
133 /*****************************************************************************
134  *
135  * Lov device and device type functions.
136  *
137  */
138
139 static void *lov_key_init(const struct lu_context *ctx,
140                           struct lu_context_key *key)
141 {
142         struct lov_thread_info *info;
143
144         OBD_SLAB_ALLOC_PTR_GFP(info, lov_thread_kmem, __GFP_IO);
145         if (info != NULL)
146                 INIT_LIST_HEAD(&info->lti_closure.clc_list);
147         else
148                 info = ERR_PTR(-ENOMEM);
149         return info;
150 }
151
152 static void lov_key_fini(const struct lu_context *ctx,
153                          struct lu_context_key *key, void *data)
154 {
155         struct lov_thread_info *info = data;
156         LINVRNT(list_empty(&info->lti_closure.clc_list));
157         OBD_SLAB_FREE_PTR(info, lov_thread_kmem);
158 }
159
160 struct lu_context_key lov_key = {
161         .lct_tags = LCT_CL_THREAD,
162         .lct_init = lov_key_init,
163         .lct_fini = lov_key_fini
164 };
165
166 static void *lov_session_key_init(const struct lu_context *ctx,
167                                   struct lu_context_key *key)
168 {
169         struct lov_session *info;
170
171         OBD_SLAB_ALLOC_PTR_GFP(info, lov_session_kmem, __GFP_IO);
172         if (info == NULL)
173                 info = ERR_PTR(-ENOMEM);
174         return info;
175 }
176
177 static void lov_session_key_fini(const struct lu_context *ctx,
178                                  struct lu_context_key *key, void *data)
179 {
180         struct lov_session *info = data;
181         OBD_SLAB_FREE_PTR(info, lov_session_kmem);
182 }
183
184 struct lu_context_key lov_session_key = {
185         .lct_tags = LCT_SESSION,
186         .lct_init = lov_session_key_init,
187         .lct_fini = lov_session_key_fini
188 };
189
190 /* type constructor/destructor: lov_type_{init,fini,start,stop}() */
191 LU_TYPE_INIT_FINI(lov, &lov_key, &lov_session_key);
192
193 static struct lu_device *lov_device_fini(const struct lu_env *env,
194                                          struct lu_device *d)
195 {
196         int i;
197         struct lov_device *ld = lu2lov_dev(d);
198
199         LASSERT(ld->ld_lov != NULL);
200         if (ld->ld_target == NULL)
201                 return NULL;
202
203         lov_foreach_target(ld, i) {
204                 struct lovsub_device *lsd;
205
206                 lsd = ld->ld_target[i];
207                 if (lsd != NULL) {
208                         cl_stack_fini(env, lovsub2cl_dev(lsd));
209                         ld->ld_target[i] = NULL;
210                 }
211         }
212         return NULL;
213 }
214
215 static int lov_device_init(const struct lu_env *env, struct lu_device *d,
216                            const char *name, struct lu_device *next)
217 {
218         struct lov_device *ld = lu2lov_dev(d);
219         int i;
220         int rc = 0;
221
222         LASSERT(d->ld_site != NULL);
223         if (ld->ld_target == NULL)
224                 return rc;
225
226         lov_foreach_target(ld, i) {
227                 struct lovsub_device *lsd;
228                 struct cl_device     *cl;
229                 struct lov_tgt_desc  *desc;
230
231                 desc = ld->ld_lov->lov_tgts[i];
232                 if (desc == NULL)
233                         continue;
234
235                 cl = cl_type_setup(env, d->ld_site, &lovsub_device_type,
236                                    desc->ltd_obd->obd_lu_dev);
237                 if (IS_ERR(cl)) {
238                         rc = PTR_ERR(cl);
239                         break;
240                 }
241                 lsd = cl2lovsub_dev(cl);
242                 lsd->acid_idx = i;
243                 lsd->acid_super = ld;
244                 ld->ld_target[i] = lsd;
245         }
246
247         if (rc)
248                 lov_device_fini(env, d);
249         else
250                 ld->ld_flags |= LOV_DEV_INITIALIZED;
251
252         return rc;
253 }
254
255 static int lov_req_init(const struct lu_env *env, struct cl_device *dev,
256                         struct cl_req *req)
257 {
258         struct lov_req *lr;
259         int result;
260
261         OBD_SLAB_ALLOC_PTR_GFP(lr, lov_req_kmem, __GFP_IO);
262         if (lr != NULL) {
263                 cl_req_slice_add(req, &lr->lr_cl, dev, &lov_req_ops);
264                 result = 0;
265         } else
266                 result = -ENOMEM;
267         return result;
268 }
269
270 static const struct cl_device_operations lov_cl_ops = {
271         .cdo_req_init = lov_req_init
272 };
273
274 static void lov_emerg_free(struct lov_device_emerg **emrg, int nr)
275 {
276         int i;
277
278         for (i = 0; i < nr; ++i) {
279                 struct lov_device_emerg *em;
280
281                 em = emrg[i];
282                 if (em != NULL) {
283                         LASSERT(em->emrg_page_list.pl_nr == 0);
284                         if (em->emrg_env != NULL)
285                                 cl_env_put(em->emrg_env, &em->emrg_refcheck);
286                         OBD_FREE_PTR(em);
287                 }
288         }
289         OBD_FREE(emrg, nr * sizeof emrg[0]);
290 }
291
292 static struct lu_device *lov_device_free(const struct lu_env *env,
293                                          struct lu_device *d)
294 {
295         struct lov_device *ld = lu2lov_dev(d);
296         const int         nr = ld->ld_target_nr;
297
298         cl_device_fini(lu2cl_dev(d));
299         if (ld->ld_target != NULL)
300                 OBD_FREE(ld->ld_target, nr * sizeof ld->ld_target[0]);
301         if (ld->ld_emrg != NULL)
302                 lov_emerg_free(ld->ld_emrg, nr);
303         OBD_FREE_PTR(ld);
304         return NULL;
305 }
306
307 static void lov_cl_del_target(const struct lu_env *env, struct lu_device *dev,
308                               __u32 index)
309 {
310         struct lov_device *ld = lu2lov_dev(dev);
311
312         if (ld->ld_target[index] != NULL) {
313                 cl_stack_fini(env, lovsub2cl_dev(ld->ld_target[index]));
314                 ld->ld_target[index] = NULL;
315         }
316 }
317
318 static struct lov_device_emerg **lov_emerg_alloc(int nr)
319 {
320         struct lov_device_emerg **emerg;
321         int i;
322         int result;
323
324         OBD_ALLOC(emerg, nr * sizeof emerg[0]);
325         if (emerg == NULL)
326                 return ERR_PTR(-ENOMEM);
327         for (result = i = 0; i < nr && result == 0; i++) {
328                 struct lov_device_emerg *em;
329
330                 OBD_ALLOC_PTR(em);
331                 if (em != NULL) {
332                         emerg[i] = em;
333                         cl_page_list_init(&em->emrg_page_list);
334                         em->emrg_env = cl_env_alloc(&em->emrg_refcheck,
335                                                     LCT_REMEMBER|LCT_NOREF);
336                         if (!IS_ERR(em->emrg_env))
337                                 em->emrg_env->le_ctx.lc_cookie = 0x2;
338                         else {
339                                 result = PTR_ERR(em->emrg_env);
340                                 em->emrg_env = NULL;
341                         }
342                 } else
343                         result = -ENOMEM;
344         }
345         if (result != 0) {
346                 lov_emerg_free(emerg, nr);
347                 emerg = ERR_PTR(result);
348         }
349         return emerg;
350 }
351
352 static int lov_expand_targets(const struct lu_env *env, struct lov_device *dev)
353 {
354         int   result;
355         __u32 tgt_size;
356         __u32 sub_size;
357
358         result = 0;
359         tgt_size = dev->ld_lov->lov_tgt_size;
360         sub_size = dev->ld_target_nr;
361         if (sub_size < tgt_size) {
362                 struct lovsub_device    **newd;
363                 struct lov_device_emerg **emerg;
364                 const size_t          sz   = sizeof newd[0];
365
366                 emerg = lov_emerg_alloc(tgt_size);
367                 if (IS_ERR(emerg))
368                         return PTR_ERR(emerg);
369
370                 OBD_ALLOC(newd, tgt_size * sz);
371                 if (newd != NULL) {
372                         mutex_lock(&dev->ld_mutex);
373                         if (sub_size > 0) {
374                                 memcpy(newd, dev->ld_target, sub_size * sz);
375                                 OBD_FREE(dev->ld_target, sub_size * sz);
376                         }
377                         dev->ld_target    = newd;
378                         dev->ld_target_nr = tgt_size;
379
380                         if (dev->ld_emrg != NULL)
381                                 lov_emerg_free(dev->ld_emrg, sub_size);
382                         dev->ld_emrg = emerg;
383                         mutex_unlock(&dev->ld_mutex);
384                 } else {
385                         lov_emerg_free(emerg, tgt_size);
386                         result = -ENOMEM;
387                 }
388         }
389         return result;
390 }
391
392 static int lov_cl_add_target(const struct lu_env *env, struct lu_device *dev,
393                              __u32 index)
394 {
395         struct obd_device    *obd = dev->ld_obd;
396         struct lov_device    *ld  = lu2lov_dev(dev);
397         struct lov_tgt_desc  *tgt;
398         struct lovsub_device *lsd;
399         struct cl_device     *cl;
400         int rc;
401
402         obd_getref(obd);
403
404         tgt = obd->u.lov.lov_tgts[index];
405         LASSERT(tgt != NULL);
406         LASSERT(tgt->ltd_obd != NULL);
407
408         if (!tgt->ltd_obd->obd_set_up) {
409                 CERROR("Target %s not set up\n", obd_uuid2str(&tgt->ltd_uuid));
410                 return -EINVAL;
411         }
412
413         rc = lov_expand_targets(env, ld);
414         if (rc == 0 && ld->ld_flags & LOV_DEV_INITIALIZED) {
415                 LASSERT(dev->ld_site != NULL);
416
417                 cl = cl_type_setup(env, dev->ld_site, &lovsub_device_type,
418                                    tgt->ltd_obd->obd_lu_dev);
419                 if (!IS_ERR(cl)) {
420                         lsd = cl2lovsub_dev(cl);
421                         lsd->acid_idx = index;
422                         lsd->acid_super = ld;
423                         ld->ld_target[index] = lsd;
424                 } else {
425                         CERROR("add failed (%d), deleting %s\n", rc,
426                                obd_uuid2str(&tgt->ltd_uuid));
427                         lov_cl_del_target(env, dev, index);
428                         rc = PTR_ERR(cl);
429                 }
430         }
431         obd_putref(obd);
432         return rc;
433 }
434
435 static int lov_process_config(const struct lu_env *env,
436                               struct lu_device *d, struct lustre_cfg *cfg)
437 {
438         struct obd_device *obd = d->ld_obd;
439         int cmd;
440         int rc;
441         int gen;
442         __u32 index;
443
444         obd_getref(obd);
445
446         cmd = cfg->lcfg_command;
447         rc = lov_process_config_base(d->ld_obd, cfg, &index, &gen);
448         if (rc == 0) {
449                 switch(cmd) {
450                 case LCFG_LOV_ADD_OBD:
451                 case LCFG_LOV_ADD_INA:
452                         rc = lov_cl_add_target(env, d, index);
453                         if (rc != 0)
454                                 lov_del_target(d->ld_obd, index, 0, 0);
455                         break;
456                 case LCFG_LOV_DEL_OBD:
457                         lov_cl_del_target(env, d, index);
458                         break;
459                 }
460         }
461         obd_putref(obd);
462         return rc;
463 }
464
465 static const struct lu_device_operations lov_lu_ops = {
466         .ldo_object_alloc      = lov_object_alloc,
467         .ldo_process_config    = lov_process_config,
468 };
469
470 static struct lu_device *lov_device_alloc(const struct lu_env *env,
471                                           struct lu_device_type *t,
472                                           struct lustre_cfg *cfg)
473 {
474         struct lu_device *d;
475         struct lov_device *ld;
476         struct obd_device *obd;
477         int rc;
478
479         OBD_ALLOC_PTR(ld);
480         if (ld == NULL)
481                 return ERR_PTR(-ENOMEM);
482
483         cl_device_init(&ld->ld_cl, t);
484         d = lov2lu_dev(ld);
485         d->ld_ops       = &lov_lu_ops;
486         ld->ld_cl.cd_ops = &lov_cl_ops;
487
488         mutex_init(&ld->ld_mutex);
489         lockdep_set_class(&ld->ld_mutex, &cl_lov_device_mutex_class);
490
491         /* setup the LOV OBD */
492         obd = class_name2obd(lustre_cfg_string(cfg, 0));
493         LASSERT(obd != NULL);
494         rc = lov_setup(obd, cfg);
495         if (rc) {
496                 lov_device_free(env, d);
497                 return ERR_PTR(rc);
498         }
499
500         ld->ld_lov = &obd->u.lov;
501         return d;
502 }
503
504 static const struct lu_device_type_operations lov_device_type_ops = {
505         .ldto_init = lov_type_init,
506         .ldto_fini = lov_type_fini,
507
508         .ldto_start = lov_type_start,
509         .ldto_stop  = lov_type_stop,
510
511         .ldto_device_alloc = lov_device_alloc,
512         .ldto_device_free  = lov_device_free,
513
514         .ldto_device_init    = lov_device_init,
515         .ldto_device_fini    = lov_device_fini
516 };
517
518 struct lu_device_type lov_device_type = {
519         .ldt_tags     = LU_DEVICE_CL,
520         .ldt_name     = LUSTRE_LOV_NAME,
521         .ldt_ops      = &lov_device_type_ops,
522         .ldt_ctx_tags = LCT_CL_THREAD
523 };
524 EXPORT_SYMBOL(lov_device_type);
525
526 /** @} lov */