mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 15:41:52 +02:00
s390/ftrace: use la instead of aghik in return_to_handler()
Nathan Chancellor reported the following build error when compiling the
kernel with CONFIG_MARCH_Z10=y:
arch/s390/kernel/mcount.S: Assembler messages:
arch/s390/kernel/mcount.S:140: Error: Unrecognized opcode: `aghik'
The aghik instruction is only available since z196. Use the la instruction
instead which is available for all machines.
Reported-by: Nathan Chancellor <nathan@kernel.org>
Closes: https://lore.kernel.org/all/20230725211105.GA224840@dev-arch.thelio-3990X
Fixes: 1256e70a08 ("s390/ftrace: enable HAVE_FUNCTION_GRAPH_RETVAL")
Reviewed-by: Sven Schnelle <svens@linux.ibm.com>
Tested-by: Nathan Chancellor <nathan@kernel.org> # build
Link: https://lore.kernel.org/r/20230726061834.1300984-1-hca@linux.ibm.com
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
parent
7fb0ad1938
commit
7b27d9ef0f
|
|
@ -137,7 +137,7 @@ SYM_FUNC_START(return_to_handler)
|
|||
lgr %r1,%r15
|
||||
aghi %r15,-(STACK_FRAME_OVERHEAD+__FGRAPH_RET_SIZE)
|
||||
stg %r1,__SF_BACKCHAIN(%r15)
|
||||
aghik %r3,%r15,STACK_FRAME_OVERHEAD
|
||||
la %r3,STACK_FRAME_OVERHEAD(%r15)
|
||||
stg %r1,__FGRAPH_RET_FP(%r3)
|
||||
stg %r2,__FGRAPH_RET_GPR2(%r3)
|
||||
lgr %r2,%r3
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user