blob: 3b1cc3a132d7edb0ead6b47d0261e65fcd65f4d8 [file] [log] [blame]
Boaz Harroshb14f8ab2008-10-27 18:27:55 +02001/*
2 * Copyright (C) 2005, 2006
Boaz Harrosh27d2e142009-06-14 17:23:09 +03003 * Avishay Traeger (avishay@gmail.com)
Boaz Harroshb14f8ab2008-10-27 18:27:55 +02004 * Copyright (C) 2008, 2009
5 * Boaz Harrosh <bharrosh@panasas.com>
6 *
7 * This file is part of exofs.
8 *
9 * exofs is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation. Since it is based on ext2, and the only
12 * valid version of GPL for the Linux kernel is version 2, the only valid
13 * version of GPL for exofs is version 2.
14 *
15 * exofs is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with exofs; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Boaz Harrosh5d952b82010-02-01 13:35:51 +020026#include <asm/div64.h>
Boaz Harroshb14f8ab2008-10-27 18:27:55 +020027
Boaz Harrosh8ff660a2011-08-06 19:26:31 -070028#include <scsi/osd_ore.h>
Boaz Harroshb14f8ab2008-10-27 18:27:55 +020029
Boaz Harrosh8ff660a2011-08-06 19:26:31 -070030#define ORE_ERR(fmt, a...) printk(KERN_ERR "ore: " fmt, ##a)
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +020031
Boaz Harrosh8ff660a2011-08-06 19:26:31 -070032#ifdef CONFIG_EXOFS_DEBUG
33#define ORE_DBGMSG(fmt, a...) \
34 printk(KERN_NOTICE "ore @%s:%d: " fmt, __func__, __LINE__, ##a)
35#else
36#define ORE_DBGMSG(fmt, a...) \
37 do { if (0) printk(fmt, ##a); } while (0)
38#endif
39
40/* u64 has problems with printk this will cast it to unsigned long long */
41#define _LLU(x) (unsigned long long)(x)
42
43#define ORE_DBGMSG2(M...) do {} while (0)
44/* #define ORE_DBGMSG2 ORE_DBGMSG */
45
Boaz Harroshcf283ad2011-08-06 19:22:06 -070046MODULE_AUTHOR("Boaz Harrosh <bharrosh@panasas.com>");
47MODULE_DESCRIPTION("Objects Raid Engine ore.ko");
48MODULE_LICENSE("GPL");
49
Boaz Harrosh5a51c0c2011-09-28 13:18:45 +030050/* ore_verify_layout does a couple of things:
51 * 1. Given a minimum number of needed parameters fixes up the rest of the
52 * members to be operatonals for the ore. The needed parameters are those
53 * that are defined by the pnfs-objects layout STD.
54 * 2. Check to see if the current ore code actually supports these parameters
55 * for example stripe_unit must be a multple of the system PAGE_SIZE,
56 * and etc...
57 * 3. Cache some havily used calculations that will be needed by users.
58 */
59
Boaz Harroshb916c5c2011-09-28 11:55:51 +030060static void ore_calc_stripe_info(struct ore_layout *layout, u64 file_offset,
61 struct ore_striping_info *si);
62
Boaz Harrosh5a51c0c2011-09-28 13:18:45 +030063enum { BIO_MAX_PAGES_KMALLOC =
64 (PAGE_SIZE - sizeof(struct bio)) / sizeof(struct bio_vec),};
65
66int ore_verify_layout(unsigned total_comps, struct ore_layout *layout)
67{
68 u64 stripe_length;
69
70/* FIXME: Only raid0 is supported for now. */
71 if (layout->raid_algorithm != PNFS_OSD_RAID_0) {
72 ORE_ERR("Only RAID_0 for now\n");
73 return -EINVAL;
74 }
75 if (0 != (layout->stripe_unit & ~PAGE_MASK)) {
76 ORE_ERR("Stripe Unit(0x%llx)"
77 " must be Multples of PAGE_SIZE(0x%lx)\n",
78 _LLU(layout->stripe_unit), PAGE_SIZE);
79 return -EINVAL;
80 }
81 if (layout->group_width) {
82 if (!layout->group_depth) {
83 ORE_ERR("group_depth == 0 && group_width != 0\n");
84 return -EINVAL;
85 }
86 if (total_comps < (layout->group_width * layout->mirrors_p1)) {
87 ORE_ERR("Data Map wrong, "
88 "numdevs=%d < group_width=%d * mirrors=%d\n",
89 total_comps, layout->group_width,
90 layout->mirrors_p1);
91 return -EINVAL;
92 }
93 layout->group_count = total_comps / layout->mirrors_p1 /
94 layout->group_width;
95 } else {
96 if (layout->group_depth) {
97 printk(KERN_NOTICE "Warning: group_depth ignored "
98 "group_width == 0 && group_depth == %lld\n",
99 _LLU(layout->group_depth));
100 }
101 layout->group_width = total_comps / layout->mirrors_p1;
102 layout->group_depth = -1;
103 layout->group_count = 1;
104 }
105
106 stripe_length = (u64)layout->group_width * layout->stripe_unit;
107 if (stripe_length >= (1ULL << 32)) {
108 ORE_ERR("Stripe_length(0x%llx) >= 32bit is not supported\n",
109 _LLU(stripe_length));
110 return -EINVAL;
111 }
112
113 layout->max_io_length =
114 (BIO_MAX_PAGES_KMALLOC * PAGE_SIZE - layout->stripe_unit) *
115 layout->group_width;
116 return 0;
117}
118EXPORT_SYMBOL(ore_verify_layout);
119
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700120static u8 *_ios_cred(struct ore_io_state *ios, unsigned index)
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700121{
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300122 return ios->oc->comps[index & ios->oc->single_comp].cred;
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700123}
124
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700125static struct osd_obj_id *_ios_obj(struct ore_io_state *ios, unsigned index)
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700126{
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300127 return &ios->oc->comps[index & ios->oc->single_comp].obj;
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700128}
129
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700130static struct osd_dev *_ios_od(struct ore_io_state *ios, unsigned index)
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700131{
Boaz Harrosh3bd98562011-09-28 12:04:23 +0300132 ORE_DBGMSG2("oc->first_dev=%d oc->numdevs=%d i=%d oc->ods=%p\n",
133 ios->oc->first_dev, ios->oc->numdevs, index,
134 ios->oc->ods);
135
Boaz Harroshd866d872011-09-28 14:43:09 +0300136 return ore_comp_dev(ios->oc, index);
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700137}
138
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300139static int _get_io_state(struct ore_layout *layout,
140 struct ore_components *oc, unsigned numdevs,
141 struct ore_io_state **pios)
Boaz Harroshb14f8ab2008-10-27 18:27:55 +0200142{
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700143 struct ore_io_state *ios;
Boaz Harroshb14f8ab2008-10-27 18:27:55 +0200144
Boaz Harrosh06886a52009-11-08 14:54:08 +0200145 /*TODO: Maybe use kmem_cach per sbi of size
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200146 * exofs_io_state_size(layout->s_numdevs)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200147 */
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300148 ios = kzalloc(ore_io_state_size(numdevs), GFP_KERNEL);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200149 if (unlikely(!ios)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700150 ORE_DBGMSG("Failed kzalloc bytes=%d\n",
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300151 ore_io_state_size(numdevs));
Boaz Harrosh06886a52009-11-08 14:54:08 +0200152 *pios = NULL;
153 return -ENOMEM;
Boaz Harroshb14f8ab2008-10-27 18:27:55 +0200154 }
155
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200156 ios->layout = layout;
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300157 ios->oc = oc;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200158 *pios = ios;
159 return 0;
160}
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300161
162/* Allocate an io_state for only a single group of devices
163 *
164 * If a user needs to call ore_read/write() this version must be used becase it
165 * allocates extra stuff for striping and raid.
166 * The ore might decide to only IO less then @length bytes do to alignmets
167 * and constrains as follows:
168 * - The IO cannot cross group boundary.
169 * - In raid5/6 The end of the IO must align at end of a stripe eg.
170 * (@offset + @length) % strip_size == 0. Or the complete range is within a
171 * single stripe.
172 * - Memory condition only permitted a shorter IO. (A user can use @length=~0
173 * And check the returned ios->length for max_io_size.)
174 *
175 * The caller must check returned ios->length (and/or ios->nr_pages) and
176 * re-issue these pages that fall outside of ios->length
177 */
178int ore_get_rw_state(struct ore_layout *layout, struct ore_components *oc,
179 bool is_reading, u64 offset, u64 length,
180 struct ore_io_state **pios)
181{
182 struct ore_io_state *ios;
183 unsigned numdevs = layout->group_width * layout->mirrors_p1;
184 int ret;
185
186 ret = _get_io_state(layout, oc, numdevs, pios);
187 if (unlikely(ret))
188 return ret;
189
190 ios = *pios;
191 ios->reading = is_reading;
192 ios->offset = offset;
193
194 if (length) {
Boaz Harrosh98260752011-10-02 15:32:50 +0200195 ore_calc_stripe_info(layout, offset, &ios->si);
196 ios->length = (length <= ios->si.group_length) ? length :
197 ios->si.group_length;
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300198 ios->nr_pages = (ios->length + PAGE_SIZE - 1) / PAGE_SIZE;
199 }
200
201 return 0;
202}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700203EXPORT_SYMBOL(ore_get_rw_state);
Boaz Harroshb14f8ab2008-10-27 18:27:55 +0200204
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300205/* Allocate an io_state for all the devices in the comps array
206 *
207 * This version of io_state allocation is used mostly by create/remove
208 * and trunc where we currently need all the devices. The only wastful
209 * bit is the read/write_attributes with no IO. Those sites should
210 * be converted to use ore_get_rw_state() with length=0
211 */
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300212int ore_get_io_state(struct ore_layout *layout, struct ore_components *oc,
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300213 struct ore_io_state **pios)
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200214{
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300215 return _get_io_state(layout, oc, oc->numdevs, pios);
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200216}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700217EXPORT_SYMBOL(ore_get_io_state);
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200218
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700219void ore_put_io_state(struct ore_io_state *ios)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200220{
221 if (ios) {
222 unsigned i;
223
224 for (i = 0; i < ios->numdevs; i++) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700225 struct ore_per_dev_state *per_dev = &ios->per_dev[i];
Boaz Harrosh06886a52009-11-08 14:54:08 +0200226
227 if (per_dev->or)
228 osd_end_request(per_dev->or);
229 if (per_dev->bio)
230 bio_put(per_dev->bio);
231 }
232
233 kfree(ios);
234 }
235}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700236EXPORT_SYMBOL(ore_put_io_state);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200237
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700238static void _sync_done(struct ore_io_state *ios, void *p)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200239{
240 struct completion *waiting = p;
241
242 complete(waiting);
243}
244
245static void _last_io(struct kref *kref)
246{
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700247 struct ore_io_state *ios = container_of(
248 kref, struct ore_io_state, kref);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200249
250 ios->done(ios, ios->private);
251}
252
253static void _done_io(struct osd_request *or, void *p)
254{
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700255 struct ore_io_state *ios = p;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200256
257 kref_put(&ios->kref, _last_io);
258}
259
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700260static int ore_io_execute(struct ore_io_state *ios)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200261{
262 DECLARE_COMPLETION_ONSTACK(wait);
263 bool sync = (ios->done == NULL);
264 int i, ret;
265
266 if (sync) {
267 ios->done = _sync_done;
268 ios->private = &wait;
269 }
270
271 for (i = 0; i < ios->numdevs; i++) {
272 struct osd_request *or = ios->per_dev[i].or;
273 if (unlikely(!or))
274 continue;
275
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700276 ret = osd_finalize_request(or, 0, _ios_cred(ios, i), NULL);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200277 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700278 ORE_DBGMSG("Failed to osd_finalize_request() => %d\n",
Boaz Harrosh06886a52009-11-08 14:54:08 +0200279 ret);
280 return ret;
281 }
282 }
283
284 kref_init(&ios->kref);
285
286 for (i = 0; i < ios->numdevs; i++) {
287 struct osd_request *or = ios->per_dev[i].or;
288 if (unlikely(!or))
289 continue;
290
291 kref_get(&ios->kref);
292 osd_execute_request_async(or, _done_io, ios);
293 }
294
295 kref_put(&ios->kref, _last_io);
296 ret = 0;
297
298 if (sync) {
299 wait_for_completion(&wait);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700300 ret = ore_check_io(ios, NULL);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200301 }
Boaz Harroshb14f8ab2008-10-27 18:27:55 +0200302 return ret;
303}
304
Boaz Harrosh22ddc552010-01-19 19:24:45 +0200305static void _clear_bio(struct bio *bio)
306{
307 struct bio_vec *bv;
308 unsigned i;
309
310 __bio_for_each_segment(bv, bio, i, 0) {
311 unsigned this_count = bv->bv_len;
312
313 if (likely(PAGE_SIZE == this_count))
314 clear_highpage(bv->bv_page);
315 else
316 zero_user(bv->bv_page, bv->bv_offset, this_count);
317 }
318}
319
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300320int ore_check_io(struct ore_io_state *ios, ore_on_dev_error on_dev_error)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200321{
322 enum osd_err_priority acumulated_osd_err = 0;
323 int acumulated_lin_err = 0;
324 int i;
325
326 for (i = 0; i < ios->numdevs; i++) {
327 struct osd_sense_info osi;
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300328 struct ore_per_dev_state *per_dev = &ios->per_dev[i];
329 struct osd_request *or = per_dev->or;
Boaz Harrosh22ddc552010-01-19 19:24:45 +0200330 int ret;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200331
Boaz Harrosh22ddc552010-01-19 19:24:45 +0200332 if (unlikely(!or))
333 continue;
334
335 ret = osd_req_decode_sense(or, &osi);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200336 if (likely(!ret))
337 continue;
338
Boaz Harrosh22ddc552010-01-19 19:24:45 +0200339 if (OSD_ERR_PRI_CLEAR_PAGES == osi.osd_err_pri) {
340 /* start read offset passed endof file */
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300341 _clear_bio(per_dev->bio);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700342 ORE_DBGMSG("start read offset passed end of file "
Boaz Harrosh22ddc552010-01-19 19:24:45 +0200343 "offset=0x%llx, length=0x%llx\n",
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300344 _LLU(per_dev->offset),
345 _LLU(per_dev->length));
Boaz Harrosh22ddc552010-01-19 19:24:45 +0200346
347 continue; /* we recovered */
Boaz Harrosh06886a52009-11-08 14:54:08 +0200348 }
349
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300350 if (on_dev_error) {
351 u64 residual = ios->reading ?
352 or->in.residual : or->out.residual;
353 u64 offset = (ios->offset + ios->length) - residual;
354 struct ore_dev *od = ios->oc->ods[
355 per_dev->dev - ios->oc->first_dev];
356
357 on_dev_error(ios, od, per_dev->dev, osi.osd_err_pri,
358 offset, residual);
359 }
Boaz Harrosh06886a52009-11-08 14:54:08 +0200360 if (osi.osd_err_pri >= acumulated_osd_err) {
361 acumulated_osd_err = osi.osd_err_pri;
362 acumulated_lin_err = ret;
363 }
364 }
365
Boaz Harrosh06886a52009-11-08 14:54:08 +0200366 return acumulated_lin_err;
367}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700368EXPORT_SYMBOL(ore_check_io);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200369
Boaz Harroshb367e782010-02-07 19:18:58 +0200370/*
371 * L - logical offset into the file
372 *
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200373 * U - The number of bytes in a stripe within a group
Boaz Harroshb367e782010-02-07 19:18:58 +0200374 *
375 * U = stripe_unit * group_width
376 *
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200377 * T - The number of bytes striped within a group of component objects
378 * (before advancing to the next group)
Boaz Harroshb367e782010-02-07 19:18:58 +0200379 *
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200380 * T = stripe_unit * group_width * group_depth
381 *
382 * S - The number of bytes striped across all component objects
383 * before the pattern repeats
384 *
385 * S = stripe_unit * group_width * group_depth * group_count
386 *
387 * M - The "major" (i.e., across all components) stripe number
388 *
389 * M = L / S
390 *
391 * G - Counts the groups from the beginning of the major stripe
392 *
393 * G = (L - (M * S)) / T [or (L % S) / T]
394 *
395 * H - The byte offset within the group
396 *
397 * H = (L - (M * S)) % T [or (L % S) % T]
398 *
399 * N - The "minor" (i.e., across the group) stripe number
400 *
401 * N = H / U
Boaz Harroshb367e782010-02-07 19:18:58 +0200402 *
403 * C - The component index coresponding to L
404 *
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200405 * C = (H - (N * U)) / stripe_unit + G * group_width
406 * [or (L % U) / stripe_unit + G * group_width]
Boaz Harroshb367e782010-02-07 19:18:58 +0200407 *
408 * O - The component offset coresponding to L
409 *
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200410 * O = L % stripe_unit + N * stripe_unit + M * group_depth * stripe_unit
Boaz Harroshb367e782010-02-07 19:18:58 +0200411 */
Boaz Harrosheb507bc2011-08-10 14:17:28 -0700412static void ore_calc_stripe_info(struct ore_layout *layout, u64 file_offset,
413 struct ore_striping_info *si)
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200414{
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700415 u32 stripe_unit = layout->stripe_unit;
416 u32 group_width = layout->group_width;
417 u64 group_depth = layout->group_depth;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200418
Boaz Harroshb367e782010-02-07 19:18:58 +0200419 u32 U = stripe_unit * group_width;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200420 u64 T = U * group_depth;
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700421 u64 S = T * layout->group_count;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200422 u64 M = div64_u64(file_offset, S);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200423
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200424 /*
425 G = (L - (M * S)) / T
426 H = (L - (M * S)) % T
427 */
428 u64 LmodS = file_offset - M * S;
429 u32 G = div64_u64(LmodS, T);
430 u64 H = LmodS - G * T;
Boaz Harroshb367e782010-02-07 19:18:58 +0200431
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200432 u32 N = div_u64(H, U);
433
434 /* "H - (N * U)" is just "H % U" so it's bound to u32 */
435 si->dev = (u32)(H - (N * U)) / stripe_unit + G * group_width;
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700436 si->dev *= layout->mirrors_p1;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200437
438 div_u64_rem(file_offset, stripe_unit, &si->unit_off);
439
440 si->obj_offset = si->unit_off + (N * stripe_unit) +
441 (M * group_depth * stripe_unit);
442
443 si->group_length = T - H;
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700444 si->M = M;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200445}
446
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700447static int _add_stripe_unit(struct ore_io_state *ios, unsigned *cur_pg,
448 unsigned pgbase, struct ore_per_dev_state *per_dev,
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200449 int cur_len)
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200450{
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200451 unsigned pg = *cur_pg;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200452 struct request_queue *q =
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700453 osd_request_queue(_ios_od(ios, per_dev->dev));
Boaz Harroshbbf9a312011-08-26 21:04:52 -0700454 unsigned len = cur_len;
455 int ret;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200456
457 if (per_dev->bio == NULL) {
458 unsigned pages_in_stripe = ios->layout->group_width *
459 (ios->layout->stripe_unit / PAGE_SIZE);
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200460 unsigned bio_size = (ios->nr_pages + pages_in_stripe) /
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200461 ios->layout->group_width;
462
463 per_dev->bio = bio_kmalloc(GFP_KERNEL, bio_size);
464 if (unlikely(!per_dev->bio)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700465 ORE_DBGMSG("Failed to allocate BIO size=%u\n",
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200466 bio_size);
Boaz Harroshbbf9a312011-08-26 21:04:52 -0700467 ret = -ENOMEM;
468 goto out;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200469 }
470 }
471
472 while (cur_len > 0) {
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200473 unsigned pglen = min_t(unsigned, PAGE_SIZE - pgbase, cur_len);
474 unsigned added_len;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200475
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200476 BUG_ON(ios->nr_pages <= pg);
477 cur_len -= pglen;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200478
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200479 added_len = bio_add_pc_page(q, per_dev->bio, ios->pages[pg],
480 pglen, pgbase);
Boaz Harroshbbf9a312011-08-26 21:04:52 -0700481 if (unlikely(pglen != added_len)) {
482 ret = -ENOMEM;
483 goto out;
484 }
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200485 pgbase = 0;
486 ++pg;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200487 }
488 BUG_ON(cur_len);
489
Boaz Harroshbbf9a312011-08-26 21:04:52 -0700490 per_dev->length += len;
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200491 *cur_pg = pg;
Boaz Harroshbbf9a312011-08-26 21:04:52 -0700492 ret = 0;
493out: /* we fail the complete unit on an error eg don't advance
494 * per_dev->length and cur_pg. This means that we might have a bigger
495 * bio than the CDB requested length (per_dev->length). That's fine
496 * only the oposite is fatal.
497 */
498 return ret;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200499}
500
Boaz Harrosh98260752011-10-02 15:32:50 +0200501static int _prepare_for_striping(struct ore_io_state *ios)
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200502{
Boaz Harrosh98260752011-10-02 15:32:50 +0200503 struct ore_striping_info *si = &ios->si;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200504 unsigned stripe_unit = ios->layout->stripe_unit;
Boaz Harroshb367e782010-02-07 19:18:58 +0200505 unsigned mirrors_p1 = ios->layout->mirrors_p1;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200506 unsigned devs_in_group = ios->layout->group_width * mirrors_p1;
Boaz Harroshb367e782010-02-07 19:18:58 +0200507 unsigned dev = si->dev;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200508 unsigned first_dev = dev - (dev % devs_in_group);
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200509 unsigned cur_pg = ios->pages_consumed;
Boaz Harrosh98260752011-10-02 15:32:50 +0200510 u64 length = ios->length;
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200511 int ret = 0;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200512
Boaz Harrosh98260752011-10-02 15:32:50 +0200513 if (!ios->pages) {
Boaz Harrosh98260752011-10-02 15:32:50 +0200514 ios->numdevs = ios->layout->mirrors_p1;
515 return 0;
516 }
517
518 BUG_ON(length > si->group_length);
519
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200520 while (length) {
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300521 unsigned comp = dev - first_dev;
522 struct ore_per_dev_state *per_dev = &ios->per_dev[comp];
Boaz Harroshb367e782010-02-07 19:18:58 +0200523 unsigned cur_len, page_off = 0;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200524
525 if (!per_dev->length) {
Boaz Harroshb367e782010-02-07 19:18:58 +0200526 per_dev->dev = dev;
527 if (dev < si->dev) {
528 per_dev->offset = si->obj_offset + stripe_unit -
529 si->unit_off;
530 cur_len = stripe_unit;
531 } else if (dev == si->dev) {
532 per_dev->offset = si->obj_offset;
533 cur_len = stripe_unit - si->unit_off;
534 page_off = si->unit_off & ~PAGE_MASK;
535 BUG_ON(page_off && (page_off != ios->pgbase));
536 } else { /* dev > si->dev */
537 per_dev->offset = si->obj_offset - si->unit_off;
538 cur_len = stripe_unit;
539 }
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200540 } else {
Boaz Harroshb367e782010-02-07 19:18:58 +0200541 cur_len = stripe_unit;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200542 }
Boaz Harroshb367e782010-02-07 19:18:58 +0200543 if (cur_len >= length)
544 cur_len = length;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200545
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200546 ret = _add_stripe_unit(ios, &cur_pg, page_off , per_dev,
547 cur_len);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200548 if (unlikely(ret))
549 goto out;
550
Boaz Harrosh6e316092010-07-29 17:08:13 +0300551 dev += mirrors_p1;
552 dev = (dev % devs_in_group) + first_dev;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200553
554 length -= cur_len;
555 }
556out:
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300557 ios->numdevs = devs_in_group;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200558 ios->pages_consumed = cur_pg;
Boaz Harroshbbf9a312011-08-26 21:04:52 -0700559 if (unlikely(ret)) {
560 if (length == ios->length)
561 return ret;
562 else
563 ios->length -= length;
564 }
565 return 0;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200566}
567
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700568int ore_create(struct ore_io_state *ios)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200569{
570 int i, ret;
571
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300572 for (i = 0; i < ios->oc->numdevs; i++) {
Boaz Harrosh06886a52009-11-08 14:54:08 +0200573 struct osd_request *or;
574
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700575 or = osd_start_request(_ios_od(ios, i), GFP_KERNEL);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200576 if (unlikely(!or)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700577 ORE_ERR("%s: osd_start_request failed\n", __func__);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200578 ret = -ENOMEM;
579 goto out;
580 }
581 ios->per_dev[i].or = or;
582 ios->numdevs++;
583
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700584 osd_req_create_object(or, _ios_obj(ios, i));
Boaz Harrosh06886a52009-11-08 14:54:08 +0200585 }
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700586 ret = ore_io_execute(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200587
588out:
589 return ret;
590}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700591EXPORT_SYMBOL(ore_create);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200592
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700593int ore_remove(struct ore_io_state *ios)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200594{
595 int i, ret;
596
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300597 for (i = 0; i < ios->oc->numdevs; i++) {
Boaz Harrosh06886a52009-11-08 14:54:08 +0200598 struct osd_request *or;
599
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700600 or = osd_start_request(_ios_od(ios, i), GFP_KERNEL);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200601 if (unlikely(!or)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700602 ORE_ERR("%s: osd_start_request failed\n", __func__);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200603 ret = -ENOMEM;
604 goto out;
605 }
606 ios->per_dev[i].or = or;
607 ios->numdevs++;
608
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700609 osd_req_remove_object(or, _ios_obj(ios, i));
Boaz Harrosh06886a52009-11-08 14:54:08 +0200610 }
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700611 ret = ore_io_execute(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200612
613out:
614 return ret;
615}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700616EXPORT_SYMBOL(ore_remove);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200617
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700618static int _write_mirror(struct ore_io_state *ios, int cur_comp)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200619{
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700620 struct ore_per_dev_state *master_dev = &ios->per_dev[cur_comp];
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200621 unsigned dev = ios->per_dev[cur_comp].dev;
622 unsigned last_comp = cur_comp + ios->layout->mirrors_p1;
623 int ret = 0;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200624
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200625 if (ios->pages && !master_dev->length)
626 return 0; /* Just an empty slot */
627
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200628 for (; cur_comp < last_comp; ++cur_comp, ++dev) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700629 struct ore_per_dev_state *per_dev = &ios->per_dev[cur_comp];
Boaz Harrosh06886a52009-11-08 14:54:08 +0200630 struct osd_request *or;
631
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700632 or = osd_start_request(_ios_od(ios, dev), GFP_KERNEL);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200633 if (unlikely(!or)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700634 ORE_ERR("%s: osd_start_request failed\n", __func__);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200635 ret = -ENOMEM;
636 goto out;
637 }
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200638 per_dev->or = or;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200639
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200640 if (ios->pages) {
Boaz Harrosh06886a52009-11-08 14:54:08 +0200641 struct bio *bio;
642
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200643 if (per_dev != master_dev) {
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200644 bio = bio_kmalloc(GFP_KERNEL,
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200645 master_dev->bio->bi_max_vecs);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200646 if (unlikely(!bio)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700647 ORE_DBGMSG(
Paul Bolle426d3102010-08-07 12:30:03 +0200648 "Failed to allocate BIO size=%u\n",
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200649 master_dev->bio->bi_max_vecs);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200650 ret = -ENOMEM;
651 goto out;
652 }
653
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200654 __bio_clone(bio, master_dev->bio);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200655 bio->bi_bdev = NULL;
656 bio->bi_next = NULL;
Boaz Harrosh6851a5e2011-08-24 18:10:49 -0700657 per_dev->offset = master_dev->offset;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200658 per_dev->length = master_dev->length;
659 per_dev->bio = bio;
660 per_dev->dev = dev;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200661 } else {
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200662 bio = master_dev->bio;
663 /* FIXME: bio_set_dir() */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200664 bio->bi_rw |= REQ_WRITE;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200665 }
Boaz Harrosh06886a52009-11-08 14:54:08 +0200666
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700667 osd_req_write(or, _ios_obj(ios, dev), per_dev->offset,
668 bio, per_dev->length);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700669 ORE_DBGMSG("write(0x%llx) offset=0x%llx "
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200670 "length=0x%llx dev=%d\n",
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700671 _LLU(_ios_obj(ios, dev)->id),
672 _LLU(per_dev->offset),
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200673 _LLU(per_dev->length), dev);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200674 } else if (ios->kern_buff) {
Boaz Harrosh6851a5e2011-08-24 18:10:49 -0700675 per_dev->offset = ios->si.obj_offset;
676 per_dev->dev = ios->si.dev + dev;
677
678 /* no cross device without page array */
679 BUG_ON((ios->layout->group_width > 1) &&
680 (ios->si.unit_off + ios->length >
681 ios->layout->stripe_unit));
682
683 ret = osd_req_write_kern(or, _ios_obj(ios, per_dev->dev),
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700684 per_dev->offset,
685 ios->kern_buff, ios->length);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200686 if (unlikely(ret))
687 goto out;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700688 ORE_DBGMSG2("write_kern(0x%llx) offset=0x%llx "
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200689 "length=0x%llx dev=%d\n",
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700690 _LLU(_ios_obj(ios, dev)->id),
691 _LLU(per_dev->offset),
Boaz Harrosh6851a5e2011-08-24 18:10:49 -0700692 _LLU(ios->length), per_dev->dev);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200693 } else {
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700694 osd_req_set_attributes(or, _ios_obj(ios, dev));
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700695 ORE_DBGMSG2("obj(0x%llx) set_attributes=%d dev=%d\n",
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700696 _LLU(_ios_obj(ios, dev)->id),
697 ios->out_attr_len, dev);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200698 }
699
700 if (ios->out_attr)
701 osd_req_add_set_attr_list(or, ios->out_attr,
702 ios->out_attr_len);
703
704 if (ios->in_attr)
705 osd_req_add_get_attr_list(or, ios->in_attr,
706 ios->in_attr_len);
707 }
Boaz Harrosh06886a52009-11-08 14:54:08 +0200708
709out:
710 return ret;
711}
712
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700713int ore_write(struct ore_io_state *ios)
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200714{
715 int i;
716 int ret;
717
718 ret = _prepare_for_striping(ios);
719 if (unlikely(ret))
720 return ret;
721
722 for (i = 0; i < ios->numdevs; i += ios->layout->mirrors_p1) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700723 ret = _write_mirror(ios, i);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200724 if (unlikely(ret))
725 return ret;
726 }
727
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700728 ret = ore_io_execute(ios);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200729 return ret;
730}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700731EXPORT_SYMBOL(ore_write);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200732
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700733static int _read_mirror(struct ore_io_state *ios, unsigned cur_comp)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200734{
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200735 struct osd_request *or;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700736 struct ore_per_dev_state *per_dev = &ios->per_dev[cur_comp];
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700737 struct osd_obj_id *obj = _ios_obj(ios, cur_comp);
738 unsigned first_dev = (unsigned)obj->id;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200739
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200740 if (ios->pages && !per_dev->length)
741 return 0; /* Just an empty slot */
742
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200743 first_dev = per_dev->dev + first_dev % ios->layout->mirrors_p1;
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700744 or = osd_start_request(_ios_od(ios, first_dev), GFP_KERNEL);
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200745 if (unlikely(!or)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700746 ORE_ERR("%s: osd_start_request failed\n", __func__);
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200747 return -ENOMEM;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200748 }
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200749 per_dev->or = or;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200750
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200751 if (ios->pages) {
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700752 osd_req_read(or, obj, per_dev->offset,
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200753 per_dev->bio, per_dev->length);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700754 ORE_DBGMSG("read(0x%llx) offset=0x%llx length=0x%llx"
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700755 " dev=%d\n", _LLU(obj->id),
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200756 _LLU(per_dev->offset), _LLU(per_dev->length),
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200757 first_dev);
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200758 } else {
Boaz Harrosh6851a5e2011-08-24 18:10:49 -0700759 BUG_ON(ios->kern_buff);
760
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700761 osd_req_get_attributes(or, obj);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700762 ORE_DBGMSG2("obj(0x%llx) get_attributes=%d dev=%d\n",
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700763 _LLU(obj->id),
764 ios->in_attr_len, first_dev);
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200765 }
Boaz Harrosh46f4d972010-02-01 11:37:30 +0200766 if (ios->out_attr)
767 osd_req_add_set_attr_list(or, ios->out_attr, ios->out_attr_len);
768
769 if (ios->in_attr)
770 osd_req_add_get_attr_list(or, ios->in_attr, ios->in_attr_len);
771
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200772 return 0;
773}
774
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700775int ore_read(struct ore_io_state *ios)
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200776{
777 int i;
778 int ret;
779
780 ret = _prepare_for_striping(ios);
781 if (unlikely(ret))
782 return ret;
783
784 for (i = 0; i < ios->numdevs; i += ios->layout->mirrors_p1) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700785 ret = _read_mirror(ios, i);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200786 if (unlikely(ret))
787 return ret;
788 }
789
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700790 ret = ore_io_execute(ios);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200791 return ret;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200792}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700793EXPORT_SYMBOL(ore_read);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200794
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700795int extract_attr_from_ios(struct ore_io_state *ios, struct osd_attr *attr)
Boaz Harroshb14f8ab2008-10-27 18:27:55 +0200796{
797 struct osd_attr cur_attr = {.attr_page = 0}; /* start with zeros */
798 void *iter = NULL;
799 int nelem;
800
801 do {
802 nelem = 1;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200803 osd_req_decode_get_attr_list(ios->per_dev[0].or,
804 &cur_attr, &nelem, &iter);
Boaz Harroshb14f8ab2008-10-27 18:27:55 +0200805 if ((cur_attr.attr_page == attr->attr_page) &&
806 (cur_attr.attr_id == attr->attr_id)) {
807 attr->len = cur_attr.len;
808 attr->val_ptr = cur_attr.val_ptr;
809 return 0;
810 }
811 } while (iter);
812
813 return -EIO;
814}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700815EXPORT_SYMBOL(extract_attr_from_ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200816
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700817static int _truncate_mirrors(struct ore_io_state *ios, unsigned cur_comp,
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200818 struct osd_attr *attr)
819{
820 int last_comp = cur_comp + ios->layout->mirrors_p1;
821
822 for (; cur_comp < last_comp; ++cur_comp) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700823 struct ore_per_dev_state *per_dev = &ios->per_dev[cur_comp];
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200824 struct osd_request *or;
825
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700826 or = osd_start_request(_ios_od(ios, cur_comp), GFP_KERNEL);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200827 if (unlikely(!or)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700828 ORE_ERR("%s: osd_start_request failed\n", __func__);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200829 return -ENOMEM;
830 }
831 per_dev->or = or;
832
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700833 osd_req_set_attributes(or, _ios_obj(ios, cur_comp));
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200834 osd_req_add_set_attr_list(or, attr, 1);
835 }
836
837 return 0;
838}
839
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700840struct _trunc_info {
Boaz Harrosheb507bc2011-08-10 14:17:28 -0700841 struct ore_striping_info si;
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700842 u64 prev_group_obj_off;
843 u64 next_group_obj_off;
844
845 unsigned first_group_dev;
846 unsigned nex_group_dev;
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700847};
848
H Hartley Sweeten1958c7c22011-09-23 13:42:43 -0700849static void _calc_trunk_info(struct ore_layout *layout, u64 file_offset,
850 struct _trunc_info *ti)
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700851{
852 unsigned stripe_unit = layout->stripe_unit;
853
Boaz Harrosheb507bc2011-08-10 14:17:28 -0700854 ore_calc_stripe_info(layout, file_offset, &ti->si);
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700855
856 ti->prev_group_obj_off = ti->si.M * stripe_unit;
857 ti->next_group_obj_off = ti->si.M ? (ti->si.M - 1) * stripe_unit : 0;
858
859 ti->first_group_dev = ti->si.dev - (ti->si.dev % layout->group_width);
860 ti->nex_group_dev = ti->first_group_dev + layout->group_width;
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700861}
862
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300863int ore_truncate(struct ore_layout *layout, struct ore_components *oc,
Boaz Harrosh9e9db452011-08-05 15:06:04 -0700864 u64 size)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200865{
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700866 struct ore_io_state *ios;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200867 struct exofs_trunc_attr {
868 struct osd_attr attr;
869 __be64 newsize;
870 } *size_attrs;
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700871 struct _trunc_info ti;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200872 int i, ret;
873
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300874 ret = ore_get_io_state(layout, oc, &ios);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200875 if (unlikely(ret))
876 return ret;
877
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700878 _calc_trunk_info(ios->layout, size, &ti);
879
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300880 size_attrs = kcalloc(ios->oc->numdevs, sizeof(*size_attrs),
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200881 GFP_KERNEL);
882 if (unlikely(!size_attrs)) {
883 ret = -ENOMEM;
884 goto out;
885 }
Boaz Harrosh06886a52009-11-08 14:54:08 +0200886
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300887 ios->numdevs = ios->oc->numdevs;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200888
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300889 for (i = 0; i < ios->numdevs; ++i) {
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200890 struct exofs_trunc_attr *size_attr = &size_attrs[i];
891 u64 obj_size;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200892
Boaz Harrosh16f75bb2011-08-03 20:44:16 -0700893 if (i < ti.first_group_dev)
894 obj_size = ti.prev_group_obj_off;
895 else if (i >= ti.nex_group_dev)
896 obj_size = ti.next_group_obj_off;
897 else if (i < ti.si.dev) /* dev within this group */
898 obj_size = ti.si.obj_offset +
899 ios->layout->stripe_unit - ti.si.unit_off;
900 else if (i == ti.si.dev)
901 obj_size = ti.si.obj_offset;
902 else /* i > ti.dev */
903 obj_size = ti.si.obj_offset - ti.si.unit_off;
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200904
905 size_attr->newsize = cpu_to_be64(obj_size);
906 size_attr->attr = g_attr_logical_length;
907 size_attr->attr.val_ptr = &size_attr->newsize;
908
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700909 ORE_DBGMSG("trunc(0x%llx) obj_offset=0x%llx dev=%d\n",
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300910 _LLU(oc->comps->obj.id), _LLU(obj_size), i);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200911 ret = _truncate_mirrors(ios, i * ios->layout->mirrors_p1,
912 &size_attr->attr);
913 if (unlikely(ret))
Boaz Harrosh06886a52009-11-08 14:54:08 +0200914 goto out;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200915 }
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700916 ret = ore_io_execute(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200917
918out:
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200919 kfree(size_attrs);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700920 ore_put_io_state(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200921 return ret;
922}
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700923EXPORT_SYMBOL(ore_truncate);
Boaz Harrosh85e44df2011-05-16 15:26:47 +0300924
925const struct osd_attr g_attr_logical_length = ATTR_DEF(
926 OSD_APAGE_OBJECT_INFORMATION, OSD_ATTR_OI_LOGICAL_LENGTH, 8);
Boaz Harroshcf283ad2011-08-06 19:22:06 -0700927EXPORT_SYMBOL(g_attr_logical_length);