[RFC PATCH 2/3] xfs: fix xfsaild hang due to premature idle
Brian Foster
bfoster at redhat.com
Mon May 21 12:21:25 CDT 2012
Running xfstests 273 in a loop reproduces an XFS lockup due to
xfsaild entering idle mode indefinitely. The following
high-level sequence of events leads to the hang:
- xfsaild is running, hits the stuck item threshold and reschedules,
setting xa_last_pushed_lsn appropriately.
- xa_threshold is updated.
- xfsaild restarts from the previous xa_last_pushed_lsn, hits the
new target and enters idle mode, even though the previously
stuck items still populate the ail.
Modify the tout logic to only enter idle mode when the ail is empty.
IOW, if we hit the target but did not perform the current scan from
the start of the ail, reschedule at least one more time.
Signed-off-by: Brian Foster <bfoster at redhat.com>
---
fs/xfs/xfs_trans_ail.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/xfs/xfs_trans_ail.c b/fs/xfs/xfs_trans_ail.c
index 37cdd41..5818076 100644
--- a/fs/xfs/xfs_trans_ail.c
+++ b/fs/xfs/xfs_trans_ail.c
@@ -501,7 +501,7 @@ xfsaild_push(
/* assume we have more work to do in a short while */
out_done:
- if (!count) {
+ if (!count && !ailp->xa_last_pushed_lsn) {
/* We're past our target or empty, so idle */
ailp->xa_last_pushed_lsn = 0;
--
1.7.7.6
More information about the xfs
mailing list