summaryrefslogtreecommitdiff
path: root/scripts/basic
diff options
context:
space:
mode:
authorDave Chinner <david@fromorbit.com>2010-02-17 05:36:29 +0000
committerAlex Elder <aelder@sgi.com>2010-03-01 16:34:52 -0600
commit77d7a0c2eeb285c9069e15396703d0cb9690ac50 (patch)
tree22de501446dd5ba08581b04616408f90449f7211 /scripts/basic
parent66d834ea603d61bd90fedad90300ca91c5bba0a3 (diff)
xfs: Non-blocking inode locking in IO completion
The introduction of barriers to loop devices has created a new IO order completion dependency that XFS does not handle. The loop device implements barriers using fsync and so turns a log IO in the XFS filesystem on the loop device into a data IO in the backing filesystem. That is, the completion of log IOs in the loop filesystem are now dependent on completion of data IO in the backing filesystem. This can cause deadlocks when a flush daemon issues a log force with an inode locked because the IO completion of IO on the inode is blocked by the inode lock. This in turn prevents further data IO completion from occuring on all XFS filesystems on that CPU (due to the shared nature of the completion queues). This then prevents the log IO from completing because the log is waiting for data IO completion as well. The fix for this new completion order dependency issue is to make the IO completion inode locking non-blocking. If the inode lock can't be grabbed, simply requeue the IO completion back to the work queue so that it can be processed later. This prevents the completion queue from being blocked and allows data IO completion on other inodes to proceed, hence avoiding completion order dependent deadlocks. Signed-off-by: Dave Chinner <david@fromorbit.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'scripts/basic')
0 files changed, 0 insertions, 0 deletions