Commit db8dcd25 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>
Reviewed-by: default avatarChao Yu <chao@kernel.org>
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent 71644dff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4723,7 +4723,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;
@@ -4740,7 +4740,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();