diff options
author | Tsutomu Itoh <t-itoh@jp.fujitsu.com> | 2011-04-28 05:18:21 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2011-05-23 13:24:40 -0400 |
commit | 37daa4f968e9470ae9f30e246a5781717c598271 (patch) | |
tree | a9b7366069150ab3f8e5bc85c475c6194c5fabdf | |
parent | c00e9493f1412621c8665a707d63e32b0768f572 (diff) |
Btrfs: check return value of btrfs_inc_extent_ref()
If return value of btrfs_inc_extent_ref() is not 0, BUG() is called.
Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
-rw-r--r-- | fs/btrfs/tree-log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index 46b7b57650ab..c2d887566400 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -589,6 +589,7 @@ static noinline int replay_one_extent(struct btrfs_trans_handle *trans, | |||
589 | ins.objectid, ins.offset, | 589 | ins.objectid, ins.offset, |
590 | 0, root->root_key.objectid, | 590 | 0, root->root_key.objectid, |
591 | key->objectid, offset); | 591 | key->objectid, offset); |
592 | BUG_ON(ret); | ||
592 | } else { | 593 | } else { |
593 | /* | 594 | /* |
594 | * insert the extent pointer in the extent | 595 | * insert the extent pointer in the extent |