1 Star 0 Fork 44

hugel/kpatch

forked from src-openEuler/kpatch 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0035-lookup-skip-finding-local-symbols-for-object-with-no.patch 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
HuBin95 提交于 2024-03-02 00:18 . kpatch: upgrade to 0.9.9
From 62a94545d2cc442f431eb9e49dc8ca674ffa0e23 Mon Sep 17 00:00:00 2001
From: hubin <hubin73@huawei.com>
Date: Sun, 9 Oct 2022 10:34:52 +0800
Subject: [PATCH 35/38] lookup: skip finding local symbols for object with no
local symbols
Signed-off-by: hubin <hubin73@huawei.com>
---
kpatch-build/lookup.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/kpatch-build/lookup.c b/kpatch-build/lookup.c
index 87f315a..34b3602 100644
--- a/kpatch-build/lookup.c
+++ b/kpatch-build/lookup.c
@@ -186,6 +186,22 @@ static bool file_has_locals(struct symbol *file_sym, struct list_head *sym_list)
return false;
}
+static int count_local_symbol(struct list_head *sym_list)
+{
+ struct symbol *sym;
+ int sym_num = 0;
+
+ list_for_each_entry(sym, sym_list, list) {
+ if (sym->bind != STB_LOCAL)
+ continue;
+ if (sym->type != STT_FUNC && sym->type != STT_OBJECT)
+ continue;
+ sym_num++;
+ }
+
+ return sym_num;
+}
+
static void find_local_syms(struct lookup_table *table, struct symbol *file_sym,
struct list_head *sym_list)
{
@@ -193,6 +209,9 @@ static void find_local_syms(struct lookup_table *table, struct symbol *file_sym,
struct object_symbol *lookup_table_file_sym = NULL;
int i;
+ if (count_local_symbol(sym_list) == 0)
+ return;
+
for_each_obj_symbol(i, sym, table) {
if (sym->type != STT_FILE)
continue;
--
2.33.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hugel/kpatch.git
git@gitee.com:hugel/kpatch.git
hugel
kpatch
kpatch
master

搜索帮助