bcachefs: Fix some small memory leaks

Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet 2021-04-16 17:26:25 -04:00 committed by Kent Overstreet
parent ae8bbb9fac
commit f24fab9cba
2 changed files with 4 additions and 2 deletions

View file

@ -1124,6 +1124,8 @@ static int check_directory_structure(struct bch_fs *c,
BUG_ON(ret == -EINTR); BUG_ON(ret == -EINTR);
kfree(path.entries);
return bch2_trans_exit(&trans) ?: ret; return bch2_trans_exit(&trans) ?: ret;
} }

View file

@ -320,8 +320,8 @@ static int replicas_table_update(struct bch_fs *c,
out: out:
free_percpu(new_gc); free_percpu(new_gc);
kfree(new_scratch); kfree(new_scratch);
free_percpu(new_usage[1]); for (i = 0; i < ARRAY_SIZE(new_usage); i++)
free_percpu(new_usage[0]); free_percpu(new_usage[i]);
kfree(new_base); kfree(new_base);
return ret; return ret;
err: err: