Whamcloud - gitweb
LU-14182 lov: cancel layout lock on replay deadlock
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2013, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * Implementation of cl_device and cl_device_type for LOVSUB layer.
33  *
34  *   Author: Nikita Danilov <nikita.danilov@sun.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_LOV
38
39 #include "lov_cl_internal.h"
40
41 /** \addtogroup lov
42  *  @{
43  */
44
45 /*****************************************************************************
46  *
47  * Lov-sub device and device type functions.
48  *
49  */
50
51 static int lovsub_device_init(const struct lu_env *env, struct lu_device *d,
52                               const char *name, struct lu_device *next)
53 {
54         struct lovsub_device  *lsd = lu2lovsub_dev(d);
55         struct lu_device_type *ldt;
56         int rc;
57
58         ENTRY;
59         next->ld_site = d->ld_site;
60         ldt = next->ld_type;
61         LASSERT(ldt != NULL);
62         rc = ldt->ldt_ops->ldto_device_init(env, next, ldt->ldt_name, NULL);
63         if (rc) {
64                 next->ld_site = NULL;
65                 RETURN(rc);
66         }
67
68         lu_device_get(next);
69         lu_ref_add(&next->ld_reference, "lu-stack", &lu_site_init);
70         lsd->acid_next = lu2cl_dev(next);
71         RETURN(rc);
72 }
73
74 static struct lu_device *lovsub_device_fini(const struct lu_env *env,
75                                             struct lu_device *d)
76 {
77         struct lu_device *next;
78         struct lovsub_device *lsd;
79
80         ENTRY;
81         lsd = lu2lovsub_dev(d);
82         next = cl2lu_dev(lsd->acid_next);
83         lsd->acid_next = NULL;
84         RETURN(next);
85 }
86
87 static struct lu_device *lovsub_device_free(const struct lu_env *env,
88                                             struct lu_device *d)
89 {
90         struct lovsub_device *lsd = lu2lovsub_dev(d);
91         struct lu_device *next = cl2lu_dev(lsd->acid_next);
92
93         lu_site_print(env, d->ld_site, &d->ld_ref, D_ERROR, lu_cdebug_printer);
94         cl_device_fini(lu2cl_dev(d));
95         OBD_FREE_PTR(lsd);
96         return next;
97 }
98
99 static const struct lu_device_operations lovsub_lu_ops = {
100         .ldo_object_alloc      = lovsub_object_alloc,
101         .ldo_process_config    = NULL,
102         .ldo_recovery_complete = NULL
103 };
104
105 static struct lu_device *lovsub_device_alloc(const struct lu_env *env,
106                                              struct lu_device_type *t,
107                                              struct lustre_cfg *cfg)
108 {
109         struct lu_device *d;
110         struct lovsub_device *lsd;
111
112         OBD_ALLOC_PTR(lsd);
113         if (lsd) {
114                 int result;
115
116                 result = cl_device_init(&lsd->acid_cl, t);
117                 if (result == 0) {
118                         d = lovsub2lu_dev(lsd);
119                         d->ld_ops         = &lovsub_lu_ops;
120                 } else
121                         d = ERR_PTR(result);
122         } else
123                 d = ERR_PTR(-ENOMEM);
124         return d;
125 }
126
127 static const struct lu_device_type_operations lovsub_device_type_ops = {
128         .ldto_device_alloc = lovsub_device_alloc,
129         .ldto_device_free = lovsub_device_free,
130
131         .ldto_device_init = lovsub_device_init,
132         .ldto_device_fini = lovsub_device_fini
133 };
134
135 #define LUSTRE_LOVSUB_NAME         "lovsub"
136
137 struct lu_device_type lovsub_device_type = {
138         .ldt_tags     = LU_DEVICE_CL,
139         .ldt_name     = LUSTRE_LOVSUB_NAME,
140         .ldt_ops      = &lovsub_device_type_ops,
141         .ldt_ctx_tags = LCT_CL_THREAD
142 };
143
144
145 /** @} lov */
146