aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_alloc.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2011-05-04 18:55:15 +0000
committerAlex Elder <aelder@sgi.com>2011-05-24 11:17:22 -0500
commit55a7bc5a30ff2d30d8a34fea2af9fc601b32e61a (patch)
treea6cc677dc240ebfeec85b66a2669842dc3094461 /fs/xfs/xfs_alloc.h
parente84661aa84e2e003738563f65155d4f12dc474e7 (diff)
downloadkernel_samsung_smdk4412-55a7bc5a30ff2d30d8a34fea2af9fc601b32e61a.zip
kernel_samsung_smdk4412-55a7bc5a30ff2d30d8a34fea2af9fc601b32e61a.tar.gz
kernel_samsung_smdk4412-55a7bc5a30ff2d30d8a34fea2af9fc601b32e61a.tar.bz2
xfs: do not discard alloc btree blocks
Blocks for the allocation btree are allocated from and released to the AGFL, and thus frequently reused. Even worse we do not have an easy way to avoid using an AGFL block when it is discarded due to the simple FILO list of free blocks, and thus can frequently stall on blocks that are currently undergoing a discard. Add a flag to the busy extent tracking structure to skip the discard for allocation btree blocks. In normal operation these blocks are reused frequently enough that there is no need to discard them anyway, but if they spill over to the allocation btree as part of a balance we "leak" blocks that we would otherwise discard. We could fix this by adding another flag and keeping these block in the rbtree even after they aren't busy any more so that we could discard them when they migrate out of the AGFL. Given that this would cause significant overhead I don't think it's worthwile for now. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_alloc.h')
-rw-r--r--fs/xfs/xfs_alloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_alloc.h b/fs/xfs/xfs_alloc.h
index 06aa821..2f52b92 100644
--- a/fs/xfs/xfs_alloc.h
+++ b/fs/xfs/xfs_alloc.h
@@ -137,7 +137,7 @@ xfs_alloc_longest_free_extent(struct xfs_mount *mp,
#ifdef __KERNEL__
void
xfs_alloc_busy_insert(struct xfs_trans *tp, xfs_agnumber_t agno,
- xfs_agblock_t bno, xfs_extlen_t len);
+ xfs_agblock_t bno, xfs_extlen_t len, unsigned int flags);
void
xfs_alloc_busy_clear(struct xfs_mount *mp, struct list_head *list,