mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
xfs: recheck buffer pinned status after push trylock failure
The buffer pinned check and trylock sequence in xfs_buf_item_push() can race with an active transaction on marking the buffer pinned. This can result in the buffer becoming pinned and stale after the initial check and the trylock failure, but before the check in xfs_buf_trylock() that issues a log force. If the log force is issued from this context, a spinlock recursion occurs on xa_lock. Prepare xfs_buf_item_push() to handle the race by detecting a pinned buffer after the trylock failure so xfsaild issues a log force from a safe context. This, along with various previous fixes, renders the log force in xfs_buf_trylock() redundant. Signed-off-by: Brian Foster <bfoster@redhat.com> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Ben Myers <bpm@sgi.com>
This commit is contained in:
parent
a1e16c2666
commit
5337fe9b10
@ -469,8 +469,18 @@ xfs_buf_item_push(
|
||||
|
||||
if (xfs_buf_ispinned(bp))
|
||||
return XFS_ITEM_PINNED;
|
||||
if (!xfs_buf_trylock(bp))
|
||||
if (!xfs_buf_trylock(bp)) {
|
||||
/*
|
||||
* If we have just raced with a buffer being pinned and it has
|
||||
* been marked stale, we could end up stalling until someone else
|
||||
* issues a log force to unpin the stale buffer. Check for the
|
||||
* race condition here so xfsaild recognizes the buffer is pinned
|
||||
* and queues a log force to move it along.
|
||||
*/
|
||||
if (xfs_buf_ispinned(bp))
|
||||
return XFS_ITEM_PINNED;
|
||||
return XFS_ITEM_LOCKED;
|
||||
}
|
||||
|
||||
ASSERT(!(bip->bli_flags & XFS_BLI_STALE));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user