Whamcloud - gitweb
LU-5814 lov: remove unused code
[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  * Copyright (c) 2013, 2015, 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 LOVSUB layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_LOV
42
43 #include "lov_cl_internal.h"
44
45 /** \addtogroup lov
46  *  @{
47  */
48
49 /*****************************************************************************
50  *
51  * Lov-sub device and device type functions.
52  *
53  */
54
55 static int lovsub_device_init(const struct lu_env *env, struct lu_device *d,
56                               const char *name, struct lu_device *next)
57 {
58         struct lovsub_device  *lsd = lu2lovsub_dev(d);
59         struct lu_device_type *ldt;
60         int rc;
61
62         ENTRY;
63         next->ld_site = d->ld_site;
64         ldt = next->ld_type;
65         LASSERT(ldt != NULL);
66         rc = ldt->ldt_ops->ldto_device_init(env, next, ldt->ldt_name, NULL);
67         if (rc) {
68                 next->ld_site = NULL;
69                 RETURN(rc);
70         }
71
72         lu_device_get(next);
73         lu_ref_add(&next->ld_reference, "lu-stack", &lu_site_init);
74         lsd->acid_next = lu2cl_dev(next);
75         RETURN(rc);
76 }
77
78 static struct lu_device *lovsub_device_fini(const struct lu_env *env,
79                                             struct lu_device *d)
80 {
81         struct lu_device *next;
82         struct lovsub_device *lsd;
83
84         ENTRY;
85         lsd = lu2lovsub_dev(d);
86         next = cl2lu_dev(lsd->acid_next);
87         lsd->acid_next = NULL;
88         RETURN(next);
89 }
90
91 static struct lu_device *lovsub_device_free(const struct lu_env *env,
92                                             struct lu_device *d)
93 {
94         struct lovsub_device *lsd  = lu2lovsub_dev(d);
95         struct lu_device     *next = cl2lu_dev(lsd->acid_next);
96
97         if (atomic_read(&d->ld_ref) && d->ld_site) {
98                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
99                 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
100         }
101         cl_device_fini(lu2cl_dev(d));
102         OBD_FREE_PTR(lsd);
103         return next;
104 }
105
106 static const struct lu_device_operations lovsub_lu_ops = {
107         .ldo_object_alloc      = lovsub_object_alloc,
108         .ldo_process_config    = NULL,
109         .ldo_recovery_complete = NULL
110 };
111
112 static struct lu_device *lovsub_device_alloc(const struct lu_env *env,
113                                              struct lu_device_type *t,
114                                              struct lustre_cfg *cfg)
115 {
116         struct lu_device     *d;
117         struct lovsub_device *lsd;
118
119         OBD_ALLOC_PTR(lsd);
120         if (lsd != NULL) {
121                 int result;
122
123                 result = cl_device_init(&lsd->acid_cl, t);
124                 if (result == 0) {
125                         d = lovsub2lu_dev(lsd);
126                         d->ld_ops         = &lovsub_lu_ops;
127                 } else
128                         d = ERR_PTR(result);
129         } else
130                 d = ERR_PTR(-ENOMEM);
131         return d;
132 }
133
134 static const struct lu_device_type_operations lovsub_device_type_ops = {
135         .ldto_device_alloc = lovsub_device_alloc,
136         .ldto_device_free  = lovsub_device_free,
137
138         .ldto_device_init    = lovsub_device_init,
139         .ldto_device_fini    = lovsub_device_fini
140 };
141
142 #define LUSTRE_LOVSUB_NAME         "lovsub"
143
144 struct lu_device_type lovsub_device_type = {
145         .ldt_tags     = LU_DEVICE_CL,
146         .ldt_name     = LUSTRE_LOVSUB_NAME,
147         .ldt_ops      = &lovsub_device_type_ops,
148         .ldt_ctx_tags = LCT_CL_THREAD
149 };
150
151
152 /** @} lov */
153