Loading fs/xfs/xfs_ialloc.c +1 −8 Original line number Diff line number Diff line Loading @@ -609,13 +609,6 @@ xfs_ialloc_get_rec( /* * Visible inode allocation functions. */ /* * Find a free (set) bit in the inode bitmask. */ static inline int xfs_ialloc_find_free(xfs_inofree_t *fp) { return xfs_lowbit64(*fp); } /* * Allocate an inode on disk. Loading Loading @@ -995,7 +988,7 @@ xfs_dialloc( } alloc_inode: offset = xfs_ialloc_find_free(&rec.ir_free); offset = xfs_lowbit64(rec.ir_free); ASSERT(offset >= 0); ASSERT(offset < XFS_INODES_PER_CHUNK); ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) % Loading Loading
fs/xfs/xfs_ialloc.c +1 −8 Original line number Diff line number Diff line Loading @@ -609,13 +609,6 @@ xfs_ialloc_get_rec( /* * Visible inode allocation functions. */ /* * Find a free (set) bit in the inode bitmask. */ static inline int xfs_ialloc_find_free(xfs_inofree_t *fp) { return xfs_lowbit64(*fp); } /* * Allocate an inode on disk. Loading Loading @@ -995,7 +988,7 @@ xfs_dialloc( } alloc_inode: offset = xfs_ialloc_find_free(&rec.ir_free); offset = xfs_lowbit64(rec.ir_free); ASSERT(offset >= 0); ASSERT(offset < XFS_INODES_PER_CHUNK); ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) % Loading