2 Star 0 Fork 32

我们17走/gazelle

forked from src-openEuler/gazelle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0227-Check-the-return-of-lwip_init.patch 964 Bytes
一键复制 编辑 原始数据 按行查看 历史
From 7cb4456d14405d1d9dbeb890642a339ef13165da Mon Sep 17 00:00:00 2001
From: Lemmy Huang <huangliming5@huawei.com>
Date: Mon, 22 Jul 2024 15:09:33 +0800
Subject: [PATCH] Check the return of lwip_init
Signed-off-by: Lemmy Huang <huangliming5@huawei.com>
---
src/lstack/core/lstack_protocol_stack.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/lstack/core/lstack_protocol_stack.c b/src/lstack/core/lstack_protocol_stack.c
index 6f2e84e..2867711 100644
--- a/src/lstack/core/lstack_protocol_stack.c
+++ b/src/lstack/core/lstack_protocol_stack.c
@@ -421,6 +421,11 @@ static struct protocol_stack *stack_thread_init(void *arg)
RTE_PER_LCORE(_lcore_id) = stack->cpu_id;
lwip_init();
+ /* Using errno to return lwip_init() result. */
+ if (errno != 0) {
+ LSTACK_LOG(ERR, LSTACK, "lwip_init failed, errno %d\n", errno);
+ goto END;
+ }
if (use_ltran()) {
if (client_reg_thrd_ring() != 0) {
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/together17/gazelle.git
git@gitee.com:together17/gazelle.git
together17
gazelle
gazelle
master

搜索帮助