20 Star 0 Fork 32

openEuler-RISC-V/gazelle

forked from src-openEuler/gazelle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0035-add-check-for-stack-params.patch 837 Bytes
一键复制 编辑 原始数据 按行查看 历史
jinag12 提交于 2022-03-17 16:16 . fixrepeated lstack restart coredump
From 35c5052da432255f3756d5bdc46c67597545908a Mon Sep 17 00:00:00 2001
From: jiangheng <jiangheng12@huawei.com>
Date: Thu, 17 Mar 2022 16:10:51 +0800
Subject: [PATCH] add check for stack params
---
src/lstack/core/lstack_thread_rpc.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/lstack/core/lstack_thread_rpc.c b/src/lstack/core/lstack_thread_rpc.c
index c95f2c0..2a67333 100644
--- a/src/lstack/core/lstack_thread_rpc.c
+++ b/src/lstack/core/lstack_thread_rpc.c
@@ -29,6 +29,10 @@ struct rpc_msg *rpc_msg_alloc(struct protocol_stack *stack, rpc_msg_func func)
int32_t ret;
struct rpc_msg *msg = NULL;
+ if (stack == NULL) {
+ return NULL;
+ }
+
ret = rte_mempool_get(stack->rpc_pool, (void **)&msg);
if (ret < 0) {
get_protocol_stack_group()->call_alloc_fail++;
--
1.8.3.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler-risc-v/gazelle.git
git@gitee.com:openeuler-risc-v/gazelle.git
openeuler-risc-v
gazelle
gazelle
master

搜索帮助