Skip to content

Commit 28748b3

Browse files
author
Al Viro
committed
ocfs2: ->rl_count endianness breakage
le16, not le32... Signed-off-by: Al Viro <[email protected]>
1 parent e1bf4cc commit 28748b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/ocfs2/refcounttree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ static int ocfs2_divide_leaf_refcount_block(struct buffer_head *ref_leaf_bh,
14681468

14691469
trace_ocfs2_divide_leaf_refcount_block(
14701470
(unsigned long long)ref_leaf_bh->b_blocknr,
1471-
le32_to_cpu(rl->rl_count), le16_to_cpu(rl->rl_used));
1471+
le16_to_cpu(rl->rl_count), le16_to_cpu(rl->rl_used));
14721472

14731473
/*
14741474
* XXX: Improvement later.

0 commit comments

Comments
 (0)