1 Star 0 Fork 48

zerich/lwip

forked from src-openEuler/lwip 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0159-LOOPBACK-fix-loop-coredump.patch 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
yinbin6 提交于 2024-07-23 16:32 . LOOPBACK: fix loop coredump
From a95eada1728b09edd9f2d06bb13cab9e7b0eac8e Mon Sep 17 00:00:00 2001
From: yinbin <yinbin8@huawei.com>
Date: Tue, 23 Jul 2024 16:27:58 +0800
Subject: [PATCH] LOOPBACK: fix loop coredump
---
src/core/netif.c | 2 +-
src/include/lwipopts.h | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/core/netif.c b/src/core/netif.c
index e6cdebe..eba9a0b 100644
--- a/src/core/netif.c
+++ b/src/core/netif.c
@@ -198,7 +198,7 @@ netif_init(void)
#define LOOPIF_ADDRINIT
#endif /* LWIP_IPV4 */
-#if NO_SYS
+#if NO_SYS || GAZELLE_ENABLE
netif_add(&loop_netif, LOOPIF_ADDRINIT NULL, netif_loopif_init, ip_input);
#else /* NO_SYS */
netif_add(&loop_netif, LOOPIF_ADDRINIT NULL, netif_loopif_init, tcpip_input);
diff --git a/src/include/lwipopts.h b/src/include/lwipopts.h
index e001657..4483ebe 100644
--- a/src/include/lwipopts.h
+++ b/src/include/lwipopts.h
@@ -288,6 +288,9 @@
#define LWIP_VLAN_PCP 1
#define VLAN_LEN 4
+#define LWIP_NETIF_LOOPBACK_MULTITHREADING 0
+
+
/*
------------------------------------
---------- multicast options ----------
--
2.34.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zerich/lwip.git
git@gitee.com:zerich/lwip.git
zerich
lwip
lwip
master

搜索帮助