Message ID | f81914771ec96a48adf25c55329aa5f739f174d0.1692816595.git.sanastasio@raptorengineering.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | ppc: Enable full Xen build | expand |
On 23.08.2023 22:07, Shawn Anastasio wrote: > 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> If I'm not mistaken this change is independent of the earlier patches, and hence could go in right away. Please confirm. Jan
On 8/30/23 8:03 AM, Jan Beulich wrote: > On 23.08.2023 22:07, Shawn Anastasio wrote: >> 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> > > If I'm not mistaken this change is independent of the earlier patches, > and hence could go in right away. Please confirm. That's correct -- you're free to commit this independent of the rest of the series if you'd like. > Jan Thanks, Shawn
diff --git a/xen/arch/ppc/xen.lds.S b/xen/arch/ppc/xen.lds.S index 2fa81d5a83..9e46035155 100644 --- a/xen/arch/ppc/xen.lds.S +++ b/xen/arch/ppc/xen.lds.S @@ -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)