Whamcloud - gitweb
land clio.
[fs/lustre-release.git] / lustre / lov / lovsub_object.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
30  * Use is subject to license terms.
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_object 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 lov @{ */
46
47 /*****************************************************************************
48  *
49  * Lovsub object operations.
50  *
51  */
52
53 int lovsub_object_init(const struct lu_env *env, struct lu_object *obj,
54                        const struct lu_object_conf *conf)
55 {
56         struct lovsub_device  *dev   = lu2lovsub_dev(obj->lo_dev);
57         struct lu_object      *below;
58         struct lu_device      *under;
59
60         int result;
61
62         ENTRY;
63         under = &dev->acid_next->cd_lu_dev;
64         below = under->ld_ops->ldo_object_alloc(env, obj->lo_header, under);
65         if (below != NULL) {
66                 lu_object_add(obj, below);
67                 result = 0;
68         } else
69                 result = -ENOMEM;
70         RETURN(result);
71
72 }
73
74 static void lovsub_object_free(const struct lu_env *env, struct lu_object *obj)
75 {
76         struct lovsub_object *los = lu2lovsub(obj);
77
78         ENTRY;
79         lu_object_fini(obj);
80         lu_object_header_fini(&los->lso_header.coh_lu);
81         OBD_SLAB_FREE_PTR(los, lovsub_object_kmem);
82         EXIT;
83 }
84
85 static int lovsub_object_print(const struct lu_env *env, void *cookie,
86                                lu_printer_t p, const struct lu_object *obj)
87 {
88         struct lovsub_object *los = lu2lovsub(obj);
89
90         return (*p)(env, cookie, "[%i]", los->lso_index);
91 }
92
93 static int lovsub_attr_set(const struct lu_env *env, struct cl_object *obj,
94                            const struct cl_attr *attr, unsigned valid)
95 {
96         struct lov_object *lov = cl2lovsub(obj)->lso_super;
97
98         ENTRY;
99         lov_r0(lov)->lo_attr_valid = 0;
100         RETURN(0);
101 }
102
103 static int lovsub_object_glimpse(const struct lu_env *env,
104                                  const struct cl_object *obj,
105                                  struct ost_lvb *lvb)
106 {
107         struct lovsub_object *los = cl2lovsub(obj);
108
109         ENTRY;
110         RETURN(cl_object_glimpse(env, &los->lso_super->lo_cl, lvb));
111 }
112
113
114
115 static const struct cl_object_operations lovsub_ops = {
116         .coo_page_init = lovsub_page_init,
117         .coo_lock_init = lovsub_lock_init,
118         .coo_attr_set  = lovsub_attr_set,
119         .coo_glimpse   = lovsub_object_glimpse
120 };
121
122 static const struct lu_object_operations lovsub_lu_obj_ops = {
123         .loo_object_init      = lovsub_object_init,
124         .loo_object_delete    = NULL,
125         .loo_object_release   = NULL,
126         .loo_object_free      = lovsub_object_free,
127         .loo_object_print     = lovsub_object_print,
128         .loo_object_invariant = NULL
129 };
130
131 struct lu_object *lovsub_object_alloc(const struct lu_env *env,
132                                       const struct lu_object_header *_,
133                                       struct lu_device *dev)
134 {
135         struct lovsub_object *los;
136         struct lu_object     *obj;
137
138         ENTRY;
139         OBD_SLAB_ALLOC_PTR(los, lovsub_object_kmem);
140         if (los != NULL) {
141                 struct cl_object_header *hdr;
142
143                 obj = lovsub2lu(los);
144                 hdr = &los->lso_header;
145                 cl_object_header_init(hdr);
146                 lu_object_init(obj, &hdr->coh_lu, dev);
147                 lu_object_add_top(&hdr->coh_lu, obj);
148                 los->lso_cl.co_ops = &lovsub_ops;
149                 obj->lo_ops = &lovsub_lu_obj_ops;
150         } else
151                 obj = NULL;
152         RETURN(obj);
153 }
154
155 /** @} lov */