From: Simon Kuenzer Date: Thu, 6 May 2021 13:02:35 +0000 (+0200) Subject: lib/uksched: Remove unnecessary alignment for thread inittab X-Git-Tag: RELEASE-0.6~188 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8877b9ccd0daed8f4003bb3de463f4d8e2805c9b;p=unikraft%2Funikraft.git lib/uksched: Remove unnecessary alignment for thread inittab The align parameter within `extra.ld` for the `uk_thread_inttab` was causing some alignment issues for the `text` section. Some builds were not able to be executed. It turns out that this extra alignment statement is not needed for the table. Signed-off-by: Simon Kuenzer Reviewed-by: Razvan Deaconescu Tested-by: Unikraft CI GitHub-Pull-Request: #201 --- diff --git a/lib/uksched/extra.ld b/lib/uksched/extra.ld index ba659d266..21736bb5c 100644 --- a/lib/uksched/extra.ld +++ b/lib/uksched/extra.ld @@ -1,7 +1,6 @@ SECTIONS { .uk_thread_inittab : { - . = ALIGN(0x8); PROVIDE(_uk_thread_inittab_start = .); KEEP (*(.uk_thread_inittab0)) KEEP (*(.uk_thread_inittab0.*))