forked from luck/tmp_suning_uos_patched
Btrfs: Fix typo in clear_state_cb
In clear_state_cb, we should check 'tree->ops->clear_bit_hook' instead of 'tree->ops->set_bit_hook'. Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
9aead43588
commit
c584482b47
@ -340,7 +340,7 @@ static void clear_state_cb(struct extent_io_tree *tree,
|
|||||||
struct extent_state *state,
|
struct extent_state *state,
|
||||||
unsigned long bits)
|
unsigned long bits)
|
||||||
{
|
{
|
||||||
if (tree->ops && tree->ops->set_bit_hook) {
|
if (tree->ops && tree->ops->clear_bit_hook) {
|
||||||
tree->ops->clear_bit_hook(tree->mapping->host, state->start,
|
tree->ops->clear_bit_hook(tree->mapping->host, state->start,
|
||||||
state->end, state->state, bits);
|
state->end, state->state, bits);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user