mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
nvmet: free workqueue object if module init fails
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
afd299ca99
commit
04db0e5ec5
1 changed files with 3 additions and 1 deletions
|
@ -1210,7 +1210,7 @@ static int __init nvmet_init(void)
|
||||||
|
|
||||||
error = nvmet_init_discovery();
|
error = nvmet_init_discovery();
|
||||||
if (error)
|
if (error)
|
||||||
goto out;
|
goto out_free_work_queue;
|
||||||
|
|
||||||
error = nvmet_init_configfs();
|
error = nvmet_init_configfs();
|
||||||
if (error)
|
if (error)
|
||||||
|
@ -1219,6 +1219,8 @@ static int __init nvmet_init(void)
|
||||||
|
|
||||||
out_exit_discovery:
|
out_exit_discovery:
|
||||||
nvmet_exit_discovery();
|
nvmet_exit_discovery();
|
||||||
|
out_free_work_queue:
|
||||||
|
destroy_workqueue(buffered_io_wq);
|
||||||
out:
|
out:
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue