]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs: use sparse chunk alignment for min. inode allocation requirement
authorBrian Foster <bfoster@redhat.com>
Thu, 28 May 2015 22:55:20 +0000 (08:55 +1000)
committerDave Chinner <david@fromorbit.com>
Thu, 30 Jul 2015 23:04:07 +0000 (09:04 +1000)
xfs_ialloc_ag_select() iterates through the allocation groups looking
for free inodes or free space to determine whether to allow an inode
allocation to proceed. If no free inodes are available, it assumes that
an AG must have an extent longer than mp->m_ialloc_blks.

Sparse inode chunk support currently allows for allocations smaller than
the traditional inode chunk size specified in m_ialloc_blks. The current
minimum sparse allocation is set in the superblock sb_spino_align field
at mkfs time. Create a new m_ialloc_min_blks field in xfs_mount and use
this to represent the minimum supported allocation size for inode
chunks. Initialize m_ialloc_min_blks at mount time based on whether
sparse inodes are supported.

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

index 70bdea080270a2a73834fbb5fd74f041363ce457..ed897a23fa472ebe2eeb6431705d4807113d9b44 100644 (file)
@@ -73,6 +73,8 @@ typedef struct xfs_mount {
        uint                    m_attroffset;   /* inode attribute offset */
        int                     m_ialloc_inos;  /* inodes in inode allocation */
        int                     m_ialloc_blks;  /* blocks in inode allocation */
+       int                     m_ialloc_min_blks; /* min blocks in sparse inode
+                                                   * allocation */
        int                     m_litino;       /* size of inode union area */
        int                     m_inoalign_mask;/* mask sb_inoalignmt if used */
        struct xfs_trans_resv   m_resv;         /* precomputed res values */
index 673c0a7f65c283458987f26852dfc425c28e1ac0..1be6d270a03b0bc85764cfec9b65f35f65ae1168 100644 (file)
@@ -640,7 +640,7 @@ xfs_ialloc_ag_select(
                 * if we fail allocation due to alignment issues then it is most
                 * likely a real ENOSPC condition.
                 */
-               ineed = mp->m_ialloc_blks;
+               ineed = mp->m_ialloc_min_blks;
                if (flags && ineed > 1)
                        ineed += xfs_ialloc_cluster_alignment(mp);
                longest = pag->pagf_longest;
index d5833d77789cdf2510252c94f2823149a5c174fa..d5f12b969ea8300293a2e258214a2d6717854a07 100644 (file)
@@ -672,6 +672,11 @@ xfs_sb_mount_common(
        mp->m_ialloc_inos = (int)MAX((__uint16_t)XFS_INODES_PER_CHUNK,
                                        sbp->sb_inopblock);
        mp->m_ialloc_blks = mp->m_ialloc_inos >> sbp->sb_inopblog;
+
+       if (sbp->sb_spino_align)
+               mp->m_ialloc_min_blks = sbp->sb_spino_align;
+       else
+               mp->m_ialloc_min_blks = mp->m_ialloc_blks;
 }
 
 /*