Whamcloud - gitweb
LU-14487 modules: remove references to Sun Trademark.
[fs/lustre-release.git] / lustre / lov / lov_page.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) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * Implementation of cl_page for LOV layer.
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  *   Author: Jinshan Xiong <jinshan.xiong@intel.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 page operations.
48  *
49  */
50
51 static int lov_comp_page_print(const struct lu_env *env,
52                                const struct cl_page_slice *slice,
53                                void *cookie, lu_printer_t printer)
54 {
55         struct lov_page *lp = cl2lov_page(slice);
56
57         return (*printer)(env, cookie,
58                           LUSTRE_LOV_NAME"-page@%p, gen: %u\n",
59                           lp, lp->lps_layout_gen);
60 }
61
62 static const struct cl_page_operations lov_comp_page_ops = {
63         .cpo_print = lov_comp_page_print
64 };
65
66 int lov_page_init_composite(const struct lu_env *env, struct cl_object *obj,
67                             struct cl_page *page, pgoff_t index)
68 {
69         struct lov_object *loo = cl2lov(obj);
70         struct lov_io *lio = lov_env_io(env);
71         struct cl_object *subobj;
72         struct cl_object *o;
73         struct lov_io_sub *sub;
74         struct lov_page *lpg = cl_object_page_slice(obj, page);
75         struct lov_layout_raid0 *r0;
76         loff_t offset;
77         loff_t suboff;
78         int entry;
79         int stripe;
80         int rc;
81
82         ENTRY;
83
84         offset = cl_offset(obj, index);
85         entry = lov_io_layout_at(lio, offset);
86         if (entry < 0 || !lsm_entry_inited(loo->lo_lsm, entry)) {
87                 /* non-existing layout component */
88                 lov_page_init_empty(env, obj, page, index);
89                 RETURN(0);
90         }
91
92         r0 = lov_r0(loo, entry);
93         stripe = lov_stripe_number(loo->lo_lsm, entry, offset);
94         LASSERT(stripe < r0->lo_nr);
95         rc = lov_stripe_offset(loo->lo_lsm, entry, offset, stripe, &suboff);
96         LASSERT(rc == 0);
97
98         page->cp_lov_index = lov_comp_index(entry, stripe);
99         lpg->lps_layout_gen = loo->lo_lsm->lsm_layout_gen;
100         cl_page_slice_add(page, &lpg->lps_cl, obj, &lov_comp_page_ops);
101
102         sub = lov_sub_get(env, lio, page->cp_lov_index);
103         if (IS_ERR(sub))
104                 RETURN(PTR_ERR(sub));
105
106         subobj = lovsub2cl(r0->lo_sub[stripe]);
107         cl_object_for_each(o, subobj) {
108                 if (o->co_ops->coo_page_init) {
109                         rc = o->co_ops->coo_page_init(sub->sub_env, o, page,
110                                                       cl_index(subobj, suboff));
111                         if (rc != 0)
112                                 break;
113                 }
114         }
115
116         RETURN(rc);
117 }
118
119 static int lov_empty_page_print(const struct lu_env *env,
120                                 const struct cl_page_slice *slice,
121                                 void *cookie, lu_printer_t printer)
122 {
123         struct lov_page *lp = cl2lov_page(slice);
124
125         return (*printer)(env, cookie, LUSTRE_LOV_NAME"-page@%p, empty.\n", lp);
126 }
127
128 static const struct cl_page_operations lov_empty_page_ops = {
129         .cpo_print = lov_empty_page_print
130 };
131
132 int lov_page_init_empty(const struct lu_env *env, struct cl_object *obj,
133                         struct cl_page *page, pgoff_t index)
134 {
135         struct lov_page *lpg = cl_object_page_slice(obj, page);
136         void *addr;
137
138         ENTRY;
139
140         page->cp_lov_index = ~0;
141         cl_page_slice_add(page, &lpg->lps_cl, obj, &lov_empty_page_ops);
142         addr = kmap(page->cp_vmpage);
143         memset(addr, 0, cl_page_size(obj));
144         kunmap(page->cp_vmpage);
145         cl_page_export(env, page, 1);
146         RETURN(0);
147 }
148
149 int lov_page_init_foreign(const struct lu_env *env, struct cl_object *obj,
150                         struct cl_page *page, pgoff_t index)
151 {
152         CDEBUG(D_PAGE, DFID" has no data\n", PFID(lu_object_fid(&obj->co_lu)));
153         RETURN(-ENODATA);
154 }
155
156 bool lov_page_is_empty(const struct cl_page *page)
157 {
158         const struct cl_page_slice *slice = cl_page_at(page, &lov_device_type);
159
160         LASSERT(slice != NULL);
161         return slice->cpl_ops == &lov_empty_page_ops;
162 }
163
164
165 /** @} lov */
166