mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
net: marvell: prestera: add missing destroy_workqueue() in prestera_module_init()
Add the missing destroy_workqueue() before return from
prestera_module_init() in the error handling case.
Fixes: 4394fbcb78
("net: marvell: prestera: handle fib notifications")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20220322090236.1439649-1-yangyingliang@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
e9e6faeafa
commit
4a6806cfcb
@ -1032,8 +1032,10 @@ static int __init prestera_module_init(void)
|
||||
return -ENOMEM;
|
||||
|
||||
prestera_owq = alloc_ordered_workqueue("prestera_ordered", 0);
|
||||
if (!prestera_owq)
|
||||
if (!prestera_owq) {
|
||||
destroy_workqueue(prestera_wq);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user