mirror of https://github.com/OpenIPC/firmware.git
22 lines
1016 B
Diff
22 lines
1016 B
Diff
diff -drupN a/include/asm-generic/sections.h b/include/asm-generic/sections.h
|
|
--- a/include/asm-generic/sections.h 2018-08-06 17:23:04.000000000 +0300
|
|
+++ b/include/asm-generic/sections.h 2022-06-12 05:28:14.000000000 +0300
|
|
@@ -27,6 +27,8 @@
|
|
* __kprobes_text_start, __kprobes_text_end
|
|
* __entry_text_start, __entry_text_end
|
|
* __ctors_start, __ctors_end
|
|
+ * __irqentry_text_start, __irqentry_text_end
|
|
+ * __softirqentry_text_start, __softirqentry_text_end
|
|
*/
|
|
extern char _text[], _stext[], _etext[];
|
|
extern char _data[], _sdata[], _edata[];
|
|
@@ -39,6 +41,8 @@ extern char __per_cpu_load[], __per_cpu_
|
|
extern char __kprobes_text_start[], __kprobes_text_end[];
|
|
extern char __entry_text_start[], __entry_text_end[];
|
|
extern char __start_rodata[], __end_rodata[];
|
|
+extern char __irqentry_text_start[], __irqentry_text_end[];
|
|
+extern char __softirqentry_text_start[], __softirqentry_text_end[];
|
|
|
|
/* Start and end of .ctors section - used for constructor calls. */
|
|
extern char __ctors_start[], __ctors_end[];
|