mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
net: sparx5: fix error return code in sparx5_register_notifier_blocks()
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: d6fce51419
("net: sparx5: add switching support")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8f4c38f758
commit
83300c69e7
@ -485,8 +485,10 @@ int sparx5_register_notifier_blocks(struct sparx5 *s5)
|
||||
goto err_switchdev_blocking_nb;
|
||||
|
||||
sparx5_owq = alloc_ordered_workqueue("sparx5_order", 0);
|
||||
if (!sparx5_owq)
|
||||
if (!sparx5_owq) {
|
||||
err = -ENOMEM;
|
||||
goto err_switchdev_blocking_nb;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user