diff options
author | Dave Chinner <david@fromorbit.com> | 2014-09-29 10:43:15 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-09-29 10:43:15 +1000 |
commit | e68ed77521f695d165cbae070f6dda8a4778438f (patch) | |
tree | 3430dd1b47113a90962a2167636f917299307d6e /fs/xfs | |
parent | ab6978c295b074eb2ba4b06fdf206c7ab4f293e5 (diff) | |
download | linux-e68ed77521f695d165cbae070f6dda8a4778438f.tar.gz linux-e68ed77521f695d165cbae070f6dda8a4778438f.tar.bz2 linux-e68ed77521f695d165cbae070f6dda8a4778438f.zip |
xfs: fix use of agi_newino in finobt lookup
Sparse warns that we are passing the big-endian valueo f agi_newino
to the initial btree lookup function when trying to find a new
inode. This is wrong - we need to pass the host order value, not the
disk order value. This will adversely affect the next inode
allocated, but given that the free inode btree is usually much
smaller than the allocated inode btree it is much less likely to be
a performance issue if we start the search in the wrong place.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs')
-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 d213a2eae95e..23dcb72fc5e6 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; } } |