On 03.08.2023 01:03, Shawn Anastasio wrote:
> --- 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)
Looks like the added lines are indented by one too few blanks. With that
adjusted:
Acked-by: Jan Beulich <[email protected]>
Jan