Skip to content

Commit 249c9b0

Browse files
chleroympe
authored andcommitted
powerpc/40x: Make more space for system call exception
When CONFIG_VIRT_CPU_ACCOUNTING is selected, system call exception handler doesn't fit below 0xd00 and build fails. As exception 0xd00 doesn't exist and is never generated by 40x, comment it out in order to get more space for system call exception. Fixes: 9e27086 ("powerpc/32: Warn and return ENOSYS on syscalls from kernel") Reported-by: kbuild test robot <[email protected]> Signed-off-by: Christophe Leroy <[email protected]> Signed-off-by: Michael Ellerman <[email protected]> Link: https://lore.kernel.org/r/633165d72f75b4ef4c0901aebe99d3915c93e9a2.1589043863.git.christophe.leroy@csgroup.eu
1 parent e963b7a commit 249c9b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arch/powerpc/kernel/head_40x.S

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,9 @@ _ENTRY(saved_ksp_limit)
344344
/* 0x0C00 - System Call Exception */
345345
START_EXCEPTION(0x0C00, SystemCall)
346346
SYSCALL_ENTRY 0xc00
347+
/* Trap_0D is commented out to get more space for system call exception */
347348

348-
EXCEPTION(0x0D00, Trap_0D, unknown_exception, EXC_XFER_STD)
349+
/* EXCEPTION(0x0D00, Trap_0D, unknown_exception, EXC_XFER_STD) */
349350
EXCEPTION(0x0E00, Trap_0E, unknown_exception, EXC_XFER_STD)
350351
EXCEPTION(0x0F00, Trap_0F, unknown_exception, EXC_XFER_STD)
351352

0 commit comments

Comments
 (0)