From: Liu Hui Date: Mon, 5 Jan 2009 20:49:55 +0000 (-0500) Subject: Btrfs: Fix typo in clear_state_cb X-Git-Tag: v2.6.29-rc1~27^2~9^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c584482b47f47b051cdc1d5236b99ad18f1b1cfb;p=karo-tx-linux.git 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 --- diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index 25ce2d18e5b4..0bf7684207aa 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c @@ -340,7 +340,7 @@ static void clear_state_cb(struct extent_io_tree *tree, struct extent_state *state, 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, state->end, state->state, bits); }