Lines Matching defs:stripe_index

42 	u32 stripe_index;
6078 u32 stripe_index;
6117 * device we have to walk to find the data, and stripe_index is
6121 stripe_index = 0;
6132 stripe_index = stripe_nr % factor;
6134 stripe_index *= sub_stripes;
6143 stripe_index = stripe_nr % map->num_stripes;
6155 map->stripes[stripe_index].physical +
6157 stripes[i].dev = map->stripes[stripe_index].dev;
6177 if (stripe_index >= last_stripe &&
6178 stripe_index <= (last_stripe +
6188 stripe_index++;
6189 if (stripe_index == map->num_stripes) {
6190 stripe_index = 0;
6352 dst->dev = map->stripes[io_geom->stripe_index].dev;
6357 io_geom->stripe_index, dst);
6359 dst->physical = map->stripes[io_geom->stripe_index].physical +
6389 io_geom->stripe_index = io_geom->stripe_nr % map->num_stripes;
6406 io_geom->stripe_index = io_geom->mirror_num - 1;
6410 io_geom->stripe_index = find_live_mirror(fs_info, map, 0,
6412 io_geom->mirror_num = io_geom->stripe_index + 1;
6424 io_geom->stripe_index = io_geom->mirror_num - 1;
6439 io_geom->stripe_index = (io_geom->stripe_nr % factor) * map->sub_stripes;
6448 io_geom->stripe_index += io_geom->mirror_num - 1;
6452 old_stripe_index = io_geom->stripe_index;
6453 io_geom->stripe_index = find_live_mirror(fs_info, map,
6454 io_geom->stripe_index,
6456 io_geom->mirror_num = io_geom->stripe_index - old_stripe_index + 1;
6486 io_geom->stripe_index = 0;
6497 io_geom->stripe_index = io_geom->stripe_nr % data_stripes;
6501 io_geom->stripe_index =
6502 (io_geom->stripe_nr + io_geom->stripe_index) % map->num_stripes;
6511 io_geom->stripe_index = io_geom->stripe_nr % map->num_stripes;
6513 io_geom->mirror_num = io_geom->stripe_index + 1;
6571 io_geom.stripe_index = 0;
6624 * device we have to walk to find the data, and stripe_index is
6630 if (io_geom.stripe_index >= map->num_stripes) {
6632 "stripe index math went horribly wrong, got stripe_index=%u, num_stripes=%u",
6633 io_geom.stripe_index, map->num_stripes);
6693 u32 stripe_index;
6695 stripe_index = (i + io_geom.stripe_nr) % io_geom.num_stripes;
6696 dst->dev = map->stripes[stripe_index].dev;
6698 map->stripes[stripe_index].physical +
6712 io_geom.stripe_index++;