/linux/arch/arm/mach-rockchip/ |
H A D | sleep.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
/linux/arch/arm/include/debug/ |
H A D | omap2plus.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
/linux/arch/arm/mach-exynos/ |
H A D | sleep.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
/linux/arch/arm/kernel/ |
H A D | iwmmxt.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
H A D | hyp-stub.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
H A D | sleep.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
H A D | head.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
H A D | entry-armv.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
/linux/arch/arm/mm/ |
H A D | cache-v4wb.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
H A D | proc-xscale.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
/linux/arch/arm/mach-omap2/ |
H A D | sleep44xx.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|
H A D | sleep34xx.S | diff 1abd35023763c099bf4ee7558faa261d5c9d5025 Wed Jul 26 13:49:31 CEST 2017 Russell King <rmk+kernel@armlinux.org.uk> ARM: align .data section
Robert Jarzmik reports that his PXA25x system fails to boot with 4.12, failing at __flush_whole_cache in arch/arm/mm/proc-xscale.S:215:
0xc0019e20 <+0>: ldr r1, [pc, #788] 0xc0019e24 <+4>: ldr r0, [r1] <== here
with r1 containing 0xc06f82cd, which is the address of "clean_addr". Examination of the System.map shows:
c06f22c8 D user_pmd_table c06f22cc d __warned.19178 c06f22cd d clean_addr
indicating that a .data.unlikely section has appeared just before the .data section from proc-xscale.S. According to objdump -h, it appears that our assembly files default their .data alignment to 2**0, which is bad news if the preceding .data section size is not power-of-2 aligned at link time.
Add the appropriate .align directives to all assembly files in arch/arm that are missing them where we require an appropriate alignment.
Reported-by: Robert Jarzmik <robert.jarzmik@free.fr> Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
|