]> xenbits.xensource.com Git - people/royger/xen.git/commitdiff
xen/ppc: Define bug frames table in linker script
authorShawn Anastasio <sanastasio@raptorengineering.com>
Fri, 1 Sep 2023 07:17:01 +0000 (09:17 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 1 Sep 2023 07:17:01 +0000 (09:17 +0200)
Define the bug frames table in ppc's linker script as is done by other
architectures.

Signed-off-by: Shawn Anastasio <sanastasio@raptorengineering.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
xen/arch/ppc/xen.lds.S

index 2fa81d5a83b5a473be3873ea478d0a2967513e65..9e46035155598f6bab0d8428f75bd11be1cc5580 100644 (file)
@@ -41,6 +41,16 @@ SECTIONS
     . = ALIGN(PAGE_SIZE);
     .rodata : {
         _srodata = .;          /* Read-only data */
+        /* Bug frames table */
+        __start_bug_frames = .;
+        *(.bug_frames.0)
+        __stop_bug_frames_0 = .;
+        *(.bug_frames.1)
+        __stop_bug_frames_1 = .;
+        *(.bug_frames.2)
+        __stop_bug_frames_2 = .;
+        *(.bug_frames.3)
+        __stop_bug_frames_3 = .;
         *(.rodata)
         *(.rodata.*)
         *(.data.rel.ro)