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) 2011, 2016, 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_page for LOV layer.
34 * Author: Nikita Danilov <nikita.danilov@sun.com>
35 * Author: Jinshan Xiong <jinshan.xiong@intel.com>
38 #define DEBUG_SUBSYSTEM S_LOV
40 #include "lov_cl_internal.h"
46 /*****************************************************************************
48 * Lov page operations.
52 static int lov_comp_page_print(const struct lu_env *env,
53 const struct cl_page_slice *slice,
54 void *cookie, lu_printer_t printer)
56 struct lov_page *lp = cl2lov_page(slice);
58 return (*printer)(env, cookie,
59 LUSTRE_LOV_NAME"-page@%p, comp index: %x, gen: %u\n",
60 lp, lp->lps_index, lp->lps_layout_gen);
63 static const struct cl_page_operations lov_comp_page_ops = {
64 .cpo_print = lov_comp_page_print
67 int lov_page_init_composite(const struct lu_env *env, struct cl_object *obj,
68 struct cl_page *page, pgoff_t index)
70 struct lov_object *loo = cl2lov(obj);
71 struct lov_io *lio = lov_env_io(env);
72 struct cl_object *subobj;
74 struct lov_io_sub *sub;
75 struct lov_page *lpg = cl_object_page_slice(obj, page);
76 struct lov_layout_raid0 *r0;
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);
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);
98 lpg->lps_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, index, &lov_comp_page_ops);
102 sub = lov_sub_get(env, lio, lpg->lps_index);
104 RETURN(PTR_ERR(sub));
106 subobj = lovsub2cl(r0->lo_sub[stripe]);
107 list_for_each_entry(o, &subobj->co_lu.lo_header->loh_layers,
109 if (o->co_ops->coo_page_init != NULL) {
110 rc = o->co_ops->coo_page_init(sub->sub_env, o, page,
111 cl_index(subobj, suboff));
120 static int lov_empty_page_print(const struct lu_env *env,
121 const struct cl_page_slice *slice,
122 void *cookie, lu_printer_t printer)
124 struct lov_page *lp = cl2lov_page(slice);
126 return (*printer)(env, cookie, LUSTRE_LOV_NAME"-page@%p, empty.\n", lp);
129 static const struct cl_page_operations lov_empty_page_ops = {
130 .cpo_print = lov_empty_page_print
133 int lov_page_init_empty(const struct lu_env *env, struct cl_object *obj,
134 struct cl_page *page, pgoff_t index)
136 struct lov_page *lpg = cl_object_page_slice(obj, page);
140 cl_page_slice_add(page, &lpg->lps_cl, obj, index, &lov_empty_page_ops);
141 addr = kmap(page->cp_vmpage);
142 memset(addr, 0, cl_page_size(obj));
143 kunmap(page->cp_vmpage);
144 cl_page_export(env, page, 1);