[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] arm/init: Move .init.proc.info into .init.data
commit c5d203b5da77b2aac16aae1f9eec26ea37fb9808 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Thu Jun 9 15:41:27 2016 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Thu Jun 23 12:57:57 2016 +0100 arm/init: Move .init.proc.info into .init.data Its contents is constant, and only requires pointer alignment, so move it adacent to .init.setup. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> Acked-by: Julien Grall <julien.grall@xxxxxxx> --- xen/arch/arm/xen.lds.S | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/xen/arch/arm/xen.lds.S b/xen/arch/arm/xen.lds.S index 2ed7dee..b00ee81 100644 --- a/xen/arch/arm/xen.lds.S +++ b/xen/arch/arm/xen.lds.S @@ -141,6 +141,10 @@ SECTIONS *(.init.setup) __setup_end = .; + __proc_info_start = .; + *(.init.proc.info) + __proc_info_end = .; + *(.init.data) *(.init.data.rel) *(.init.data.rel.*) @@ -151,11 +155,6 @@ SECTIONS __ctors_end = .; } :text . = ALIGN(32); - .init.proc.info : { - __proc_info_start = .; - *(.init.proc.info) - __proc_info_end = .; - } :text .initcall.init : { __initcall_start = .; *(.initcallpresmp.init) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |