]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
Btrfs: prevent looping forever in finish_current_insert and del_pending_extents
authorChris Mason <chris.mason@oracle.com>
Thu, 30 Oct 2008 15:23:27 +0000 (11:23 -0400)
committerChris Mason <chris.mason@oracle.com>
Thu, 30 Oct 2008 15:23:27 +0000 (11:23 -0400)
commit87ef2bb46bfc4be0b40799e68115cbe28d80a1bd
tree8060158d9adee7ad2fc591c47ad1354b07237020
parent09fde3c9ba360926ce021c184a1ee343f4d8fa19
Btrfs: prevent looping forever in finish_current_insert and del_pending_extents

finish_current_insert and del_pending_extents process extent tree modifications
that build up while we are changing the extent tree.  It is a confusing
bit of code that prevents recursion.

Both functions run through a list of pending operations and both funcs
add to the list of pending operations.  If you have two procs in either
one of them, they can end up looping forever making more work for each other.

This patch makes them walk forward through the list of pending changes instead
of always trying to process the entire list.  At transaction commit
time, we catch any changes that were left over.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent-tree.c
fs/btrfs/transaction.c