]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: fix how we merge extent states and deal with cached states
authorJosef Bacik <josef@redhat.com>
Mon, 20 Jun 2011 18:53:48 +0000 (14:53 -0400)
committerJosef Bacik <josef@redhat.com>
Mon, 11 Jul 2011 14:00:48 +0000 (10:00 -0400)
commit1b2dc4bde2e493240e2d85290f937afad715ddb1
tree0f7e235f8f51d87928266129392e630524847be5
parent2f4dc5c294dfa231edad7b9355ec2dd89cac8305
Btrfs: fix how we merge extent states and deal with cached states

First, we can sometimes free the state we're merging, which means anybody who
calls merge_state() may have the state it passed in free'ed.  This is
problematic because we could end up caching the state, which makes caching
useless as the state will no longer be part of the tree.  So instead of free'ing
the state we passed into merge_state(), set it's end to the other->end and free
the other state.  This way we are sure to cache the correct state.  Also because
we can merge states together, instead of only using the cache'd state if it's
start == the start we are looking for, go ahead and use it if the start we are
looking for is within the range of the cached state.  Thanks,

Signed-off-by: Josef Bacik <josef@redhat.com>
fs/btrfs/extent_io.c