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.sun.com/software/products/lustre/docs/GPLv2.pdf
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
27 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2015, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * Implementation of cl_page for LOV layer.
38 * Author: Nikita Danilov <nikita.danilov@sun.com>
39 * Author: Jinshan Xiong <jinshan.xiong@intel.com>
42 #define DEBUG_SUBSYSTEM S_LOV
44 #include "lov_cl_internal.h"
50 /*****************************************************************************
52 * Lov page operations.
56 static int lov_raid0_page_print(const struct lu_env *env,
57 const struct cl_page_slice *slice,
58 void *cookie, lu_printer_t printer)
60 struct lov_page *lp = cl2lov_page(slice);
62 return (*printer)(env, cookie, LUSTRE_LOV_NAME"-page@%p, raid0\n", lp);
65 static const struct cl_page_operations lov_raid0_page_ops = {
66 .cpo_print = lov_raid0_page_print
69 int lov_page_init_raid0(const struct lu_env *env, struct cl_object *obj,
70 struct cl_page *page, pgoff_t index)
72 struct lov_object *loo = cl2lov(obj);
73 struct lov_layout_raid0 *r0 = lov_r0(loo);
74 struct lov_io *lio = lov_env_io(env);
75 struct cl_object *subobj;
77 struct lov_io_sub *sub;
78 struct lov_page *lpg = cl_object_page_slice(obj, page);
85 offset = cl_offset(obj, index);
86 stripe = lov_stripe_number(loo->lo_lsm, offset);
87 LASSERT(stripe < r0->lo_nr);
88 rc = lov_stripe_offset(loo->lo_lsm, offset, stripe,
92 lpg->lps_stripe = stripe;
93 cl_page_slice_add(page, &lpg->lps_cl, obj, index, &lov_raid0_page_ops);
95 sub = lov_sub_get(env, lio, stripe);
99 subobj = lovsub2cl(r0->lo_sub[stripe]);
100 list_for_each_entry(o, &subobj->co_lu.lo_header->loh_layers,
102 if (o->co_ops->coo_page_init != NULL) {
103 rc = o->co_ops->coo_page_init(sub->sub_env, o, page,
104 cl_index(subobj, suboff));
113 static int lov_empty_page_print(const struct lu_env *env,
114 const struct cl_page_slice *slice,
115 void *cookie, lu_printer_t printer)
117 struct lov_page *lp = cl2lov_page(slice);
119 return (*printer)(env, cookie, LUSTRE_LOV_NAME"-page@%p, empty.\n", lp);
122 static const struct cl_page_operations lov_empty_page_ops = {
123 .cpo_print = lov_empty_page_print
126 int lov_page_init_empty(const struct lu_env *env, struct cl_object *obj,
127 struct cl_page *page, pgoff_t index)
129 struct lov_page *lpg = cl_object_page_slice(obj, page);
133 cl_page_slice_add(page, &lpg->lps_cl, obj, index, &lov_empty_page_ops);
134 addr = kmap(page->cp_vmpage);
135 memset(addr, 0, cl_page_size(obj));
136 kunmap(page->cp_vmpage);
137 cl_page_export(env, page, 1);