4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2013, 2015, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * Implementation of cl_device and cl_device_type for LOVSUB layer.
34 * Author: Nikita Danilov <nikita.danilov@sun.com>
37 #define DEBUG_SUBSYSTEM S_LOV
39 #include "lov_cl_internal.h"
45 /*****************************************************************************
47 * Lov-sub device and device type functions.
51 static int lovsub_device_init(const struct lu_env *env, struct lu_device *d,
52 const char *name, struct lu_device *next)
54 struct lovsub_device *lsd = lu2lovsub_dev(d);
55 struct lu_device_type *ldt;
59 next->ld_site = d->ld_site;
62 rc = ldt->ldt_ops->ldto_device_init(env, next, ldt->ldt_name, NULL);
69 lu_ref_add(&next->ld_reference, "lu-stack", &lu_site_init);
70 lsd->acid_next = lu2cl_dev(next);
74 static struct lu_device *lovsub_device_fini(const struct lu_env *env,
77 struct lu_device *next;
78 struct lovsub_device *lsd;
81 lsd = lu2lovsub_dev(d);
82 next = cl2lu_dev(lsd->acid_next);
83 lsd->acid_next = NULL;
87 static struct lu_device *lovsub_device_free(const struct lu_env *env,
90 struct lovsub_device *lsd = lu2lovsub_dev(d);
91 struct lu_device *next = cl2lu_dev(lsd->acid_next);
93 if (atomic_read(&d->ld_ref) && d->ld_site) {
94 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
95 lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);
97 cl_device_fini(lu2cl_dev(d));
102 static const struct lu_device_operations lovsub_lu_ops = {
103 .ldo_object_alloc = lovsub_object_alloc,
104 .ldo_process_config = NULL,
105 .ldo_recovery_complete = NULL
108 static struct lu_device *lovsub_device_alloc(const struct lu_env *env,
109 struct lu_device_type *t,
110 struct lustre_cfg *cfg)
113 struct lovsub_device *lsd;
119 result = cl_device_init(&lsd->acid_cl, t);
121 d = lovsub2lu_dev(lsd);
122 d->ld_ops = &lovsub_lu_ops;
126 d = ERR_PTR(-ENOMEM);
130 static const struct lu_device_type_operations lovsub_device_type_ops = {
131 .ldto_device_alloc = lovsub_device_alloc,
132 .ldto_device_free = lovsub_device_free,
134 .ldto_device_init = lovsub_device_init,
135 .ldto_device_fini = lovsub_device_fini
138 #define LUSTRE_LOVSUB_NAME "lovsub"
140 struct lu_device_type lovsub_device_type = {
141 .ldt_tags = LU_DEVICE_CL,
142 .ldt_name = LUSTRE_LOVSUB_NAME,
143 .ldt_ops = &lovsub_device_type_ops,
144 .ldt_ctx_tags = LCT_CL_THREAD