Re: [PATCH] btrfs: free mapping node on duplicate reloc root insert
Qu Wenruo <[email protected]>
| Newsgroups | org.kernel.vger.linux-btrfs,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
在 2026/7/12 01:11, Guanghui Yang 写道: > __add_reloc_root() allocates a mapping_node before inserting it into > rc->reloc_root_tree. If rb_simple_insert() finds an existing entry, it > returns the existing rb_node and leaves the newly allocated node unlinked. > > The error path then returns -EEXIST without freeing the new node. Since > the node was never inserted into reloc_root_tree, the later cleanup in > put_reloc_control() cannot find it either. > > Free the newly allocated node before returning -EEXIST. > > The callers currently assert that -EEXIST should not happen, so this is a > defensive cleanup for an unexpected duplicate insert path. If the path is > ever reached, the local allocation should still be released. > > Signed-off-by: Guanghui Yang <[email protected]> Missing fixes tag. In commit ffd7b33944f4 ("btrfs: __add_reloc_root error push-up") there is still the proper kfree(), but now it's not there. There must be a commit removing that kfree(). > --- > fs/btrfs/relocation.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c > index fb85bc8b345c..7e451e587726 100644 > --- a/fs/btrfs/relocation.c > +++ b/fs/btrfs/relocation.c > @@ -588,6 +588,7 @@ static int __add_reloc_root(struct btrfs_root *root, struct reloc_control *rc) > btrfs_err(fs_info, > "Duplicate root found for start=%llu while inserting into relocation tree", > node->bytenr); > + kfree(node); > return -EEXIST; > } >