projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
516095c
)
btrfs: drop error message in extent_io_tree insert_state()
author
David Sterba
<dsterba@suse.com>
Tue, 21 Nov 2023 13:20:17 +0000
(14:20 +0100)
committer
David Sterba
<dsterba@suse.com>
Fri, 15 Dec 2023 19:27:02 +0000
(20:27 +0100)
The helper insert_state errors are handled in all callers and reported
by extent_io_tree_panic so we don't need to do it twice.
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/extent-io-tree.c
patch
|
blob
|
history
diff --git
a/fs/btrfs/extent-io-tree.c
b/fs/btrfs/extent-io-tree.c
index
56be64e
..
887d9be
100644
(file)
--- a/
fs/btrfs/extent-io-tree.c
+++ b/
fs/btrfs/extent-io-tree.c
@@
-442,9
+442,6
@@
static struct extent_state *insert_state(struct extent_io_tree *tree,
}
node = &(*node)->rb_right;
} else {
- btrfs_err(tree->fs_info,
- "found node %llu %llu on insert of %llu %llu",
- entry->start, entry->end, state->start, state->end);
return ERR_PTR(-EEXIST);
}
}