xfs: Ensure we force all busy extents in range to disk
authorDave Chinner <david@fromorbit.com>
Sat, 2 Jan 2010 02:38:56 +0000 (02:38 +0000)
committerAlex Elder <aelder@sgi.com>
Sun, 10 Jan 2010 18:22:02 +0000 (12:22 -0600)
commitfd45e4784164d1017521086524e3442318c67370
treeaaaf8f524d4bf094f6debadc6e580f81038f4915
parent44e08c45cc14e6190a424be8d450070c8e508fad
xfs: Ensure we force all busy extents in range to disk

When we search for and find a busy extent during allocation we
force the log out to ensure the extent free transaction is on
disk before the allocation transaction. The current implementation
has a subtle bug in it--it does not handle multiple overlapping
ranges.

That is, if we free lots of little extents into a single
contiguous extent, then allocate the contiguous extent, the busy
search code stops searching at the first extent it finds that
overlaps the allocated range. It then uses the commit LSN of the
transaction to force the log out to.

Unfortunately, the other busy ranges might have more recent
commit LSNs than the first busy extent that is found, and this
results in xfs_alloc_search_busy() returning before all the
extent free transactions are on disk for the range being
allocated. This can lead to potential metadata corruption or
stale data exposure after a crash because log replay won't replay
all the extent free transactions that cover the allocation range.

Modified-by: Alex Elder <aelder@sgi.com>
(Dropped the "found" argument from the xfs_alloc_busysearch trace
event.)

Signed-off-by: Dave Chinner <david@fromorbit.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
fs/xfs/linux-2.6/xfs_trace.h
fs/xfs/xfs_alloc.c