[PATCH] xfs_db: fix attribute leaf output for ATTR3 format
Brian Foster
bfoster at redhat.com
Thu Feb 6 07:09:35 CST 2014
On 02/05/2014 03:02 AM, Dave Chinner wrote:
> From: Dave Chinner <dchinner at redhat.com>
>
> attr3_leaf_entries_count() checks against the wrong magic number.
> hence returns zero for an entry count when it should be returning a
> value. Fixing this makes xfs/021 pass on CRC enabled filesystems.
>
> Signed-off-by: Dave Chinner <dchinner at redhat.com>
> ---
Reviewed-by: Brian Foster <bfoster at redhat.com>
> db/attr.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/db/attr.c b/db/attr.c
> index 740d564..caa154e 100644
> --- a/db/attr.c
> +++ b/db/attr.c
> @@ -170,7 +170,7 @@ attr3_leaf_entries_count(
> struct xfs_attr3_leafblock *leaf = obj;
>
> ASSERT(startoff == 0);
> - if (be16_to_cpu(leaf->hdr.info.hdr.magic) != XFS_ATTR_LEAF_MAGIC)
> + if (be16_to_cpu(leaf->hdr.info.hdr.magic) != XFS_ATTR3_LEAF_MAGIC)
> return 0;
> return be16_to_cpu(leaf->hdr.count);
> }
>
More information about the xfs
mailing list