2024-03-02 00:18:20 +08:00
|
|
|
From 82bac1154777a909ac1a0ac4ee0f6cad4393def8 Mon Sep 17 00:00:00 2001
|
2022-05-23 19:06:18 +08:00
|
|
|
From: hubin <hubin73@huawei.com>
|
|
|
|
|
Date: Mon, 23 May 2022 17:00:37 +0800
|
2024-03-02 00:18:20 +08:00
|
|
|
Subject: [PATCH 32/38] create-diff-object: ignore change of certain special
|
2023-01-30 16:10:43 +08:00
|
|
|
sections
|
2022-05-23 19:06:18 +08:00
|
|
|
|
|
|
|
|
Signed-off-by: hubin <hubin73@huawei.com>
|
|
|
|
|
---
|
|
|
|
|
kpatch-build/create-diff-object.c | 13 +++++++++++++
|
|
|
|
|
1 file changed, 13 insertions(+)
|
|
|
|
|
|
|
|
|
|
diff --git a/kpatch-build/create-diff-object.c b/kpatch-build/create-diff-object.c
|
2024-03-02 00:18:20 +08:00
|
|
|
index ea287d8..fe3f2c1 100644
|
2022-05-23 19:06:18 +08:00
|
|
|
--- a/kpatch-build/create-diff-object.c
|
|
|
|
|
+++ b/kpatch-build/create-diff-object.c
|
2024-03-02 00:18:20 +08:00
|
|
|
@@ -3261,6 +3261,19 @@ static void kpatch_process_special_sections(struct kpatch_elf *kelf,
|
2022-05-23 19:06:18 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+ list_for_each_entry(sec, &kelf->sections, list) {
|
|
|
|
|
+ if (strcmp(sec->name, "__patchable_function_entries") &&
|
|
|
|
|
+ strcmp(sec->name, ".note.gnu.property"))
|
|
|
|
|
+ continue;
|
|
|
|
|
+
|
|
|
|
|
+ sec->status = SAME;
|
|
|
|
|
+ sec->include = 0;
|
|
|
|
|
+ if (sec->rela) {
|
|
|
|
|
+ sec->rela->status = SAME;
|
|
|
|
|
+ sec->rela->include = 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
kpatch_regenerate_orc_sections(kelf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
--
|
2023-01-30 16:10:43 +08:00
|
|
|
2.33.0
|
2022-05-23 19:06:18 +08:00
|
|
|
|