Skip to content

Commit

Permalink
Btrfs: fix __btrfs_map_block on 32 bit machines
Browse files Browse the repository at this point in the history
Recent changes for discard support didn't compile,
this fixes them not to try and % 64 bit numbers.

Signed-off-by: Chris Mason <[email protected]>
  • Loading branch information
chrismason-xx authored and root committed Mar 28, 2011
1 parent 1561ded commit d9d0487
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions fs/btrfs/volumes.c
Original file line number Diff line number Diff line change
Expand Up @@ -3126,13 +3126,19 @@ static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,

if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
u64 stripes;
int last_stripe = (stripe_nr_end - 1) %
map->num_stripes;
u32 last_stripe = 0;
int j;

div_u64_rem(stripe_nr_end - 1,
map->num_stripes,
&last_stripe);

for (j = 0; j < map->num_stripes; j++) {
if ((stripe_nr_end - 1 - j) %
map->num_stripes == stripe_index)
u32 test;

div_u64_rem(stripe_nr_end - 1 - j,
map->num_stripes, &test);
if (test == stripe_index)
break;
}
stripes = stripe_nr_end - 1 - j;
Expand All @@ -3153,11 +3159,19 @@ static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
int j;
int factor = map->num_stripes /
map->sub_stripes;
int last_stripe = (stripe_nr_end - 1) % factor;
u32 last_stripe = 0;

div_u64_rem(stripe_nr_end - 1,
factor, &last_stripe);
last_stripe *= map->sub_stripes;

for (j = 0; j < factor; j++) {
if ((stripe_nr_end - 1 - j) % factor ==
u32 test;

div_u64_rem(stripe_nr_end - 1 - j,
factor, &test);

if (test ==
stripe_index / map->sub_stripes)
break;
}
Expand Down

0 comments on commit d9d0487

Please sign in to comment.