diff options
author | Dave Chinner <david@fromorbit.com> | 2014-09-29 10:52:44 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-09-29 10:52:44 +1000 |
commit | bd438f825f7badafe56d117ed906488c8541f95f (patch) | |
tree | fb0b4a989c2b63ff796a15a975cd413c2da61aa1 /fs/xfs/libxfs | |
parent | 2f43bbd96e43d0b85803f5092be94bbb92d8eac9 (diff) | |
parent | b972d0797180d8414351d9dc8ff65071c692d058 (diff) |
Merge branch 'xfs-sparse-fixes' into for-next
Diffstat (limited to 'fs/xfs/libxfs')
-rw-r--r-- | fs/xfs/libxfs/xfs_ialloc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/libxfs/xfs_ialloc.c b/fs/xfs/libxfs/xfs_ialloc.c index d213a2eae95..23dcb72fc5e 100644 --- a/fs/xfs/libxfs/xfs_ialloc.c +++ b/fs/xfs/libxfs/xfs_ialloc.c @@ -1076,8 +1076,8 @@ xfs_dialloc_ag_finobt_newino( int i; if (agi->agi_newino != cpu_to_be32(NULLAGINO)) { - error = xfs_inobt_lookup(cur, agi->agi_newino, XFS_LOOKUP_EQ, - &i); + error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino), + XFS_LOOKUP_EQ, &i); if (error) return error; if (i == 1) { @@ -1085,7 +1085,6 @@ xfs_dialloc_ag_finobt_newino( if (error) return error; XFS_WANT_CORRUPTED_RETURN(i == 1); - return 0; } } |