xfs: filter out sparse regions from individual inode allocation
authorBrian Foster <bfoster@redhat.com>
Thu, 28 May 2015 23:20:10 +0000 (09:20 +1000)
committerDave Chinner <david@fromorbit.com>
Thu, 28 May 2015 23:20:10 +0000 (09:20 +1000)
commit26dd5217dee0ecfb95f8015ed8e9deebf8257608
tree4fb075d2c0f6486bacfc253476bdec8eceb6430b
parent1cdadee11f8d44b16f8110cf01498bd7c38474d8
xfs: filter out sparse regions from individual inode allocation

Inode allocation from an existing record with free inodes traditionally
selects the first inode available according to the ir_free mask. With
sparse inode chunks, the ir_free mask could refer to an unallocated
region. We must mask the unallocated regions out of ir_free before using
it to select a free inode in the chunk.

Update the xfs_inobt_first_free_inode() helper to find the first free
inode available of the allocated regions of the inode chunk.

Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/libxfs/xfs_ialloc.c