2024-03-02 00:18:20 +08:00
|
|
|
From 65855a7c36473a1191418fedbbb5aaa2da033494 Mon Sep 17 00:00:00 2001
|
2022-05-10 15:37:18 +08:00
|
|
|
From: hubin <hubin73@huawei.com>
|
|
|
|
|
Date: Tue, 10 May 2022 15:28:17 +0800
|
2024-03-02 00:18:20 +08:00
|
|
|
Subject: [PATCH 26/38] kpatch-macros: replace __section with __kpatch_section
|
2023-01-30 16:10:43 +08:00
|
|
|
in kpatch macro definition
|
2022-05-10 15:37:18 +08:00
|
|
|
|
|
|
|
|
Signed-off-by: hubin <hubin73@huawei.com>
|
|
|
|
|
---
|
|
|
|
|
kmod/patch/kpatch-macros.h | 2 +-
|
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
|
|
diff --git a/kmod/patch/kpatch-macros.h b/kmod/patch/kpatch-macros.h
|
2024-03-02 00:18:20 +08:00
|
|
|
index 69fdbbb..49cb759 100644
|
2022-05-10 15:37:18 +08:00
|
|
|
--- a/kmod/patch/kpatch-macros.h
|
|
|
|
|
+++ b/kmod/patch/kpatch-macros.h
|
2023-01-30 16:10:43 +08:00
|
|
|
@@ -14,7 +14,7 @@
|
2022-05-10 15:37:18 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define KPATCH_IGNORE_STATIC(_static) \
|
|
|
|
|
- char *__UNIQUE_ID(kpatch_ignore_static_) __section(.kpatch.ignore.statics) = _static;
|
|
|
|
|
+ char *__UNIQUE_ID(kpatch_ignore_static_) __kpatch_section(.kpatch.ignore.statics) = _static;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
--
|
2023-01-30 16:10:43 +08:00
|
|
|
2.33.0
|
2022-05-10 15:37:18 +08:00
|
|
|
|