Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[cascardo/linux.git] / drivers / staging / lustre / 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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
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
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
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_page for LOV layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  *   Author: Jinshan Xiong <jinshan.xiong@intel.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_LOV
43
44 #include "lov_cl_internal.h"
45
46 /** \addtogroup lov
47  *  @{
48  */
49
50 /*****************************************************************************
51  *
52  * Lov page operations.
53  *
54  */
55
56 /**
57  * Adjust the stripe index by layout of raid0. @max_index is the maximum
58  * page index covered by an underlying DLM lock.
59  * This function converts max_index from stripe level to file level, and make
60  * sure it's not beyond one stripe.
61  */
62 static int lov_raid0_page_is_under_lock(const struct lu_env *env,
63                                         const struct cl_page_slice *slice,
64                                         struct cl_io *unused,
65                                         pgoff_t *max_index)
66 {
67         struct lov_object *loo = cl2lov(slice->cpl_obj);
68         struct lov_layout_raid0 *r0 = lov_r0(loo);
69         pgoff_t index = *max_index;
70         unsigned int pps; /* pages per stripe */
71
72         CDEBUG(D_READA, "*max_index = %lu, nr = %d\n", index, r0->lo_nr);
73         if (index == 0) /* the page is not covered by any lock */
74                 return 0;
75
76         if (r0->lo_nr == 1) /* single stripe file */
77                 return 0;
78
79         /* max_index is stripe level, convert it into file level */
80         if (index != CL_PAGE_EOF) {
81                 int stripeno = lov_page_stripe(slice->cpl_page);
82                 *max_index = lov_stripe_pgoff(loo->lo_lsm, index, stripeno);
83         }
84
85         /* calculate the end of current stripe */
86         pps = loo->lo_lsm->lsm_stripe_size >> PAGE_SHIFT;
87         index = ((slice->cpl_index + pps) & ~(pps - 1)) - 1;
88
89         /* never exceed the end of the stripe */
90         *max_index = min_t(pgoff_t, *max_index, index);
91         return 0;
92 }
93
94 static int lov_raid0_page_print(const struct lu_env *env,
95                                 const struct cl_page_slice *slice,
96                                 void *cookie, lu_printer_t printer)
97 {
98         struct lov_page *lp = cl2lov_page(slice);
99
100         return (*printer)(env, cookie, LUSTRE_LOV_NAME "-page@%p, raid0\n", lp);
101 }
102
103 static const struct cl_page_operations lov_raid0_page_ops = {
104         .cpo_is_under_lock = lov_raid0_page_is_under_lock,
105         .cpo_print  = lov_raid0_page_print
106 };
107
108 int lov_page_init_raid0(const struct lu_env *env, struct cl_object *obj,
109                         struct cl_page *page, pgoff_t index)
110 {
111         struct lov_object *loo = cl2lov(obj);
112         struct lov_layout_raid0 *r0 = lov_r0(loo);
113         struct lov_io     *lio = lov_env_io(env);
114         struct cl_object  *subobj;
115         struct cl_object  *o;
116         struct lov_io_sub *sub;
117         struct lov_page   *lpg = cl_object_page_slice(obj, page);
118         loff_t       offset;
119         u64         suboff;
120         int             stripe;
121         int             rc;
122
123         offset = cl_offset(obj, index);
124         stripe = lov_stripe_number(loo->lo_lsm, offset);
125         LASSERT(stripe < r0->lo_nr);
126         rc = lov_stripe_offset(loo->lo_lsm, offset, stripe, &suboff);
127         LASSERT(rc == 0);
128
129         cl_page_slice_add(page, &lpg->lps_cl, obj, index, &lov_raid0_page_ops);
130
131         sub = lov_sub_get(env, lio, stripe);
132         if (IS_ERR(sub))
133                 return PTR_ERR(sub);
134
135         subobj = lovsub2cl(r0->lo_sub[stripe]);
136         list_for_each_entry(o, &subobj->co_lu.lo_header->loh_layers,
137                             co_lu.lo_linkage) {
138                 if (o->co_ops->coo_page_init) {
139                         rc = o->co_ops->coo_page_init(sub->sub_env, o, page,
140                                                       cl_index(subobj, suboff));
141                         if (rc != 0)
142                                 break;
143                 }
144         }
145         lov_sub_put(sub);
146
147         return rc;
148 }
149
150 static int lov_empty_page_print(const struct lu_env *env,
151                                 const struct cl_page_slice *slice,
152                                 void *cookie, lu_printer_t printer)
153 {
154         struct lov_page *lp = cl2lov_page(slice);
155
156         return (*printer)(env, cookie, LUSTRE_LOV_NAME "-page@%p, empty.\n",
157                           lp);
158 }
159
160 static const struct cl_page_operations lov_empty_page_ops = {
161         .cpo_print = lov_empty_page_print
162 };
163
164 int lov_page_init_empty(const struct lu_env *env, struct cl_object *obj,
165                         struct cl_page *page, pgoff_t index)
166 {
167         struct lov_page *lpg = cl_object_page_slice(obj, page);
168         void *addr;
169
170         cl_page_slice_add(page, &lpg->lps_cl, obj, index, &lov_empty_page_ops);
171         addr = kmap(page->cp_vmpage);
172         memset(addr, 0, cl_page_size(obj));
173         kunmap(page->cp_vmpage);
174         cl_page_export(env, page, 1);
175         return 0;
176 }
177
178 /** @} lov */