xfs: always push the AIL to the target
authorDave Chinner <dchinner@redhat.com>
Fri, 6 May 2011 02:54:06 +0000 (02:54 +0000)
committerAlex Elder <aelder@sgi.com>
Mon, 9 May 2011 17:17:04 +0000 (12:17 -0500)
commitcb64026b6e8af50db598ec7c3f59d504259b00bb
treee3c666aadc8f13ceabecbcd82b4bd2cb117ba984
parentea35a20021f8497390d05b93271b4d675516c654
xfs: always push the AIL to the target

The recent conversion of the xfsaild functionality to a work queue
introduced a hard-to-hit log space grant hang. One of the problems
discovered is a target mismatch between the item pushing loop and
the target itself.

The push trigger checks for the target increasing (i.e. new target >
current) while the push loop only pushes items that have a LSN <
current. As a result, we can get the situation where the push target
is X, the items at the tail of the AIL have LSN X and they don't get
pushed. The push work then completes thinking it is done, and cannot
be restarted until the push target increases to >= X + 1. If the
push target then never increases (because the tail is not moving),
then we never run the push work again and we stall.

Fix it by making sure log items with a LSN that matches the target
exactly are pushed during the loop.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Alex Elder <aelder@sgi.com>
fs/xfs/xfs_trans_ail.c
This page took 0.02488 seconds and 5 git commands to generate.