]> git.baikalelectronics.ru Git - kernel.git/commit
[XFS] Prevent AIL lock contention during transaction completion
authorDavid Chinner <dgc@sgi.com>
Thu, 6 Mar 2008 02:44:06 +0000 (13:44 +1100)
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>
Fri, 18 Apr 2008 01:38:01 +0000 (11:38 +1000)
commitfaaa1bc0cc4c4fedd0101251434fc6f1eec33cde
treebc46a7f50dbc5f8c09e86374cea63192ee2f146b
parent809c83221ca689495577a9c055c3d6234414b7dc
[XFS] Prevent AIL lock contention during transaction completion

When hundreds of processors attempt to commit transactions at the same
time, they can contend on the AIL lock when updating the tail LSN held in
the in-core log structure.

At the moment, the tail LSN is only needed when actually writing out an
iclog, so it really does not need to be updated on every single
transaction completion - only those that result in switching iclogs and
flushing them to disk.

The result is that we reduce the number of times we need to grab the AIL
lock and the log grant lock by up to two orders of magnitude on large
processor count machines. The problem has previously been hidden by AIL
lock contention walking the AIL list which was recently solved and
uncovered this issue.

SGI-PV: 975671
SGI-Modid: xfs-linux-melb:xfs-kern:30504a

Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
fs/xfs/xfs_log.c