Skip to content

Commit

Permalink
ocfs2: ->e_leaf_clusters endianness breakage
Browse files Browse the repository at this point in the history
le16, not le32...

Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Apr 13, 2012
1 parent 28748b3 commit 72094e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/ocfs2/suballoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ static void ocfs2_bg_alloc_cleanup(handle_t *handle,
ret = ocfs2_free_clusters(handle, cluster_ac->ac_inode,
cluster_ac->ac_bh,
le64_to_cpu(rec->e_blkno),
le32_to_cpu(rec->e_leaf_clusters));
le16_to_cpu(rec->e_leaf_clusters));
if (ret)
mlog_errno(ret);
/* Try all the clusters to free */
Expand Down Expand Up @@ -1628,7 +1628,7 @@ static int ocfs2_bg_discontig_fix_by_rec(struct ocfs2_suballoc_result *res,
{
unsigned int bpc = le16_to_cpu(cl->cl_bpc);
unsigned int bitoff = le32_to_cpu(rec->e_cpos) * bpc;
unsigned int bitcount = le32_to_cpu(rec->e_leaf_clusters) * bpc;
unsigned int bitcount = le16_to_cpu(rec->e_leaf_clusters) * bpc;

if (res->sr_bit_offset < bitoff)
return 0;
Expand Down

0 comments on commit 72094e4

Please sign in to comment.