Commit 8ff6af88 authored by Tao Ma's avatar Tao Ma Committed by Joel Becker

ocfs2/trivial: Use le16_to_cpu for a disk value in xattr.c

In ocfs2_value_metas_in_xattr_header, we should Use
le16_to_cpu for ocfs2_extent_list.l_next_free_rec.
Signed-off-by: default avatarTao Ma <tao.ma@oracle.com>
Signed-off-by: default avatarJoel Becker <joel.becker@oracle.com>
parent b31d308d
...@@ -6062,7 +6062,7 @@ static int ocfs2_value_metas_in_xattr_header(struct super_block *sb, ...@@ -6062,7 +6062,7 @@ static int ocfs2_value_metas_in_xattr_header(struct super_block *sb,
* to the extent block, so just calculate a maximum record num. * to the extent block, so just calculate a maximum record num.
*/ */
if (!xv->xr_list.l_tree_depth) if (!xv->xr_list.l_tree_depth)
*num_recs += xv->xr_list.l_next_free_rec; *num_recs += le16_to_cpu(xv->xr_list.l_next_free_rec);
else else
*num_recs += ocfs2_clusters_for_bytes(sb, *num_recs += ocfs2_clusters_for_bytes(sb,
XATTR_SIZE_MAX); XATTR_SIZE_MAX);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment