Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 86d6a67f authored by Colin Ian King's avatar Colin Ian King Committed by Jaegeuk Kim
Browse files

f2fs: Fix spelling mistake in label: free_bio_enrty_cache -> free_bio_entry_cache



There is a spelling mistake in a label name. Fix it.

Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 908a4670
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4666,7 +4666,7 @@ static int __init init_f2fs_fs(void)
		goto free_iostat;
	err = f2fs_init_bioset();
	if (err)
		goto free_bio_enrty_cache;
		goto free_bio_entry_cache;
	err = f2fs_init_compress_mempool();
	if (err)
		goto free_bioset;
@@ -4683,7 +4683,7 @@ static int __init init_f2fs_fs(void)
	f2fs_destroy_compress_mempool();
free_bioset:
	f2fs_destroy_bioset();
free_bio_enrty_cache:
free_bio_entry_cache:
	f2fs_destroy_bio_entry_cache();
free_iostat:
	f2fs_destroy_iostat_processing();