From: Al Viro Date: Fri, 13 Apr 2012 16:28:21 +0000 (-0400) Subject: ocfs2: ->rl_count endianness breakage X-Git-Tag: firefly_0821_release~7541^2~1299 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ea6c7f23a16309304cb5345381e7e5f60b712b85;p=firefly-linux-kernel-4.4.55.git ocfs2: ->rl_count endianness breakage commit 28748b325dc2d730ccc312830a91c4ae0c0d9379 upstream. le16, not le32... Signed-off-by: Al Viro Cc: Mark Fasheh Cc: Joel Becker Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c index dff1d64f8f53..15d29ccefd4f 100644 --- a/fs/ocfs2/refcounttree.c +++ b/fs/ocfs2/refcounttree.c @@ -1468,7 +1468,7 @@ static int ocfs2_divide_leaf_refcount_block(struct buffer_head *ref_leaf_bh, trace_ocfs2_divide_leaf_refcount_block( (unsigned long long)ref_leaf_bh->b_blocknr, - le32_to_cpu(rl->rl_count), le16_to_cpu(rl->rl_used)); + le16_to_cpu(rl->rl_count), le16_to_cpu(rl->rl_used)); /* * XXX: Improvement later.