mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
ARM: 7425/1: extable: ensure fixup entries are 4-byte aligned
Fixup entries in the kernel exception tables should be 4-byte aligned since we return directly to them when handling a faulting instruction in the kernel. This patch adds the missing align directives to the fixup entries. Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
2bea29b774
commit
667d1b48bc
@ -19,6 +19,7 @@
|
|||||||
" .long 1b, 4f, 2b, 4f\n" \
|
" .long 1b, 4f, 2b, 4f\n" \
|
||||||
" .popsection\n" \
|
" .popsection\n" \
|
||||||
" .pushsection .fixup,\"ax\"\n" \
|
" .pushsection .fixup,\"ax\"\n" \
|
||||||
|
" .align 2\n" \
|
||||||
"4: mov %0, " err_reg "\n" \
|
"4: mov %0, " err_reg "\n" \
|
||||||
" b 3b\n" \
|
" b 3b\n" \
|
||||||
" .popsection"
|
" .popsection"
|
||||||
|
@ -495,6 +495,7 @@ ENDPROC(__und_usr)
|
|||||||
* The out of line fixup for the ldrt above.
|
* The out of line fixup for the ldrt above.
|
||||||
*/
|
*/
|
||||||
.pushsection .fixup, "ax"
|
.pushsection .fixup, "ax"
|
||||||
|
.align 2
|
||||||
4: mov pc, r9
|
4: mov pc, r9
|
||||||
.popsection
|
.popsection
|
||||||
.pushsection __ex_table,"a"
|
.pushsection __ex_table,"a"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user