提交 83300c69 编写于 作者: Y Yang Yingliang 提交者: David S. Miller

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: d6fce514 ("net: sparx5: add switching support")
Reported-by: NHulk Robot <hulkci@huawei.com>
Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 8f4c38f7
...@@ -485,8 +485,10 @@ int sparx5_register_notifier_blocks(struct sparx5 *s5) ...@@ -485,8 +485,10 @@ int sparx5_register_notifier_blocks(struct sparx5 *s5)
goto err_switchdev_blocking_nb; goto err_switchdev_blocking_nb;
sparx5_owq = alloc_ordered_workqueue("sparx5_order", 0); sparx5_owq = alloc_ordered_workqueue("sparx5_order", 0);
if (!sparx5_owq) if (!sparx5_owq) {
err = -ENOMEM;
goto err_switchdev_blocking_nb; goto err_switchdev_blocking_nb;
}
return 0; return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册